/* Reset und Basis-Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* --- DARK PURPLE THEME --- */
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #1a1a1a;
    background-attachment: fixed;
    color: #e5e7eb;
    overflow-x: hidden;
    min-height: 100vh;
    position: relative;
    scroll-behavior: smooth;
}

/* Ensure page always starts at top */
html {
    scroll-behavior: smooth;
}

html, body {
    scroll-padding-top: 0;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(180, 119, 255, 0.18) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(120, 119, 198, 0.10) 0%, transparent 50%);
    animation: backgroundFloat 20s ease-in-out infinite;
    z-index: -1;
}

@keyframes backgroundFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-20px) rotate(1deg); }
    66% { transform: translateY(10px) rotate(-1deg); }
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 0px;
    background: transparent;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: transparent;
}

::-webkit-scrollbar-thumb:hover {
    background: transparent;
}

/* Container */
.content-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

/* Header */
.header {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    margin: 20px 0;
    padding: 20px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.header::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.header:hover::before {
    left: 100%;
    }

    .logo-title-container {
    display: flex;
    align-items: center;
    gap: 15px;
    }

    .header-logo {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.header-logo:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    }

    .site-title {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(45deg, #8b5cf6, #6366f1, #4f46e5);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease-in-out infinite;
    text-shadow: 0 0 30px rgba(99, 102, 241, 0.5);
    transition: all 0.3s ease;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.site-title:hover {
    transform: scale(1.05);
    filter: brightness(1.2);
}

/* Social Media Section */
.social-media {
    display: flex;
    align-items: center;
    gap: 20px;
}

.social-buttons {
    display: flex;
    gap: 12px;
}

.social-btn {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.social-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.social-btn:hover::before {
    left: 100%;
}

.social-btn:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.4);
}

.kofi-btn {
    background: linear-gradient(45deg, #ff5e62, #ff9966);
    border: none;
    padding: 12px 20px;
    border-radius: 25px;
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 94, 98, 0.3);
}

.kofi-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 94, 98, 0.4);
    background: linear-gradient(45deg, #ff9966, #ff5e62);
}

/* Admin Section */
.admin-section {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.login-buttons-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 8px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.admin-logo {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    object-fit: cover;
    transition: all 0.3s ease;
}

.admin-logo:hover {
    transform: scale(1.1);
}

#admin-login-btn {
    background: linear-gradient(45deg, #6366f1, #8b5cf6);
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
    position: relative;
    overflow: hidden;
}

#admin-login-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

#admin-login-btn:hover::before {
    left: 100%;
}

#admin-login-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.4);
}

#streamer-login-btn {
    background: linear-gradient(45deg, #ff6b6b, #ee5a24);
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
    position: relative;
    overflow: hidden;
}

#streamer-login-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

#streamer-login-btn:hover::before {
    left: 100%;
}

#streamer-login-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.4);
}

/* Header Divider */
.header-divider {
    height: 2px;
    background: linear-gradient(90deg, transparent, #6366f1, #8b5cf6, transparent);
    margin: 20px 0;
    border-radius: 1px;
    position: relative;
    overflow: hidden;
}

.header-divider::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* Admin Panel */
#admin-panel {
    background: linear-gradient(135deg, rgba(20, 20, 20, 0.95), rgba(40, 40, 40, 0.9));
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 25px;
    padding: 30px;
    margin: 30px 0;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

#admin-panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #6366f1, #8b5cf6, #ec4899);
}

#admin-panel.hidden {
    display: none;
}

/* Streamer Panel */
.streamer-panel {
    background: linear-gradient(135deg, rgba(20, 20, 20, 0.95), rgba(40, 40, 40, 0.9));
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 107, 107, 0.3);
    border-radius: 25px;
    padding: 30px;
    margin: 30px 0;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.streamer-panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #ff6b6b, #ee5a24, #f59e0b);
}

.streamer-panel.hidden {
    display: none;
}

.streamer-info {
    text-align: center;
    margin-bottom: 20px;
}

.streamer-info h3 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 20px;
    background: linear-gradient(45deg, #ff6b6b, #ee5a24);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Action Buttons */
.action-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin: 40px 0;
    flex-wrap: wrap;
}

.action-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    background: linear-gradient(45deg, #6366f1, #8b5cf6);
    color: white;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
    min-width: 180px;
    justify-content: center;
}

.action-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.4);
}

.action-btn i {
    font-size: 18px;
}

/* Random Game Animations */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

@keyframes randomGamePulse {
    0% { 
        box-shadow: 0 0 40px rgba(99, 102, 241, 1), 0 0 80px rgba(139, 92, 246, 0.8);
        border-color: #6366f1;
    }
    50% { 
        box-shadow: 0 0 60px rgba(99, 102, 241, 1), 0 0 120px rgba(139, 92, 246, 1);
        border-color: #8b5cf6;
    }
    100% { 
        box-shadow: 0 0 40px rgba(99, 102, 241, 1), 0 0 80px rgba(139, 92, 246, 0.8);
        border-color: #6366f1;
    }
}

/* Social Media Section */
.social-media-section {
    margin: 20px 0;
    padding: 30px;
}

.social-media-container {
    text-align: center;
}

