/* --- GLOBAL STYLES --- */
/* This stylesheet defines the look and feel for the entire application */

/* Basic Reset & Typography */
body {
    font-family: 'Oxanium', sans-serif; /* Using font from your design */
    background-color: #121212;
    color: #e0e0e0;
    margin: 0;
    line-height: 1.6;
}

*, *:before, *:after {
    box-sizing: border-box;
}

/* --- LANDING PAGE SECTIONS --- */
.section {
    padding: 60px 0;    /* Remove horizontal padding */
    text-align: center;
    width: 100%;
}
.section-title {
    font-family: 'Orbitron', sans-serif; /* Using font from your design */
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #fff;
}
.section-subtitle {
    font-size: 1.1rem;
    color: #b0b0b0;
    max-width: 700px;
    margin: 0 auto 40px auto;
}

/* Update Section Icon Styles */
.section-icon {
    width: 144px;       /* Increased from 48px (3x) */
    height: 144px;      /* Increased from 48px (3x) */
    margin-bottom: 2rem;/* Increased margin for better spacing */
    filter: drop-shadow(0 0 10px rgba(187, 134, 252, 0.3)) /* Purple glow matching site theme */
           drop-shadow(0 0 20px rgba(98, 0, 234, 0.2));    /* Secondary deeper purple glow */
    opacity: 0.9;       /* Slight transparency for better blend */
    transition: all 0.3s ease; /* Smooth transition for hover effect */
}

.section-icon:hover {
    filter: drop-shadow(0 0 15px rgba(187, 134, 252, 0.5))
           drop-shadow(0 0 30px rgba(98, 0, 234, 0.3));
    opacity: 1;
    transform: scale(1.05); /* Subtle grow effect on hover */
}

.section-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 3rem; /* Increased to accommodate larger icons */
    position: relative;  /* For positioning context */
}

/* Optional: Add reflection effect */
.section-header::after {
    content: '';
    position: absolute;
    bottom: -20px;
    width: 100%;
    height: 20px;
    background: linear-gradient(to bottom, 
        rgba(187, 134, 252, 0.1),
        transparent
    );
    pointer-events: none;
}

/* --- HEADER --- */
.main-header {
    background-color: rgba(18, 18, 18, 0.95);
    padding: 1rem 0;
    border-bottom: 1px solid #2a2a2a;
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.logo a {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    font-weight: bold;
    color: #fff;
    text-decoration: none;
}

.main-nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 2rem;
    align-items: center;
}

.main-nav li {
    margin: 0;
}

.main-nav a {
    color: #e0e0e0;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 0.5rem 0;
}

.main-nav a:hover,
.main-nav a.active {
    color: #bb86fc;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
}

@media (max-width: 768px) {
    .nav-toggle {
        display: block;
    }
    
    .main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: rgba(18, 18, 18, 0.98);
        backdrop-filter: blur(10px);
        transform: translateY(-100%);
        opacity: 0;
        transition: all 0.3s ease;
        pointer-events: none;
    }
    
    .main-nav.nav-open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }
    
    .main-nav ul {
        flex-direction: column;
        padding: 2rem;
        gap: 1rem;
    }
}

/* --- HERO SECTION --- */
.hero-section {
    color: #fff;
    padding: 80px 20px;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #121212; /* Fallback */
    /* A subtle gradient can be nice if the 3D background doesn't load */
    background: linear-gradient(170deg, #1a1a2e 0%, #121212 100%);
    position: relative;
    overflow: hidden;
}

#hero-3d-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
}

.hero-title {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4rem); /* Responsive font size */
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
}
.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    max-width: 600px;
    margin: 0 auto 2.5rem auto;
    color: #d0d0d0;
    font-weight: 300;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.8);
}

.hero-ctas {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* --- BUTTONS --- */
.btn, button {
    font-family: 'Oxanium', sans-serif;
    padding: 12px 28px;
    border: 2px solid transparent;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}
.btn-primary {
    background-color: #6200ea;
    color: white;
    border-color: #6200ea;
}
.btn-primary:hover {
    background-color: #3700b3;
    border-color: #3700b3;
    transform: translateY(-2px);
}
.btn-secondary {
    background-color: transparent;
    color: #bb86fc;
    border-color: #bb86fc;
}
.btn-secondary:hover {
    background-color: rgba(187, 134, 252, 0.1);
    color: #fff;
}
.btn-tertiary {
    color: #aaa;
    text-decoration: underline;
}

/* --- FEATURES & GRIDS --- */
.solution-grid,
.community-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin: 40px auto;  /* Center the grid */
    max-width: 1200px;  /* Match container width */
}
.solution-item, .feature-card {
    background-color: #1e1e1e;
    padding: 30px;
    border-radius: 12px;
    border: 1px solid #2a2a2a;
    transition: transform 0.3s, box-shadow 0.3s;
}
.solution-item:hover, .feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}
.feature-card img {
    height: 50px;
    margin-bottom: 15px;
}

