body {
    background: linear-gradient(90deg, hsla(236, 100%, 8%, 1) 0%, hsla(211, 100%, 28%, 1) 100%);
    height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.main-container {
    width: 100%;
    height: 80vh;
    padding: 2rem;
    display: grid;
    grid-template-rows: auto 1fr;
}

.logo-section {
    margin-bottom: 2rem;
}

.logo {
    max-height: 180px;
    animation: logoAppear 1.2s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.content-section {
    display: flex;
    align-items: center;
}

.discord-link {
    background-color: #7289DA;
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 5px;
    display: inline-flex;
    align-items: center;
    transition: background-color 0.3s;
    margin-bottom: 1rem;
    width: 100%;
    justify-content: center;
}

.discord-link:hover {
    background-color: #5a6fb4;
    color: white;
}

.auth-tabs {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
    margin: 0 auto;
    max-width: 800px;
}

.tabs {
    background-color: transparent;
    width: 100%;
    overflow-x: hidden;
}

.tabs .col {
    padding: 0;
}

.tabs .tab a {
    color: rgba(0, 0, 0, 0.7);
}

.tabs .tab a:hover, .tabs .tab a.active {
    color: #26a69a;
}

.tabs .indicator {
    background-color: #26a69a;
}

.auth-form {
    padding: 2rem 1rem;
}

.submit-btn {
    width: 100%;
    margin-top: 1rem;
}

.forgot-password {
    margin-top: 1rem;
}

.modal {
    max-width: 500px;
}

@media only screen and (max-width: 992px) {
    .main-container {
        padding: 1rem;
    }

    .logo {
        max-height: 80px;
    }

    .lore-content {
        margin-bottom: 2rem;
    }
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

.auth-tabs, .lore-content {
    animation: fadeIn 0.6s ease-out;
}

@keyframes logoAppear {
    0% {
        opacity: 0;
        transform: scale(0.8) translateY(-20px);
    }
    50% {
        opacity: 0.5;
        transform: scale(1.1) translateY(0);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

@media only screen and (max-width: 992px) {
    .logo {
        max-height: 80px;
    }
}