.social-media-container h3 {
    color: white;
    margin-bottom: 25px;
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(45deg, #6366f1, #8b5cf6);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.social-media-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.social-media-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 25px;
    background: linear-gradient(45deg, #6366f1, #8b5cf6);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
    min-width: 140px;
    justify-content: center;
}

.social-media-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.4);
    color: white;
    text-decoration: none;
}

.social-media-btn i {
    font-size: 18px;
}

/* Game Detail Modal Styles */
.game-detail-modal .modal-content {
    max-width: 1000px;
    width: 95%;
    max-height: 90vh;
    overflow-y: auto;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 25%, #16213e 50%, #0f3460 75%, #533483 100%);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 0;
}

.game-detail-header {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 10;
}

.game-detail-hero {
    position: relative;
    height: 400px;
    border-radius: 0;
    overflow: hidden;
    background: linear-gradient(135deg, #1a1a2e, #16213e);
}

.game-detail-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 0;
}

.game-detail-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
    padding: 40px 30px 30px;
    color: white;
    backdrop-filter: blur(10px);
}

.game-detail-title {
    font-size: 2.8rem;
    font-weight: 900;
    margin-bottom: 15px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.9);
    background: linear-gradient(45deg, #ffffff, #f0f0f0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.game-detail-genres {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.game-detail-body {
    padding: 30px;
}

.game-detail-description h3,
.game-detail-info h3 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.game-detail-description p {
    color: #d1d5db;
    line-height: 1.6;
    margin: 0;
}

.info-grid {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.info-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.info-item:last-child {
    border-bottom: none;
}

.info-label {
    color: #d1d5db;
    font-weight: 600;
}

.info-value {
    color: white;
    font-weight: 500;
}

.game-detail-actions {
    padding: 30px;
    display: flex;
    gap: 15px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 0 0 20px 20px;
}

.steam-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 30px;
    background: linear-gradient(45deg, #1b2838, #2a475e);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.steam-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.steam-btn-disabled {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: linear-gradient(45deg, #6b7280, #4b5563);
    color: #9ca3af;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: not-allowed;
    border: 2px solid #4b5563;
}

.steam-btn-disabled i {
    font-size: 16px;
    color: #fbbf24;
}

/* Invalid Links Modal Styles */
.invalid-games-list {
    max-height: 400px;
    overflow-y: auto;
    margin: 20px 0;
}

.invalid-game-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    margin: 10px 0;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid #ef4444;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.invalid-game-item:hover {
    background: rgba(239, 68, 68, 0.15);
    transform: translateY(-2px);
}

.game-info h4 {
    color: #f87171;
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.invalid-link {
    color: #9ca3af;
    font-size: 0.9rem;
    word-break: break-all;
    margin: 0;
}

.edit-invalid-btn {
    background: linear-gradient(45deg, #4ecdc4, #44a08d);
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 6px;
}

.edit-invalid-btn:hover {
    background: linear-gradient(45deg, #44a08d, #4ecdc4);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(68, 160, 141, 0.3);
}

.modal-actions {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.close-btn {
    background: linear-gradient(45deg, #6b7280, #4b5563);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.close-btn:hover {
    background: linear-gradient(45deg, #4b5563, #6b7280);
    transform: translateY(-2px);
}

.trailer-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 30px;
    background: linear-gradient(45deg, #10b981, #059669);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.trailer-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
}

.loading-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    padding: 40px 20px;
    text-align: center;
}

.loading-placeholder p {
    color: #d1d5db;
    margin: 0;
}

.loading-text {
    color: #8b5cf6 !important;
    font-style: italic;
}

@media (max-width: 768px) {
    .game-detail-hero {
        height: 300px;
    }
    
    
    .game-detail-title {
        font-size: 2.2rem;
    }
    
    .game-detail-actions {
        flex-direction: column;
    }
    
    .game-detail-overlay {
        padding: 30px 20px 20px;
    }
}

/* Support Modal Styles */
.support-options {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin: 20px 0;
}

.modal-header {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.modal-header .close-modal {
    position: static;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 16px;
}

.modal-header .close-modal:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.support-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 20px;
    background: linear-gradient(45deg, #6366f1, #8b5cf6);
    color: white;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
}

.support-option:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.4);
    color: white;
    text-decoration: none;
}

.support-option i {
    font-size: 18px;
}

.support-note {
    text-align: center;
    color: #d1d5db;
    font-style: italic;
    margin-top: 20px;
}

.streamer-info p {
    color: #e5e7eb;
    font-size: 1.2rem;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

#admin-panel button {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    border: none;
    padding: 15px 25px;
    border-radius: 30px;
    color: white;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.4);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

#admin-panel button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

#admin-panel button:hover::before {
    left: 100%;
}

#admin-panel button:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(99, 102, 241, 0.6);
    border-color: rgba(255, 255, 255, 0.4);
}


/* Main Content Layout */
.main-content-flex {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    justify-content: center;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 0;
}

/* Genre Filter Container */
.genre-filter-container {
    background: linear-gradient(135deg, rgba(20, 20, 20, 0.95), rgba(40, 40, 40, 0.9));
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    padding: 30px;
    min-width: 300px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: sticky;
    top: 20px;
    margin-right: 40px;
    margin-left: 15px;
    overflow: hidden;
}


.genre-filter-container:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.genre-filter-container h3 {
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 25px;
    text-align: center;
    background: linear-gradient(45deg, #6366f1, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
}

.genre-filter-buttons {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.genre-filter-btn {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 12px 18px;
    border-radius: 25px;
    color: #e0e0e0;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(15px);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    gap: 8px;
    min-height: 45px;
    white-space: nowrap;
    flex-shrink: 0;
}

.genre-filter-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.genre-filter-btn:hover::before {
    left: 100%;
}

.genre-filter-btn:hover {
    transform: translateY(-3px) scale(1.05);
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.2), rgba(139, 92, 246, 0.15));
    border-color: rgba(99, 102, 241, 0.4);
    color: #ffffff;
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.3);
}

.genre-filter-btn.active {
    background: linear-gradient(45deg, #6366f1, #8b5cf6);
    border-color: transparent;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
    transform: translateX(5px);
}

/* Game Tabs */
.game-tabs-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 30px 0;
}

.game-tab-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 12px 24px;
    border-radius: 25px;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.game-tab-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.game-tab-btn:hover::before {
    left: 100%;
}

.game-tab-btn:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
}