/* --- YOUTUBE & FOOTER --- */
.youtube-embed iframe {
    max-width: 100%;
    border-radius: 8px;
    border: 1px solid #333;
    margin-bottom: 1rem;
}
.main-footer {
    background-color: #1e1e1e;
    padding: 40px 20px;
    text-align: center;
    border-top: 1px solid #2a2a2a;
}
.social-links img {
    height: 24px;
    margin: 0 10px;
    opacity: 0.7;
    transition: opacity 0.3s;
}
.social-links img:hover {
    opacity: 1;
}

/* --- AUTH PAGE STYLES --- */
.auth-page-body {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    background: linear-gradient(170deg, #1a1a2e 0%, #121212 100%);
}

.auth-container {
    width: 100%;
    max-width: 450px;
    padding: 2.5rem;
    margin: 1rem;
    background-color: #1e1e1e;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
    border: 1px solid #2a2a2a;
    text-align: center;
}

.auth-container h1 {
    font-family: 'Orbitron', sans-serif;
    color: #fff;
    margin-bottom: 2rem;
    font-size: 2rem;
}

.auth-container input {
    width: 100%;
    padding: 0.9rem;
    margin-bottom: 1rem;
    border: 1px solid #444;
    background-color: #2a2a2a;
    color: #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.auth-container input:focus {
    border-color: #bb86fc;
    outline: none;
}

.auth-container button {
    width: 100%;
    margin-top: 1rem;
}

.auth-link {
    display: block;
    margin-top: 1.5rem;
    color: #bb86fc;
    text-decoration: none;
    transition: color 0.3s;
}

.auth-link:hover {
    color: #fff;
}

.error-message {
    color: #cf6679;
    margin: 1rem 0;
    min-height: 20px;
}
.logged-in { display: none; }
.logged-out { display: block; }

/* Dashboard Specific */
.dashboard-container { max-width: 600px; }
.stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; text-align: left; margin: 2rem 0; }
.stat-item { background-color: #2a2a2a; padding: 1.25rem; border-radius: 8px; }
.stat-item h3 { margin: 0 0 0.5rem 0; font-size: 0.9rem; color: #bb86fc; text-transform: uppercase; }
.stat-item p { margin: 0; font-size: 1.75rem; font-weight: bold; color: #fff; }
#logout-button { background-color: #B00020; margin-top: 1rem; }
#logout-button:hover { background-color: #8a0019; }

/* --- GAME UI STYLES --- */
/* Background and overlay containers */
.overlay-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 1000;
    pointer-events: none;
}

.overlay-container > * {
    pointer-events: auto;
}

/* Video backgrounds */
.video-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

/* Navigation and zone buttons */
.zone-button, .nav-button {
    background: linear-gradient(145deg, #2a2a2a, #1a1a1a);
    border: 2px solid #bb86fc;
    color: #fff;
    padding: 12px 24px;
    border-radius: 12px;
    cursor: pointer;
    font-family: 'Oxanium', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    text-align: center;
    box-shadow: 0 4px 15px rgba(187, 134, 252, 0.3);
    animation: glow 2s ease-in-out infinite alternate;
}

.zone-button:hover, .nav-button:hover {
    background: linear-gradient(145deg, #3a3a3a, #2a2a2a);
    border-color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(187, 134, 252, 0.5);
}

@keyframes glow {
    from {
        box-shadow: 0 4px 15px rgba(187, 134, 252, 0.3);
    }
    to {
        box-shadow: 0 4px 25px rgba(187, 134, 252, 0.6);
    }
}

/* Door navigation containers */
.doors-container {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 20px;
    z-index: 100;
}

/* Oracle character styling */
.oracle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 50;
}

.oracle:hover {
    transform: translate(-50%, -50%) scale(1.05);
    filter: drop-shadow(0 0 20px rgba(187, 134, 252, 0.8));
}

/* Popup/Modal styles */
.popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
}

.popup-content {
    background-color: #1e1e1e;
    padding: 30px;
    border-radius: 12px;
    border: 2px solid #bb86fc;
    max-width: 500px;
    width: 90%;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7);
}

.popup-content h2 {
    color: #fff;
    margin-bottom: 20px;
    font-family: 'Orbitron', sans-serif;
}

.popup-content p {
    color: #e0e0e0;
    margin-bottom: 20px;
    line-height: 1.6;
}

.close-popup {
    background-color: #6200ea;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    cursor: pointer;
    font-family: 'Oxanium', sans-serif;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

/* Password Reset Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3000;
}

.modal-content {
    background-color: #1e1e1e;
    border-radius: 12px;
    border: 2px solid #bb86fc;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7);
    overflow: hidden;
}

.modal-header {
    background-color: #2a2a2a;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #444;
}

.modal-header h2 {
    color: #fff;
    margin: 0;
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
}

.modal-close {
    background: none;
    border: none;
    color: #bb86fc;
    font-size: 24px;
    cursor: pointer;
    padding: 5px;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background-color: rgba(187, 134, 252, 0.2);
    transform: scale(1.1);
}

.modal-body {
    padding: 30px;
}

.modal-body p {
    color: #e0e0e0;
    margin-bottom: 20px;
    line-height: 1.6;
}

.modal-body input[type="email"] {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    background-color: #2a2a2a;
    border: 1px solid #444;
    border-radius: 8px;
    color: #e0e0e0;
    font-family: 'Oxanium', sans-serif;
    font-size: 14px;
}

.modal-body input[type="email"]:focus {
    outline: none;
    border-color: #bb86fc;
    box-shadow: 0 0 10px rgba(187, 134, 252, 0.3);
}

.reset-error-message,
.reset-success-message {
    min-height: 20px;
    margin-bottom: 15px;
    font-size: 14px;
    text-align: center;
}

.reset-error-message {
    color: #ff5252;
}

.reset-success-message {
    color: #00e676;
}

.modal-body .btn {
    margin: 5px;
    min-width: 120px;
}

.modal-body .btn-secondary {
    background-color: #666;
    border-color: #666;
}

.modal-body .btn-secondary:hover {
    background-color: #777;
    border-color: #777;
}

.close-popup:hover {
    background-color: #3700b3;
}

/* --- TRIVIA GAME STYLES --- */
.trivia-game-section {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    position: relative;
}

.trivia-container {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(42, 42, 42, 0.8);
    border-radius: 16px;
    padding: 3rem;
    border: 2px solid #bb86fc;
    box-shadow: 0 10px 30px rgba(187, 134, 252, 0.2);
    backdrop-filter: blur(10px);
}

.trivia-question {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 2rem;
    text-align: center;
    color: #fff;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.trivia-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.trivia-option {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid #555;
    color: #fff;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Oxanium', sans-serif;
    font-size: 1rem;
    text-align: left;
    width: 100%;
}

.trivia-option:hover {
    background: rgba(187, 134, 252, 0.2);
    border-color: #bb86fc;
    transform: translateX(10px);
}

.trivia-option:disabled {
    cursor: not-allowed;
    opacity: 0.7;
}

.trivia-option.correct {
    background: rgba(0, 255, 0, 0.2);
    border-color: #00ff00;
    color: #00ff00;
}

.trivia-option.wrong {
    background: rgba(255, 0, 0, 0.2);
    border-color: #ff0000;
    color: #ff0000;
}

.trivia-feedback {
    text-align: center;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    min-height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.trivia-feedback.correct {
    color: #00e676;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.trivia-feedback.wrong {
    color: #ff5252;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.trivia-results {
    text-align: center;
    display: none;
    background: rgba(187, 134, 252, 0.1);
    border-radius: 12px;
    padding: 2rem;
    border: 1px solid #bb86fc;
}

.trivia-results h3 {
    font-family: 'Orbitron', sans-serif;
    color: #bb86fc;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.trivia-results p {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: #fff;
}

#trivia-next-btn {
    display: none;
    margin: 0 auto;
}

/* Footer Improvements */
.main-footer {
    background: linear-gradient(135deg, #1a1a2e 0%, #121212 100%);
    border-top: 2px solid #2a2a2a;
    padding: 3rem 0 2rem;
    margin-top: 4rem;
}

.main-footer .container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-brand h3 {
    font-family: 'Orbitron', sans-serif;
    color: #bb86fc;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.footer-brand p {
    color: #b0b0b0;
    line-height: 1.6;
}

.footer-nav h3 {
    color: #fff;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-nav li {
    margin-bottom: 0.5rem;
}

.footer-nav a {
    color: #b0b0b0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: #bb86fc;
}

.social-links {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.social-links a {
    display: block;
    width: 40px;
    height: 40px;
    background: rgba(187, 134, 252, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: rgba(187, 134, 252, 0.3);
    transform: translateY(-2px);
}

.social-links img {
    width: 20px;
    height: 20px;
    filter: brightness(0) invert(1);
}

@media (max-width: 768px) {
    .main-footer .container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .trivia-container {
        padding: 2rem 1.5rem;
        margin: 0 1rem;
    }
    
    .social-links {
        justify-content: center;
    }
}

/* User data display */
.user-data {
    position: fixed;
    top: 100px;
    right: 20px;
    background-color: rgba(30, 30, 30, 0.9);
    padding: 15px;
    border-radius: 8px;
    border: 1px solid #bb86fc;
    color: #fff;
    font-family: 'Oxanium', sans-serif;
    font-size: 0.9rem;
    z-index: 999;
    backdrop-filter: blur(10px);
}

.user-data h3 {
    margin: 0 0 10px 0;
    color: #bb86fc;
    font-size: 1rem;
}

.user-data p {
    margin: 5px 0;
    color: #e0e0e0;
}

/* Game character styles */
.character {
    position: absolute;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 50;
}

.character:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.5));
}

/* Responsive design */
@media (max-width: 768px) {
    .user-data {
        top: 85px;
        right: 15px;
        padding: 10px;
        font-size: 0.8rem;
    }
    
    .doors-container {
        bottom: 15px;
        gap: 15px;
    }
    
    .zone-button, .nav-button {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .popup-content {
        padding: 20px;
        margin: 20px;
    }
}

/* --- ARCHIVE LIVE BANNER STYLES --- */
.archive-live-banner {
    position: relative;
    background: linear-gradient(135deg, rgba(0,20,40,0.95), rgba(0,40,80,0.95)), url('../images/advert_archive_live.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
    border-bottom: 3px solid #00ff88;
}

.archive-live-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 48%, rgba(0,255,136,0.1) 50%, transparent 52%);
    animation: shine 3s infinite linear;
    pointer-events: none;
}

@keyframes shine {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.archive-live-banner .banner-content {
    max-width: 1200px;
    padding: 0 20px;
    z-index: 2;
    position: relative;
}

.archive-live-banner .banner-subtitle {
    font-size: 1.2em;
    color: #00ff9c;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    text-shadow: 0 0 10px rgba(0,255,156,0.5);
}

.archive-live-banner h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 4rem;
    font-weight: 700;
    text-shadow: 0 0 30px #00ff88, 0 0 60px #00ff88;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #00ff88, #ffffff, #00ff88);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: textGlow 2s ease-in-out infinite alternate;
}

@keyframes textGlow {
    from { filter: brightness(1) contrast(1); }
    to { filter: brightness(1.2) contrast(1.1); }
}

.archive-live-banner .subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: #e0e0e0;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.archive-live-banner .cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.archive-live-banner .btn-epic {
    background: linear-gradient(45deg, #00ff88, #00cc66);
    color: #000;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0,255,136,0.3);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.archive-live-banner .btn-epic::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;
}

.archive-live-banner .btn-epic:hover::before {
    left: 100%;
}

.archive-live-banner .btn-epic:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(0,255,136,0.4);
}

.archive-live-banner .btn-secondary {
    background: transparent;
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.1rem;
    border: 2px solid #00ff88;
    transition: all 0.3s ease;
}

.archive-live-banner .btn-secondary:hover {
    background: rgba(0,255,136,0.1);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,255,136,0.2);
}

