* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: #1e1e1e;
    color: #cccccc;
    overflow: hidden;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.container {
    width: 100%;
    max-width: 440px;
    padding: 0 24px;
}

.logo-container {
    text-align: center;
    margin-bottom: 48px;
    animation: fadeIn 0.6s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

.logo-text {
    font-size: 32px;
    font-weight: 300;
    color: #ffffff;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.tagline {
    font-size: 14px;
    color: #858585;
    font-weight: 400;
    letter-spacing: 0.3px;
    animation: fontChange 3s infinite;
}

@keyframes fontChange {
    0%, 100% { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif; }
    25% { font-family: 'Georgia', serif; }
    50% { font-family: 'Courier New', monospace; }
    75% { font-family: 'Arial', sans-serif; }
}

.auth-form {
    animation: fadeInUp 0.6s ease 0.2s both;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.auth-form h2 {
    font-size: 20px;
    margin-bottom: 24px;
    color: #ffffff;
    font-weight: 400;
    text-align: center;
}

/* Removed - no input fields needed */

.checkbox-container {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    cursor: pointer;
}

.checkbox-container input {
    margin-right: 10px;
    width: 18px;
    height: 18px;
    cursor: pointer;
}

/* Discord Button - VS Code Style */
.btn-discord {
    width: 100%;
    padding: 14px 24px;
    background: #5865F2;
    color: #ffffff;
    border: none;
    border-radius: 2px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.15s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-family: inherit;
}

.btn-discord:hover {
    background: #4752C4;
}

.btn-discord:active {
    background: #3C45A5;
}

.discord-icon {
    width: 20px;
    height: 20px;
}

/* Info text */
.info-text {
    text-align: center;
    margin-top: 24px;
    color: #858585;
    font-size: 12px;
    line-height: 1.6;
}

.info-text a {
    color: #4fc3f7;
    text-decoration: none;
}

.info-text a:hover {
    text-decoration: underline;
}

/* Removed - no modal needed */

/* Removed - no modal needed */

/* Page transition */
body {
    opacity: 1;
    transition: opacity 0.2s ease;
}

/* Removed duplicate styles */
