* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #cfae2e;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2c1e0b;
}

.container {
    width: 100%;
    max-width: 800px;
    padding: 20px;
}

.card {
    background-color: #e6c85a;
    border: 4px solid #2c1e0b;
    border-radius: 16px;
    box-shadow: 8px 8px 0px rgba(44, 30, 11, 0.5);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.image-container {
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.main-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.login-container {
    padding: 40px;
    width: 100%;
}

h1 {
    margin-bottom: 10px;
    color: #2c1e0b;
    font-weight: 800;
}

p {
    color: #4a3618;
    margin-bottom: 30px;
    font-weight: 500;
}

.discord-btn {
    background-color: #2c1e0b;
    color: #e6c85a;
    border: none;
    padding: 12px 24px;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: background-color 0.2s ease;
}

.discord-btn:hover {
    background-color: #423018;
    transform: translateY(-2px);
    box-shadow: 0 4px 0 rgba(0,0,0,0.2);
}

.discord-icon {
    width: 24px;
    height: 24px;
}

@media (min-width: 600px) {
    .card {
        flex-direction: row;
        text-align: left;
    }

    .image-container {
        width: 50%;
        height: 400px;
    }

    .login-container {
        width: 50%;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
    }
}