.game-tab-btn.active {
    background: linear-gradient(45deg, #6366f1, #8b5cf6);
    border-color: transparent;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
}

/* Game List */
#game-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
    padding: 20px 0;
}

.game {
    background: linear-gradient(135deg, rgba(20, 20, 20, 0.95), rgba(40, 40, 40, 0.9));
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 25px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4);
    position: relative;
    cursor: pointer;
    min-height: 280px;
}

.game::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #6366f1, #8b5cf6, #ec4899);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.game:hover::before {
    opacity: 1;
}

.game:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
    border-color: rgba(99, 102, 241, 0.5);
}

.game img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 2;
    border-radius: 20px 20px 0 0;
}

.game:hover img {
    transform: scale(1.08);
    filter: brightness(1.1);
}

.game-content {
    padding: 25px;
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: calc(100% - 200px);
}

.game h2 {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 18px;
    color: #ffffff;
    line-height: 1.3;
    background: linear-gradient(45deg, #ffffff, #e5e7eb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
}

.game-description {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
    max-height: none;
    overflow: visible;
    transition: all 0.4s ease;
}



.game-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    margin: 15px 0;
}

.game-genres {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.genre-tag {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: #fff;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 700;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
}

.genre-tag::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.genre-tag:hover::before {
    left: 100%;
}

.genre-tag:hover {
    transform: scale(1.1) translateY(-2px);
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.5);
}

/* Admin Buttons */
.delete-game, .edit-game, .toggle-unreleased-btn, .toggle-played-btn {
    background: linear-gradient(45deg, #ff6b6b, #ee5a24);
    border: none;
    padding: 8px 12px;
    border-radius: 20px;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 5px;
    font-size: 0.9rem;
}

.edit-game {
    background: linear-gradient(45deg, #4ecdc4, #44a08d);
}

.toggle-unreleased-btn {
    background: linear-gradient(45deg, #feca57, #ff9ff3);
    color: #2c3e50;
}

.toggle-played-btn {
    background: linear-gradient(45deg, #48dbfb, #0abde3);
}

.delete-game:hover, .edit-game:hover, .toggle-unreleased-btn:hover, .toggle-played-btn:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Streamer Buttons */
.streamer-buttons {
    display: flex;
    justify-content: center;
    margin-top: 15px;
    gap: 10px;
}

.streamer-played-btn {
    background: linear-gradient(45deg, #ff6b6b, #ee5a24);
    border: none;
    padding: 10px 20px;
    border-radius: 20px;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
    position: relative;
    overflow: hidden;
}

.streamer-played-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.streamer-played-btn:hover::before {
    left: 100%;
}

.streamer-played-btn:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.4);
}

/* Modals */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    animation: modalFade 0.3s ease;
}

@keyframes modalFade {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}

.modal-content {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 40px;
    max-width: 700px;
    width: 90%;
    max-height: 85vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    position: relative;
}

.modal-content h2 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 25px;
    text-align: center;
    background: linear-gradient(45deg, #6366f1, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.modal-content input, .modal-content textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.modal-content input:focus, .modal-content textarea:focus {
    outline: none;
    border-color: #6366f1;
    box-shadow: 0 0 20px rgba(99, 102, 241, 0.3);
    transform: translateY(-2px);
}

.modal-content input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.9);
    cursor: pointer;
    transition: all 0.3s ease;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.close-modal:hover {
    color: white;
    background: rgba(255, 0, 0, 0.8);
    transform: rotate(90deg);
    border-color: rgba(255, 255, 255, 0.4);
}

/* Login Modal */
.login-content {
    text-align: center;
}

.login-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.login-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.login-buttons button {
    background: linear-gradient(45deg, #6366f1, #8b5cf6);
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
}

.login-buttons button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.4);
}

#login-cancel {
    background: linear-gradient(45deg, #ff6b6b, #ee5a24);
}

/* Randomizer Modal */
.randomizer-content {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.05));
    backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 30px;
    padding: 60px;
    text-align: center;
    max-width: 900px;
    width: 90%;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.6);
    position: relative;
    overflow: hidden;
    animation: modalSlideIn 0.5s ease-out;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.randomizer-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 40px;
    background: linear-gradient(45deg, #ff6b6b, #ee5a24, #ff9ff3, #feca57);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: titleGradient 3s ease-in-out infinite;
    text-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
}

