/**
 * Game Jam System Styles
 * Premium Retro 3D Theme - Matching Leaderboard Design
 */

/* --- Premium Retro 3D Theme Variables --- */
:root {
    /* Light Mode */
    --retro-green: #2ecc71;
    --retro-dark-green: #27ae60;
    --retro-black: #1a1a1a;
    --retro-white: #ffffff;
    --retro-gray: #f4f4f4;
    --retro-border-color: #1a1a1a;
    --retro-text: #1a1a1a;
    --retro-shadow-color: #1a1a1a;

    --retro-border: 3px solid var(--retro-border-color);
    --retro-shadow: 4px 4px 0px var(--retro-shadow-color);
    --retro-shadow-hover: 2px 2px 0px var(--retro-shadow-color);
    --retro-font: 'Inter', sans-serif;
    --retro-radius: 8px;
}

@media (prefers-color-scheme: dark) {
    :root {
        /* Dark Mode - Keeping BG White as requested */
        --retro-green: #00e676;
        --retro-dark-green: #00c853;
        --retro-black: #1a1a1a;
        --retro-white: #ffffff;
        --retro-gray: #f4f4f4;
        --retro-border-color: #1a1a1a;
        --retro-text: #1a1a1a;
        --retro-shadow-color: #1a1a1a;
    }
}

/* Notification Styles - Retro */
.game-jam-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 15px 20px;
    border: 3px solid var(--retro-border-color);
    box-shadow: 4px 4px 0px var(--retro-shadow-color);
    border-radius: 6px;
    font-size: 14px;
    font-weight: 700;
    z-index: 10001;
    opacity: 0;
    transform: translateX(100px);
    transition: all 0.3s ease;
    font-family: var(--retro-font);
}

.game-jam-notification.show {
    opacity: 1;
    transform: translateX(0);
}

.game-jam-notification.success {
    background: var(--retro-green);
    color: white;
}

.game-jam-notification.error {
    background: #f44336;
    color: white;
}

/* Login Required - Retro */
.game-jam-login-required {
    text-align: center;
    padding: 60px 20px;
    background: var(--retro-white);
    border: 3px dashed var(--retro-border-color);
    border-radius: 8px;
    max-width: 600px;
    margin: 40px auto;
}

.game-jam-login-required p {
    color: #666;
    font-size: 16px;
    margin-bottom: 20px;
    font-weight: 600;
}

.game-jam-login-required a {
    color: var(--retro-green);
    text-decoration: none;
    font-weight: 700;
}

.game-jam-login-required a:hover {
    text-decoration: underline;
}

/* Responsive Enhancements */
@media (max-width: 768px) {
    .game-jam-notification {
        right: 10px;
        left: 10px;
        transform: translateY(-100px);
    }

    .game-jam-notification.show {
        transform: translateY(0);
    }
}