@media (max-width: 768px) {
    .archive-live-banner h1 {
        font-size: 2.5rem;
    }
    
    .archive-live-banner .subtitle {
        font-size: 1.2rem;
    }
    
    .archive-live-banner .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .archive-live-banner .btn-epic,
    .archive-live-banner .btn-secondary {
        width: 100%;
        max-width: 300px;
    }
}

/* --- DASHBOARD IMPROVEMENTS --- */
.dashboard-archive-announcement {
    background: linear-gradient(135deg, rgba(0,20,40,0.9), rgba(0,40,20,0.9));
    border: 2px solid #00ff88;
    border-radius: 15px;
    padding: 25px;
    margin: 20px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.dashboard-archive-announcement::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #00ff88, #00cc66, #00ff88);
    border-radius: 15px;
    z-index: -1;
    animation: borderGlow 2s linear infinite;
}

@keyframes borderGlow {
    0%, 100% { opacity: 0.8; }
    50% { opacity: 1; }
}

.dashboard-archive-announcement h3 {
    color: #00ff88;
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    margin-bottom: 15px;
    text-shadow: 0 0 15px #00ff88;
}

.dashboard-archive-announcement p {
    color: #e0e0e0;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.gamehub-button-prominent {
    background: linear-gradient(45deg, #ff6b35, #ff8c42);
    color: white;
    padding: 20px 40px;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1.3rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(255,107,53,0.3);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Orbitron', sans-serif;
}

.gamehub-button-prominent::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.gamehub-button-prominent:hover::before {
    width: 300px;
    height: 300px;
}

.gamehub-button-prominent:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 30px rgba(255,107,53,0.4);
}