@keyframes titleGradient {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

@keyframes titlePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Randomizer Button Styles */
.play-button, .close-button {
    background: linear-gradient(45deg, #6366f1, #8b5cf6);
    border: none;
    padding: 15px 30px;
    border-radius: 30px;
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 15px;
    display: inline-flex;
        align-items: center;
    gap: 10px;
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.4);
    position: relative;
    overflow: hidden;
}

.play-button {
    background: linear-gradient(45deg, #4ade80, #22c55e);
    box-shadow: 0 8px 25px rgba(74, 222, 128, 0.4);
}

.close-button {
    background: linear-gradient(45deg, #ff6b6b, #ee5a24);
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.4);
}

.play-button::before, .close-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.play-button:hover::before, .close-button:hover::before {
    left: 100%;
}

.play-button:hover, .close-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4);
}

.play-button:hover {
    background: linear-gradient(45deg, #22c55e, #4ade80);
    box-shadow: 0 12px 35px rgba(74, 222, 128, 0.5);
}

.close-button:hover {
    background: linear-gradient(45deg, #ee5a24, #ff6b6b);
    box-shadow: 0 12px 35px rgba(255, 107, 107, 0.5);
}

.game-showcase {
    margin: 50px 0;
    position: relative;
    min-height: 450px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.preview-container {
    position: absolute;
    top: 0;
    left: 0;
        width: 100%;
    height: 100%;
    display: flex;
        justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.preview-container.active {
    opacity: 1;
}

.preview-image {
    position: absolute;
    width: 350px;
    height: 200px;
    border-radius: 20px;
    overflow: hidden;
    opacity: 0;
    transform: scale(0.8) rotate(-5deg);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.preview-image img {
        width: 100%;
    height: 100%;
    object-fit: cover;
}

.preview-image.active {
    opacity: 1;
    transform: scale(1) rotate(0deg);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
    border-color: rgba(255, 255, 255, 0.4);
}

.preview-image.fade-out {
    opacity: 0;
    transform: scale(0.8);
}

/* Game Card Styles */
.game-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.05));
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 25px;
    padding: 30px;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    backdrop-filter: blur(15px);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
        flex-direction: column;
    justify-content: center;
        align-items: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.game-card.active {
    opacity: 1;
    transform: scale(1);
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.4);
    animation: gameCardGlow 2s ease-in-out infinite;
}

@keyframes gameCardGlow {
    0%, 100% { box-shadow: 0 25px 80px rgba(0, 0, 0, 0.4); }
    50% { box-shadow: 0 25px 80px rgba(255, 107, 107, 0.3); }
}

.game-card img {
    width: 400px;
    height: 220px;
    object-fit: cover;
    border-radius: 20px;
    margin-bottom: 25px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.game-card:hover img {
    transform: scale(1.05);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.game-card h3 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 25px;
    color: white;
        text-align: center;
    background: linear-gradient(45deg, #ffffff, #feca57);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 10px rgba(255, 255, 255, 0.3);
}

.button-container {
        display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 30px;
    position: relative;
    z-index: 10;
}



/* Footer */
.footer-container {
    background: #1a1a1a;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    margin: 40px 0 20px 0;
    padding: 30px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 2;
}

.footer-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(99, 102, 241, 0.1), rgba(139, 92, 246, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.footer-container:hover::before {
    opacity: 1;
}


.made-by {
    font-size: 1.2rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
}

.made-by .heart {
    color: #ff5fa2;
    display: inline-block;
    animation: heartbeat 1.2s infinite cubic-bezier(0.4, 0, 0.6, 1);
    filter: drop-shadow(0 0 6px #ff5fa2aa);
}

@keyframes heartbeat {
    0% { transform: scale(1); filter: drop-shadow(0 0 6px #ff5fa2aa); }
    10% { transform: scale(1.15); filter: drop-shadow(0 0 12px #ff5fa2cc); }
    20% { transform: scale(1); filter: drop-shadow(0 0 6px #ff5fa2aa); }
    30% { transform: scale(1.15); filter: drop-shadow(0 0 12px #ff5fa2cc); }
    40% { transform: scale(1); filter: drop-shadow(0 0 6px #ff5fa2aa); }
    100% { transform: scale(1); filter: drop-shadow(0 0 6px #ff5fa2aa); }
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social-btn {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.footer-social-btn:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.4);
}

.corner-image {
    position: fixed;
    bottom: 0;
    right: 20px;
    width: 150px;
    height: 150px;
    border-radius: 15px 0 0 0;
    overflow: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.corner-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.corner-image:hover img {
    transform: scale(1.1);
}

/* Click Hint Styles */
.click-hint {
    position: fixed;
    bottom: 80px;
    right: 180px;
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
    color: #ffffff;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    opacity: 1;
    transition: all 0.3s ease;
    pointer-events: none;
    z-index: 1002;
    border: 2px solid #ffffff;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
    white-space: nowrap;
}

.click-hint::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -8px;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid #ff6b6b;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
}

.click-hint span {
    display: block;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.corner-image:hover .click-hint {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.4);
}

/* Speech Bubble Styles - Hover aktiviert */
.speech-bubble {
    position: fixed;
    bottom: 180px;
    right: 20px;
    opacity: 0;
    transform: translateY(20px) scale(0.8);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    pointer-events: none;
    z-index: 1001;
    visibility: hidden;
}

.corner-image:hover .speech-bubble {
    opacity: 1;
    transform: translateY(0) scale(1);
    visibility: visible;
}

.speech-bubble-content {
    position: relative;
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
    color: white;
    padding: 12px 16px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(255, 107, 107, 0.4);
    border: 3px solid #ffffff;
    backdrop-filter: blur(10px);
    min-width: 180px;
    max-width: 200px;
    text-align: center;
    white-space: nowrap;
}

.speech-text {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    display: block;
    line-height: 1.3;
    color: #ffffff;
}

.speech-bubble-tail {
    position: absolute;
    bottom: -8px;
    right: 20px;
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid #ff6b6b;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.speech-bubble-tail::after {
    content: '';
    position: absolute;
    bottom: 1px;
    left: -8px;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid #ee5a24;
}

/* Animation für die Sprechblase */
@keyframes speechBubblePulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.speech-bubble-content {
    animation: speechBubblePulse 2s ease-in-out infinite;
}

/* Glow Effect */
.speech-bubble-content::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, #667eea, #764ba2, #f093fb, #f5576c);
    border-radius: 22px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.corner-image:hover .speech-bubble-content::before {
    opacity: 0.7;
    animation: speechBubbleGlow 1.5s ease-in-out infinite alternate;
}

@keyframes speechBubbleGlow {
    0% {
        filter: hue-rotate(0deg);
    }
    100% {
        filter: hue-rotate(360deg);
    }
}

/* Social Media Options Modal */
.social-options-content {
    max-width: 500px;
    text-align: center;
}

.social-options-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 20px;
}

.social-option-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-decoration: none;
    border-radius: 15px;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.social-option-card:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
}

.social-option-card i {
    font-size: 2rem;
    margin-bottom: 10px;
}

.social-option-card span {
    font-weight: 600;
    font-size: 1rem;
}

@media (max-width: 480px) {
    .social-options-grid {
        grid-template-columns: 1fr;
    }
}

.copyright {
    color: #8b5cf6;
    font-size: 0.9rem;
    text-align: center;
}

.impressum-link {
    color: #e6d7ff;
    text-decoration: underline;
    cursor: pointer;
}

.impressum-link:hover {
    color: #ffffff;
    text-decoration: none;
}

/* Suggestion Badge */
.suggestion-badge {
    background: linear-gradient(45deg, #8b5cf6, #6366f1);
    color: #fff;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
    margin-left: 8px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.suggestion-badge.hidden {
    display: none;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .main-content-flex {
        flex-direction: column;
        align-items: center;
    }

    .genre-filter-container {
        position: static;
        width: 100%;
        max-width: 600px;
    }
    
    .genre-filter-buttons {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .header {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .site-title {
        font-size: 2rem;
    }
    
    .social-media {
        flex-direction: column;
        gap: 15px;
    }
    
    .admin-section {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
    
    .login-buttons-container {
        width: 100%;
        max-width: 300px;
    }
    
    #admin-login-btn, #streamer-login-btn {
        width: 100%;
        justify-content: center;
    }
    
    .action-buttons {
        flex-direction: column;
    align-items: center;
    }
    
    #game-list {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .game-tabs-container {
        flex-direction: column;
        align-items: center;
    }
    
    .modal-content {
        padding: 25px;
        margin: 20px;
        max-width: 95%;
    }
    
    .made-by-container {
        flex-direction: column;
        gap: 20px;
    }
    
    .corner-image {
    position: fixed;
        bottom: 0;
        right: 15px;
        width: 100px;
        height: 100px;
        border-radius: 12px 0 0 0;
    }
    
    .game img {
        height: 120px;
    }
}

@media (max-width: 480px) {
    .content-container {
        padding: 0 10px;
    }
    
    .header {
        padding: 15px 20px;
    }
    
    .site-title {
        font-size: 1.8rem;
    }
    
    .social-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .game-content {
        padding: 15px;
    }
    
    .game h2 {
        font-size: 1.2rem;
    }
}

/* Hidden Class */
.hidden {
    display: none !important;
}

/* Loading Animation */
.loading-animation {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #667eea;
    animation: spin 1s ease-in-out infinite;
}

/* Utility Classes */
.text-gradient {
    background: linear-gradient(45deg, #6366f1, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* --- DARK PURPLE THEME --- */
.glass-effect {
    background: rgba(50, 20, 70, 0.85) !important;
    border: 1px solid rgba(120, 80, 180, 0.25) !important;
}

.shadow-glow {
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.hover-lift {
    transition: all 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

/* Notification System */
.notification-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 400px;
}

.notification {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 15px 20px;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    animation: notificationSlideIn 0.3s ease-out;
    transition: all 0.3s ease;
}

.notification-success {
    border-left: 4px solid #8b5cf6 !important;
    background: rgba(120, 80, 180, 0.15) !important;
}

.notification-error {
    border-left: 4px solid #d72660 !important;
    background: rgba(215, 38, 96, 0.10) !important;
}

.notification-info {
    border-left: 4px solid #6366f1 !important;
    background: rgba(90, 45, 131, 0.10) !important;
}

.notification i {
    font-size: 18px;
    flex-shrink: 0;
}

.notification-success i {
    color: #4ade80;
}

.notification-error i {
    color: #f87171;
}

.notification-info i {
    color: #60a5fa;
}

.notification span {
    flex: 1;
    font-size: 14px;
    font-weight: 500;
}

.notification-close {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    font-size: 18px;
    cursor: pointer;
    padding: 0;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.notification-close:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
}

.notification.fade-out {
    animation: notificationSlideOut 0.3s ease-in forwards;
}

@keyframes notificationSlideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes notificationSlideOut {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(100%);
        opacity: 0;
    }
}

/* Loading Indicator */
.loading-indicator {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 10001;
    transition: all 0.3s ease;
}

.loading-indicator.hidden {
    opacity: 0;
    pointer-events: none;
}

.loading-spinner {
    width: 60px;
    height: 60px;
    border: 4px solid rgba(255, 255, 255, 0.1);
    border-top: 4px solid #8b5cf6 !important;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 20px;
}

.loading-indicator p {
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
    text-align: center;
    margin: 0;
}

/* Enhanced Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.modal-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

/* Form Sections */
.form-section {
    margin-bottom: 25px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.form-section:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.15);
}

.form-section h3 {
    margin-bottom: 15px;
    color: #667eea;
    font-size: 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(45deg, #6366f1, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.form-section h3::before {
    content: '';
    width: 3px;
    height: 16px;
    background: linear-gradient(45deg, #6366f1, #8b5cf6);
    border-radius: 2px;
    flex-shrink: 0;
}

/* Form Group Styling */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #e0cfff;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Enhanced Input Styles */
.modal-content input,
.modal-content textarea {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 12px 16px;
    color: #ffffff;
    font-size: 14px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.modal-content textarea {
    resize: vertical;
    min-height: 80px;
    line-height: 1.5;
}

.modal-content input:focus,
.modal-content textarea:focus {
    outline: none;
    border-color: #6366f1;
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.2);
    background: rgba(255, 255, 255, 0.15);
}

/* Save Button Enhancement */
.save-btn {
    background: linear-gradient(45deg, #6366f1, #8b5cf6);
    color: #ffffff;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
        gap: 8px;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
}

.save-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.4);
    background: linear-gradient(45deg, #8b5cf6, #6366f1);
}

.save-btn:active {
    transform: translateY(0);
}

/* Steam Preview Enhancement */
.steam-preview {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 25px;
    margin: 20px 0;
    display: flex;
    align-items: center;
    gap: 20px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.steam-preview:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
}

.steam-preview img {
    width: 120px;
    height: 80px;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    background: rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
    min-width: 120px;
    min-height: 80px;
}

.preview-info h3 {
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1.3;
}

.preview-info p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    margin: 0;
    line-height: 1.4;
}

/* Fetch Status Enhancement */
.fetch-status {
    padding: 10px 15px;
    border-radius: 8px;
    margin: 10px 0;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
}

.fetch-status.loading {
    background: rgba(96, 165, 250, 0.1);
    border: 1px solid rgba(96, 165, 250, 0.3);
    color: #60a5fa;
}

.fetch-status.success {
    background: rgba(74, 222, 128, 0.1);
    border: 1px solid rgba(74, 222, 128, 0.3);
    color: #4ade80;
}

.fetch-status.error {
    background: rgba(248, 113, 113, 0.1);
    border: 1px solid rgba(248, 113, 113, 0.3);
    color: #f87171;
}

/* Tooltip Enhancement */
.tooltip {
    background: rgba(60, 30, 80, 0.95) !important;
    border: 1px solid #8b5cf6 !important;
    color: #f3eaff !important;
}

.tooltip::before {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 5px solid transparent;
    border-top-color: rgba(0, 0, 0, 0.9);
}

/* Responsive Enhancements */
@media (max-width: 768px) {
    .notification-container {
        top: 10px;
        right: 10px;
        left: 10px;
        max-width: none;
    }
    
    .notification {
        padding: 12px 16px;
    }
    
    .loading-indicator {
        padding: 20px;
    }
    
    .form-section {
        padding: 15px;
    }
    
    .steam-preview {
        flex-direction: column;
        text-align: center;
        padding: 15px;
    }
    
    .steam-preview img {
        width: 80px;
        height: 60px;
        object-fit: cover;
        flex-shrink: 0;
        min-width: 80px;
        min-height: 60px;
    }
}

.genre-tag[data-genre="Action"] {
    background: linear-gradient(45deg, #8b5cf6, #6366f1) !important;
}
.genre-tag[data-genre="Adventure"] {
    background: linear-gradient(45deg, #43e97b, #38f9d7) !important;
    color: #222 !important;
}
.genre-tag[data-genre="Soulslike"] {
    background: linear-gradient(45deg, #ff5858, #f09819) !important;
}
.genre-tag[data-genre="Shooter"] {
    background: linear-gradient(45deg, #43cea2, #185a9d) !important;
}
.genre-tag[data-genre="Sports"] {
    background: linear-gradient(45deg, #f7971e, #ffd200) !important;
    color: #222 !important;
}
.genre-tag[data-genre="Strategy"] {
    background: linear-gradient(45deg, #6366f1, #8b5cf6) !important;
}
.genre-tag[data-genre="Puzzle"] {
    background: linear-gradient(45deg, #f797a2, #fad0c4) !important;
    color: #222 !important;
}
.genre-tag[data-genre="Roblox"] {
    background: linear-gradient(45deg, #00c6ff, #0072ff) !important;
}
.genre-tag[data-genre="Horror"] {
    background: linear-gradient(45deg, #232526, #ff5fa2) !important;
}
.genre-tag[data-genre="Story"] {
    background: linear-gradient(45deg, #f953c6, #b91d73) !important;
}


/* Modern Navigation Header */
.modern-header {
    background: #1a1a1a;
    backdrop-filter: blur(15px);
    border-radius: 15px;
    margin: 15px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
    position: relative;
    z-index: 2;
}

/* Brand Section */
.brand-section {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, #6366f1, #8b5cf6);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
    overflow: hidden;
}

.brand-avatar {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.logo-icon:hover .brand-avatar {
    transform: scale(1.05);
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.brand-primary {
    font-size: 20px;
    font-weight: 700;
    background: linear-gradient(45deg, #6366f1, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.brand-secondary {
    font-size: 16px;
    font-weight: 500;
    color: #f59e0b;
}

/* Main Navigation */
.main-navigation {
    display: flex;
    gap: 8px;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    color: #94a3b8;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.nav-link:hover::before {
    left: 100%;
}

.nav-link:hover {
    background: rgba(99, 102, 241, 0.1);
    color: #6366f1;
    border-color: rgba(99, 102, 241, 0.3);
    transform: translateY(-2px);
}

.nav-link.active {
    background: linear-gradient(45deg, #6366f1, #8b5cf6);
    color: white;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
}

.nav-link i {
    font-size: 14px;
}

/* Right Section */
.nav-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.language-selector .lang-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #94a3b8;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.language-selector .lang-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.support-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: linear-gradient(45deg, #ff6b6b, #ff8e8e);
    border: none;
    border-radius: 10px;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
}

.support-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.4);
}

.login-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: linear-gradient(45deg, #6366f1, #8b5cf6);
    border: none;
    border-radius: 10px;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
}

.login-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.4);
}

.login-btn i {
    font-size: 14px;
}

/* Admin Logout Button */
.login-btn[style*="linear-gradient(45deg, #dc2626, #b91c1c)"] {
    background: linear-gradient(45deg, #dc2626, #b91c1c) !important;
}

.login-btn[style*="linear-gradient(45deg, #dc2626, #b91c1c)"]:hover {
    background: linear-gradient(45deg, #ef4444, #dc2626) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(220, 38, 38, 0.4);
}

/* Streamer Logout Button */
.login-btn[style*="linear-gradient(45deg, #059669, #047857)"] {
    background: linear-gradient(45deg, #059669, #047857) !important;
}

.login-btn[style*="linear-gradient(45deg, #059669, #047857)"]:hover {
    background: linear-gradient(45deg, #10b981, #059669) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(5, 150, 105, 0.4);
}

/* Page Content */
.main-content {
    margin: 20px;
}

.page-content {
    display: none;
    animation: fadeIn 0.5s ease;
}

.page-content.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Start Page */
.start-hero {
    text-align: center;
    padding: 80px 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.start-hero h1 {
    font-size: 4rem;
    font-weight: 900;
    color: white;
    margin-bottom: 40px;
    animation: fadeInUp 0.8s ease-out;
    white-space: nowrap;
}

.start-hero .brand-name {
    background: linear-gradient(45deg, #6366f1, #8b5cf6, #ec4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.start-hero .important-notice {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: white;
    padding: 25px 30px;
    border-radius: 20px;
    margin: 40px auto;
    text-align: center;
    font-size: 1.3rem;
    font-weight: 700;
    box-shadow: 0 10px 30px rgba(245, 158, 11, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: fadeInUp 0.8s ease-out 0.2s both;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    max-width: 700px;
    position: relative;
    overflow: hidden;
}

.start-hero .important-notice::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: shimmer 3s infinite;
}

.start-hero .important-notice i {
    font-size: 1.3rem;
    animation: warningBlink 1.5s ease-in-out infinite;
}

@keyframes importantPulse {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
    }
    50% { 
        transform: scale(1.02);
        box-shadow: 0 6px 20px rgba(255, 107, 107, 0.4);
    }
}

@keyframes warningBlink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.start-hero p {
    font-size: 1.4rem;
    color: #e5e7eb;
    max-width: 800px;
    margin: 40px auto;
    line-height: 1.9;
    text-align: left;
    animation: fadeInUp 0.8s ease-out 0.4s both;
    padding: 0 20px;
}

.start-hero ul {
    text-align: left;
    margin: 30px auto;
    color: #d1d5db;
    max-width: 700px;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.start-hero li {
    margin-bottom: 18px;
    line-height: 1.6;
    font-size: 1.2rem;
    position: relative;
    padding-left: 30px;
}

.start-hero li::before {
    content: '🎮';
    position: absolute;
    left: 0;
    top: 0;
    font-size: 1.1rem;
}



/* Games Page */
.games-header {
    margin-bottom: 30px;
}

.games-header h1 {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 30px;
    text-align: center;
}

.games-controls {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

/* About Page */
.about-hero {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 40px;
    text-align: center;
}

.about-hero h1 {
    font-size: 4rem;
    font-weight: 900;
    color: white;
    margin-bottom: 20px;
    animation: fadeInUp 0.8s ease-out;
}

.about-hero .brand-name {
    background: linear-gradient(45deg, #6366f1, #8b5cf6, #ec4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-subtitle {
    font-size: 1.5rem;
    color: #d1d5db;
    margin-bottom: 80px;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.about-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 80px;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.about-column {
    text-align: left;
}

.about-column h3 {
    color: white;
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 25px;
}

.about-column p {
    color: #e5e7eb;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.faq-section {
    text-align: left;
    max-width: 800px;
    margin: 0 auto;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.faq-section h3 {
    color: white;
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 30px;
}

.faq-item {
    margin-bottom: 15px;
}

.faq-question {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.08);
}

.faq-question span {
    color: white;
    font-weight: 600;
}

.faq-question i {
    color: #6366f1;
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 0 0 10px 10px;
}

.faq-answer p {
    padding: 20px;
    margin: 0;
    color: #d1d5db;
    line-height: 1.6;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

/* Contact Page */
.contact-hero {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 40px;
    text-align: center;
}

.contact-hero h1 {
    font-size: 4rem;
    font-weight: 900;
    color: white;
    margin-bottom: 20px;
    animation: fadeInUp 0.8s ease-out;
}

.contact-hero .contact-action {
    background: linear-gradient(45deg, #6366f1, #8b5cf6, #ec4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-subtitle {
    font-size: 1.5rem;
    color: #d1d5db;
    margin-bottom: 80px;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.contact-info-section {
    margin-bottom: 60px;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.contact-info-section h2 {
    color: white;
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.contact-info-section p {
    color: #d1d5db;
    font-size: 1.2rem;
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.contact-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.6s ease;
}

.contact-card:hover::before {
    left: 100%;
}

.contact-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    border-color: rgba(99, 102, 241, 0.4);
}

.contact-card .contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    margin: 0 auto 25px auto;
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.4);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-card:hover .contact-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 35px rgba(99, 102, 241, 0.6);
}

.contact-card h3 {
    color: white;
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.contact-card .contact-link {
    background: linear-gradient(45deg, #6366f1, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.contact-method::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.6s ease;
}

.contact-method:hover::before {
    left: 100%;
}

.contact-method:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.05));
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
    border-color: rgba(99, 102, 241, 0.4);
}

.contact-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 32px;
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.4);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-method:hover .contact-icon {
    transform: scale(1.15) rotate(8deg);
    box-shadow: 0 15px 40px rgba(99, 102, 241, 0.7);
}

.contact-details h3 {
    background: linear-gradient(45deg, #ffffff, #e5e7eb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
    font-size: 1.6rem;
    font-weight: 800;
}

.contact-details p {
    color: #d1d5db;
    margin-bottom: 15px;
    font-size: 1.2rem;
    line-height: 1.6;
}

.contact-link {
    background: linear-gradient(45deg, #6366f1, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.contact-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(45deg, #6366f1, #8b5cf6);
    transition: width 0.4s ease;
}

.contact-link:hover::after {
    width: 100%;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 20px;
        padding: 20px;
    }
    
    .main-navigation {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
    
    .nav-right {
        flex-direction: column;
        gap: 15px;
        width: 100%;
    }
    
    .start-hero {
        padding: 40px 20px;
    }
    
    .start-hero h1 {
        font-size: 2.5rem;
    }
    
    .start-hero .important-notice {
        padding: 20px;
        font-size: 1.1rem;
    }
    
    .start-hero p {
        font-size: 1.2rem;
        padding: 0 10px;
    }
    
    .start-hero ul {
        padding: 20px;
        margin: 20px;
    }
    
    .start-hero li {
        font-size: 1.1rem;
    }
    
    .about-hero, .contact-hero {
        padding: 40px 20px;
    }
    
    .about-hero h1, .contact-hero h1 {
        font-size: 2.5rem;
    }
    
    .about-content-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .contact-card {
        padding: 30px 20px;
    }
    
    .contact-method {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .contact-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
    
    .genre-filter-container {
        margin: 20px;
        padding: 20px;
    }
    
    .genre-filter-buttons {
        gap: 8px;
    }
    
    .genre-filter-btn {
        padding: 8px 12px;
        font-size: 0.9rem;
        min-height: 40px;
    }
    
    #admin-panel, .streamer-panel {
        margin: 20px;
        padding: 20px;
        gap: 15px;
    }
    
    #admin-panel button {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
    
    .game {
        margin: 10px;
    }
    
    .game-content {
        padding: 20px;
    }
    
    .game h2 {
        font-size: 1.3rem;
    }
    
    .game-description {
        font-size: 0.95rem;
    }
}


/* Login Options Modal */
.login-options {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
}

.login-option-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 30px;
    background: linear-gradient(45deg, #6366f1, #8b5cf6);
    border: none;
    border-radius: 10px;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
    width: auto;
    min-width: 200px;
    justify-content: center;
}

.login-option-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.4);
}

.login-option-btn i {
    font-size: 18px;
}

/* Enhanced Genre Filter Styles */
.genre-filter-btn.active {
    background: linear-gradient(135deg, #6366f1, #8b5cf6) !important;
    border-color: transparent !important;
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.4) !important;
    transform: translateY(-2px) scale(1.08) !important;
    color: white !important;
}

.genre-filter-btn.active::before {
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent) !important;
}

.genre-filter-btn i {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.genre-filter-btn:hover i {
    transform: scale(1.1) rotate(5deg);
}

.genre-filter-btn.active i {
    transform: scale(1.15);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}
