transition: opacity 0.3s ease;
}

.featured-video:hover::before {
    opacity: 1;
}

.featured-video:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 70px rgba(255, 193, 7, 0.1);
}

.video-wrapper {
    position: relative;
    width: 100%;
    height: 400px;
    border-radius: 25px 25px 0 0;
    overflow: hidden;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.featured-video .media-info {
    padding: 35px;
    background: rgba(10, 10, 10, 0.5);
    position: relative;
}

/* FEATURED VIDEO INFO - RESTORED ORIGINAL OPACITY */
.featured-video .media-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://gameluster.com/wp-content/uploads/2025/07/Marvel-Rivals-Jean-Grey-Phoenix.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.12;
    z-index: -1;
}

.featured-video .media-info h3 {
    font-size: 2.2rem;
    font-weight: 900;
    margin-bottom: 18px;
    background: linear-gradient(135deg, var(--primary-yellow), var(--secondary-yellow));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -1px;
    position: relative;
    z-index: 1;
}

.featured-video .media-info p {
    font-size: 1.3rem;
    line-height: 1.7;
    opacity: 0.85;
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
    position: relative;
    z-index: 1;
}

/* SIDEBAR VIDEOS */
.media-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
    height: fit-content;
}

.media-sidebar .media-item {
    background: linear-gradient(135deg, var(--card-bg-1), var(--card-bg-2));
    border-radius: 18px;
    padding: 18px;
    border: 2px solid rgba(255, 193, 7, 0.2);
    backdrop-filter: blur(20px);
    transition: all 0.3s ease;
    display: flex;
    gap: 18px;
    align-items: center;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    min-height: 80px;
}

.media-sidebar .media-item::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, transparent, rgba(255, 193, 7, 0.3), transparent);
    background-size: 300% 300%;
    border-radius: 20px;
    z-index: -1;
    animation: borderGlow 8s ease-in-out infinite;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.media-sidebar .media-item:hover::before {
    opacity: 1;
}

.media-sidebar .media-item:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 193, 7, 0.4);
    box-shadow: 0 15px 35px rgba(255, 193, 7, 0.1);
}

.media-sidebar .media-item.active-media {
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.15), rgba(255, 152, 0, 0.15));
    border-color: rgba(255, 193, 7, 0.5);
    transform: translateY(-2px);
}

.media-sidebar .media-item.active-media::before {
    opacity: 1;
}

.media-thumbnail {
    width: 90px;
    height: 70px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    flex-shrink: 0;
    border: 2px solid rgba(255, 193, 7, 0.3);
    overflow: hidden;
}

.media-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--primary-yellow);
    font-size: 1.3rem;
    background: rgba(0, 0, 0, 0.8);
    border-radius: 50%;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-yellow);
}

.media-sidebar .media-item:hover .play-overlay {
    background: rgba(255, 193, 7, 0.9);
    color: #000;
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 0 20px rgba(255, 193, 7, 0.5);
}

.media-sidebar .media-info h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 6px;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.3;
}

.media-sidebar .media-info p {
    font-size: 1rem;
    opacity: 0.7;
    margin: 0;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.8);
}

/* ============================================================= */
/* SECTION DIVIDERS - ANIMATED HORIZONTAL LINES */
/* ============================================================= */

.section-divider {
    width: 60%;
    height: 2px;
    margin: 40px auto;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255, 193, 7, 0.3) 20%,
        rgba(255, 193, 7, 0.8) 50%,
        rgba(255, 193, 7, 0.3) 80%,
        transparent 100%
    );
    animation: horizontalLineFlow 3s ease-in-out infinite;
    position: relative;
    z-index: 1;
}

@keyframes horizontalLineFlow {
    0%, 100% {
        background: linear-gradient(
            90deg,
            transparent 0%,
            rgba(255, 193, 7, 0.3) 20%,
            rgba(255, 193, 7, 0.8) 50%,
            rgba(255, 193, 7, 0.3) 80%,
            transparent 100%
        );
        box-shadow: 0 0 10px rgba(255, 193, 7, 0.3);
    }
    50% {
        background: linear-gradient(
            90deg,
            transparent 0%,
            rgba(255, 193, 7, 0.5) 20%,
            rgba(255, 193, 7, 1) 50%,
            rgba(255, 193, 7, 0.5) 80%,
            transparent 100%
        );
        box-shadow: 0 0 20px rgba(255, 193, 7, 0.6);
    }
}

/* ============================================================= */
/* PRICING SECTION WITH GAME OVERLAYS */
/* ============================================================= */

.pricing-section {
    padding: 80px 50px 60px;
    max-width: 1600px;
    margin: 0 auto;
    position: relative;
    scroll-margin-top: 90px;
}

.pricing-header-button {
    text-align: center;
    margin-bottom: 40px;
}

.map-layout {
    padding: 0;
    position: relative;
    overflow: visible;
    min-height: auto;
    margin: 0 auto;
    max-width: 1600px;
}

.map-regions {
    position: relative;
    z-index: 2;
    height: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.map-region {
    position: relative;
}

/* PRICING SECTION HEADERS */
.region-header {
    text-align: center;
    margin-bottom: 40px;
    padding: 30px;
    border-radius: 20px;
    border: 2px solid;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(20px);
}

/* LITE AREA STYLING (LEFT SIDE) - MAKE LESS PREMIUM */
.lite-header {
    background: rgba(166, 127, 22, 0.08);
    border-color: rgba(130, 130, 129, 0.6);
    border-width: 1px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.lite-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://wallpapers.com/images/hd/4k-hd-valorant-o0len0zz3onx60zy.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.12;
    z-index: -1;
}

/* ULTIMATE AREA STYLING (RIGHT SIDE) */
.ultimate-header {
    background: rgba(255, 193, 7, 0.15);
    border-color: var(--primary-yellow);
    border-width: 1.5px;
    box-shadow: 0 0 30px rgba(255, 193, 7, 0.3);
}

.ultimate-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://i.pinimg.com/736x/3a/f7/80/3af780b7016a0a5261621b40f7e985fc.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.18;
    z-index: -1;
}

.region-title {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 3px;
    position: relative;
    z-index: 1;
}

/* LITE SECTION TITLES - MAKE LESS PROMINENT */
.lite-region .region-title {
    color: rgba(166, 127, 22, 0.8);
    font-size: 2.2rem;
    text-shadow: none;
    filter: none;
}

/* ULTIMATE SECTION TITLES */
.ultimate-region .region-title {
    color: var(--primary-yellow);
    text-shadow: 0 0 25px rgba(255, 193, 7, 0.5);
    filter: drop-shadow(0 0 15px rgba(255, 193, 7, 0.4));
}

.region-subtitle {
    color: var(--text-medium);
    font-size: 1.1rem;
    font-weight: 500;
    position: relative;
    z-index: 1;
}

.region-locations {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

/* PRICING CARDS */
.map-location {
    background: linear-gradient(135deg, var(--card-bg-1), var(--card-bg-2));
    border-radius: 20px;
    padding: 35px 30px;
    border: 2px solid;
    position: relative;
    transition: all 0.4s ease;
    cursor: pointer;
    backdrop-filter: blur(20px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    overflow: hidden;
    min-height: 200px;
    display: flex;
    flex-direction: column;
}

.map-location::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, transparent, rgba(255, 193, 7, 0.3), transparent);
    background-size: 300% 300%;
    border-radius: 22px;
    z-index: 0;
    animation: borderGlow 8s ease-in-out infinite;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.map-location::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, transparent, rgba(255, 193, 7, 0.3), transparent);
    background-size: 300% 300%;
    border-radius: 22px;
    z-index: 0;
    animation: borderGlow 8s ease-in-out infinite;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.map-location:hover::before {
    opacity: 1;
}

.map-location:hover {
    transform: translateX(15px);
}

/* LITE PRICING CARDS */
.lite-location {
    border-color: var(--lite-border);
    border-width: 1.5px;
}

.lite-location::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://wallpapers.com/images/hd/4k-hd-valorant-o0len0zz3onx60zy.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.05;
    z-index: -1;
    border-radius: 20px;
    transition: opacity 0.3s ease;
}

.lite-location:hover {
    border-color: var(--lite-border);
    border-width: 3px;
}

.lite-location:hover::after {
    opacity: 0.20;
}

/* ULTIMATE PRICING CARDS */
.ultimate-location {
    border-color: var(--primary-yellow);
    border-width: 1.5px;
}

.ultimate-location::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://i.pinimg.com/736x/3a/f7/80/3af780b7016a0a5261621b40f7e985fc.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.15;
    z-index: -1;
    border-radius: 20px;
    transition: opacity 0.3s ease;
}

.ultimate-location:hover {
    border-color: var(--primary-yellow);
    border-width: 3px;
    box-shadow: 0 25px 60px rgba(255, 193, 7, 0.3);
}

.ultimate-location:hover::after {
    opacity: 0.25;
}

/* PRICING CARD TITLES */
.location-name {
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    z-index: 10;
}

.lite-location .location-name {
    color: var(--lite-brown);
}

.ultimate-location .location-name {
    color: var(--primary-yellow);
    text-shadow: 0 0 10px rgba(255, 193, 7, 0.3);
}

/* PRICING CARD PRICES */
.location-price {
    font-size: 2.8rem;
    font-weight: 900;
    margin-bottom: 20px;
    line-height: 1;
    position: relative;
    z-index: 10;
}

.price-period {
    font-size: 1rem;
    font-weight: 500;
    opacity: 0.7;
}

.lite-location .location-price {
    color: var(--lite-brown);
}

.ultimate-location .location-price {
    color: var(--primary-yellow);
    filter: drop-shadow(0 0 10px rgba(255, 193, 7, 0.3));
}

/* PRICING CARD FEATURES */
.location-features {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 25px;
    position: relative;
    z-index: 10;
    flex-grow: 1;
}

.location-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
    position: relative;
    z-index: 10;
}

.location-features li {
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
    z-index: 10;
}

.location-features li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--text-faded);
    font-weight: bold;
    z-index: 2;
}

/* POPULAR BADGE */
.popular-location {
    position: relative;
}

.popular-location .popular-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, var(--primary-yellow), var(--secondary-yellow));
    color: #000;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    z-index: 10;
    text-transform: uppercase;
}

/* ANIMATED CONNECTING LINE */
.map-regions::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 2px;
    height: 60%;
    background: linear-gradient(
        0deg,
        transparent 0%,
        rgba(255, 193, 7, 0.3) 20%,
        rgba(255, 193, 7, 0.8) 50%,
        rgba(255, 193, 7, 0.3) 80%,
        transparent 100%
    );
    transform: translate(-50%, -50%);
    z-index: 1;
    animation: lineFlow 3s ease-in-out infinite;
}

@keyframes lineFlow {
    0%, 100% {
        background: linear-gradient(
            0deg,
            transparent 0%,
            rgba(255, 193, 7, 0.3) 20%,
            rgba(255, 193, 7, 0.8) 50%,
            rgba(255, 193, 7, 0.3) 80%,
            transparent 100%
        );
        box-shadow: 0 0 10px rgba(255, 193, 7, 0.3);
    }
    50% {
        background: linear-gradient(
            0deg,
            transparent 0%,
            rgba(255, 193, 7, 0.5) 20%,
            rgba(255, 193, 7, 1) 50%,
            rgba(255, 193, 7, 0.5) 80%,
            transparent 100%
        );
        box-shadow: 0 0 20px rgba(255, 193, 7, 0.6);
    }
}

/* ============================================================= */
/* FAQ SECTION WITH OVERWATCH OVERLAY */
/* ============================================================= */

.faq-section {
    padding: 80px 50px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    scroll-margin-top: 90px;
}

.faq-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 80px;
}

.faq-item {
    background: linear-gradient(135deg, var(--card-bg-1), var(--card-bg-2));
    border-radius: 25px;
    border: 2px solid rgba(255, 193, 7, 0.2);
    backdrop-filter: blur(20px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    position: relative;
    cursor: pointer;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.faq-item::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, transparent, rgba(255, 193, 7, 0.3), transparent);
    background-size: 300% 300%;
    border-radius: 27px;
    z-index: -1;
    animation: borderGlow 8s ease-in-out infinite;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.faq-item:hover::after,
.faq-item.open::after {
    opacity: 1;
}

.faq-item:hover,
.faq-item.open {
    transform: translateX(20px) scale(1.02);
    border-color: var(--primary-yellow);
    box-shadow: 0 25px 50px rgba(255, 193, 7, 0.2);
}

.faq-question {
    padding: 35px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
    background: transparent;
    border: none;
    width: 100%;
    text-align: left;
}

.faq-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-yellow), var(--accent-orange));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    color: #000;
    font-size: 1.2rem;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(255, 193, 7, 0.3);
}

.faq-text {
    flex: 1;
}

.faq-text h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-white);
    margin: 0 0 8px 0;
    transition: color 0.3s ease;
    line-height: 1.3;
}

.faq-item:hover .faq-text h3,
.faq-item.open .faq-text h3 {
    color: var(--primary-yellow);
}

.faq-preview {
    color: var(--text-faded);
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.4;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
    position: relative;
    z-index: 2;
}

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

.faq-answer p {
    padding: 0 35px 35px;
    color: var(--text-light);
    line-height: 1.7;
    font-size: 1.1rem;
    border-top: 2px solid rgba(255, 193, 7, 0.2);
    margin: 0 35px;
    padding-top: 25px;
}

/* ============================================================= */
/* FOOTER WITH OVERWATCH OVERLAY */
/* ============================================================= */

footer {
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.98), rgba(26, 26, 26, 0.95));
    padding: 80px 50px 50px;
    text-align: center;
    border-top: 3px solid rgba(255, 193, 7, 0.3);
    position: relative;
    box-shadow: 0 -20px 50px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://c4.wallpaperflare.com/wallpaper/974/292/950/mercy-overwatch-4k-for-downloading-wallpaper-preview.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.06;
    z-index: -1;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.footer-logo {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 40px;
    background: linear-gradient(135deg, var(--primary-yellow), var(--accent-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 20px rgba(255, 193, 7, 0.3));
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 1.2rem;
    padding: 8px 16px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-links a:hover {
    color: var(--primary-yellow);
    transform: translateY(-5px);
    border-color: rgba(255, 193, 7, 0.3);
    background: rgba(255, 193, 7, 0.1);
    box-shadow: 0 8px 20px rgba(255, 193, 7, 0.2);
}

.copyright {
    opacity: 0.6;
    font-size: 1.1rem;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 2px solid rgba(255, 193, 7, 0.2);
    color: rgba(255, 255, 255, 0.8);
}

/* ============================================================= */
/* PERFORMANCE OPTIMIZATIONS - DON'T CHANGE */
/* ============================================================= */

.geometric-shape,
.achievement-card::before,
.hero::before,
.map-location::before,
.faq-item::after {
    will-change: transform;
}

/* ============================================================= */
/* RESPONSIVE DESIGN - MOBILE FRIENDLY */
/* ============================================================= */

@media (max-width: 1200px) {
    .map-regions {
        gap: 60px;
    }
    
    .map-layout {
        padding: 50px 40px;
    }
}

@media (max-width: 1024px) {
    .hero-games {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .media-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .map-regions {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .map-location:hover {
        transform: translateY(-10px);
    }
    
    .region-title {
        font-size: 2.2rem;
    }
    
    .stats-achievements {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 30px;
    }
    
    .faq-item:hover,
    .faq-item.open {
        transform: translateY(-10px) scale(1.02);
    }
}

@media (max-width: 768px) {
    nav {
        padding: 15px 25px;
    }
    
    .nav-links {
        gap: 25px;
    }
    
    .hero h1 {
        font-size: 3.5rem;
    }
    
    .hero p {
        font-size: 1.3rem;
    }
    
    .cta-container {
        flex-direction: column;
        align-items: center;
    }
    
    .games-showcase {
        padding: 80px 25px;
    }
    
    .hero-games {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .hero-game {
        padding: 40px 30px;
    }
    
    .hero-game h3 {
        font-size: 2rem;
    }
    
    .hero-game p {
        max-width: 280px;
    }
    
    .media-section {
        padding: 80px 25px;
    }
    
    .media-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .video-wrapper {
        height: 250px;
    }
    
    .featured-video .media-info {
        padding: 30px;
    }
    
    .featured-video .media-info h3 {
        font-size: 1.8rem;
    }
    
    .featured-video .media-info p {
        font-size: 1.2rem;
    }
    
    .media-sidebar .media-item {
        padding: 16px;
    }
    
    .media-thumbnail {
        width: 80px;
        height: 60px;
    }
    
    .play-overlay {
        width: 30px;
        height: 30px;
        font-size: 1.1rem;
    }
    
    .stats-achievements {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .pricing-section {
        padding: 80px 25px;
    }
    
    .map-layout {
        padding: 40px 25px;
        min-height: auto;
    }
    
    .region-header {
        padding: 25px 20px;
        margin-bottom: 30px;
    }
    
    .region-title {
        font-size: 1.8rem;
        letter-spacing: 2px;
    }
    
    .region-subtitle {
        font-size: 1rem;
    }
    
    .region-locations {
        gap: 20px;
    }
    
    .map-location {
        padding: 30px 25px;
    }
    
    .location-name {
        font-size: 1.4rem;
    }
    
    .location-price {
        font-size: 2.4rem;
    }
    
    .location-features {
        font-size: 0.95rem;
    }
    
    .faq-section {
        padding: 80px 25px;
    }
    
    .faq-question {
        padding: 30px 25px;
        gap: 15px;
    }
    
    .faq-number {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
    
    .faq-text h3 {
        font-size: 1.3rem;
        padding-right: 15px;
    }
    
    .faq-preview {
        font-size: 0.9rem;
    }
    
    .faq-answer p {
        padding: 0 25px 30px;
        font-size: 1.05rem;
        margin: 0 25px;
        padding-top: 20px;
    }
    
    .faq-item.open .faq-answer {
        max-height: 250px;
    }
    
    .footer-links {
        gap: 40px;
    }
}

@media (max-width: 480px) {
    .nav-links {
        gap: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .nav-links a {
        font-size: 13px;
        padding: 6px 12px;
    }
    
    .hero h1 {
        font-size: 2.8rem;
    }
    
    .hero-game {
        padding: 30px 25px;
    }
    
    .hero-game h3 {
        font-size: 1.8rem;
    }
    
    .hero-game p {
        max-width: 250px;
        font-size: 1.1rem;
    }
    
    .game-tags {
        gap: 10px;
    }
    
    .game-tag {
        padding: 10px 16px;
        font-size: 0.9rem;
    }
    
    .media-section {
        padding: 60px 20px;
    }
    
    .video-wrapper {
        height: 200px;
    }
    
    .featured-video .media-info {
        padding: 25px;
    }
    
    .featured-video .media-info h3 {
        font-size: 1.6rem;
    }
    
    .featured-video .media-info p {
        font-size: 1.1rem;
    }
    
    .media-sidebar .media-item {
        padding: 14px;
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
    
    .media-thumbnail {
        width: 70px;
        height: 50px;
    }
    
    .play-overlay {
        width: 25px;
        height: 25px;
        font-size: 1rem;
    }
    
    .achievement-card {
        padding: 30px 25px;
    }
    
    .achievement-header {
        gap: 15px;
    }
    
    .achievement-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .achievement-number {
        font-size: 2.2rem;
    }
    
    .achievement-label {
        font-size: 1rem;
    }
    
    .achievement-description {
        font-size: 1rem;
    }
    
    .map-layout {
        padding: 30px 20px;
    }
    
    .region-header {
        padding: 20px 15px;
    }
    
    .region-title {
        font-size: 1.6rem;
    }
    
    .map-location {
        padding: 25px 20px;
    }
    
    .location-name {
        font-size: 1.2rem;
    }
    
    .location-price {
        font-size: 2rem;
    }
    
    .faq-question {
        padding: 25px 20px;
        gap: 12px;
    }
    
    .faq-number {
        width: 40px;
        height: 40px;
        font-size: 1rem;
        border-radius: 12px;
    }
    
    .faq-text h3 {
        font-size: 1.2rem;
    }
    
    .faq-answer p {
        padding: 0 20px 25px;
        font-size: 1rem;
        margin: 0 20px;
        padding-top: 18px;
    }
    
    .faq-item.open .faq-answer {
        max-height: 300px;
    }
    
    .footer-links {
        gap: 20px;
        flex-direction: column;
        align-items: center;
    }
}

/* ============================================================= */
/* END OF CSS FILE */
/* ============================================================= *//* ============================================================= */
/* WEBSITE COLORS - CHANGE THESE TO UPDATE YOUR SITE'S COLORS */
/* ============================================================= */

:root {
    /* MAIN BRAND COLORS */
    --primary-yellow: #ffc107;        /* Main yellow color */
    --secondary-yellow: #ffeb3b;      /* Light yellow */
    --accent-orange: #ff9800;         /* Orange accent */
    
    /* LITE AREA COLORS (Left side pricing) */
    --lite-brown: #a67f16;            /* Brown color for lite area */
    --lite-border: #828281;           /* Grey border for lite area */
    
    /* BACKGROUND COLORS */
    --bg-dark-1: #0a0a0a;             /* Darkest background */
    --bg-dark-2: #1a1a1a;             /* Medium dark background */
    --bg-dark-3: #0f0f0f;             /* Dark background */
    --card-bg-1: rgba(26, 26, 26, 0.9); /* Card background 1 */
    --card-bg-2: rgba(15, 15, 15, 0.8); /* Card background 2 */
    
    /* TEXT COLORS */
    --text-white: #ffffff;            /* Pure white text */
    --text-light: rgba(255, 255, 255, 0.85); /* Light grey text */
    --text-medium: rgba(255, 255, 255, 0.7);  /* Medium grey text */
    --text-faded: rgba(255, 255, 255, 0.6);   /* Faded text */
}

/* ============================================================= */
/* BASIC WEBSITE SETUP - DON'T CHANGE UNLESS YOU KNOW CSS */
/* ============================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: linear-gradient(135deg, var(--bg-dark-1) 0%, var(--bg-dark-2) 50%, var(--bg-dark-3) 100%);
    color: var(--text-white);
    font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
    overflow-x: hidden;
    min-height: 100vh;
    position: relative;
}

/* ANIMATED BACKGROUND PATTERN */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(255, 193, 7, 0.05) 2px, transparent 2px),
        radial-gradient(circle at 75% 75%, rgba(255, 193, 7, 0.03) 1px, transparent 1px);
    background-size: 60px 60px, 30px 30px;
    z-index: -2;
    animation: patternFloat 25s linear infinite;
    will-change: transform;
}

@keyframes patternFloat {
    0% { transform: translate(0, 0) rotate(0deg); }
    100% { transform: translate(30px, 30px) rotate(360deg); }
}

/* FLOATING GEOMETRIC SHAPES */
.bg-effects {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

.geometric-shape {
    position: absolute;
    opacity: 0.08;
    animation: geometricFloat 20s ease-in-out infinite;
    will-change: transform;
}

.shape-triangle {
    width: 0;
    height: 0;
    border-left: 40px solid transparent;
    border-right: 40px solid transparent;
    border-bottom: 70px solid var(--primary-yellow);
}

.shape-diamond {
    width: 60px;
    height: 60px;
    background: var(--primary-yellow);
    transform: rotate(45deg);
}

.shape-circle {
    width: 80px;
    height: 80px;
    border: 3px solid var(--primary-yellow);
    border-radius: 50%;
}

@keyframes geometricFloat {
    0%, 100% { transform: translateY(0px) translateX(0px) rotate(0deg); }
    25% { transform: translateY(-80px) translateX(40px) rotate(90deg); }
    50% { transform: translateY(-120px) translateX(-30px) rotate(180deg); }
    75% { transform: translateY(-60px) translateX(-50px) rotate(270deg); }
}

/* ============================================================= */
/* GAME IMAGES INTEGRATION - SUBTLE OVERLAYS */
/* ============================================================= */

.game-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.1;
    z-index: -1;
    filter: blur(1px);
    transition: opacity 0.3s ease;
}

.valorant-overlay {
    background-image: url('https://images.alphacoders.com/129/1290583.jpg');
}

.marvel-overlay {
    background-image: url('https://images.alphacoders.com/132/1329476.jpg');
}

.overwatch-overlay {
    background-image: url('https://images.alphacoders.com/875/875570.jpg');
}

/* ============================================================= */
/* NAVIGATION BAR STYLING */
/* ============================================================= */

nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 15px 50px;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px) saturate(180%);
    z-index: 1000;
    border-bottom: 2px solid rgba(255, 193, 7, 0.2);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1600px;
    margin: 0 auto;
}

/* LOGO STYLING */
.logo {
    font-size: 28px;
    font-weight: 900;
    letter-spacing: 3px;
    background: linear-gradient(135deg, var(--primary-yellow), var(--secondary-yellow), var(--accent-orange));
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: logoShine 4s ease-in-out infinite;
    text-shadow: 0 0 30px rgba(255, 193, 7, 0.3);
    filter: drop-shadow(0 0 10px rgba(255, 193, 7, 0.2));
}

@keyframes logoShine {
    0%, 100% { 
        background-position: 0% 50%;
        filter: brightness(1) drop-shadow(0 0 10px rgba(255, 193, 7, 0.2));
    }
    50% { 
        background-position: 100% 50%;
        filter: brightness(1.3) drop-shadow(0 0 20px rgba(255, 193, 7, 0.4));
    }
}

/* NAVIGATION LINKS */
.nav-links {
    display: flex;
    gap: 35px;
    list-style: none;
}

.nav-links a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    position: relative;
    padding: 8px 16px;
    border-radius: 25px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-links a:hover {
    color: var(--primary-yellow);
    background: rgba(255, 193, 7, 0.15);
    border-color: rgba(255, 193, 7, 0.3);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 193, 7, 0.2);
}

.nav-links a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.1), rgba(255, 235, 59, 0.1));
    border-radius: 25px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.nav-links a:hover::before {
    opacity: 1;
}

/* ============================================================= */
/* HERO SECTION (MAIN BANNER AREA) */
/* ============================================================= */

.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: radial-gradient(ellipse at center, rgba(255, 193, 7, 0.05) 0%, transparent 70%);
    padding-top: 100px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(255, 193, 7, 0.1), transparent);
    transform: translate(-50%, -50%) rotate(0deg);
    animation: heroRotate 30s linear infinite;
    z-index: 0;
    will-change: transform;
}

@keyframes heroRotate {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

.hero-content {
    text-align: center;
    z-index: 2;
    max-width: 1000px;
    padding: 0 20px;
    position: relative;
}

/* MAIN TITLE STYLING */
.hero h1 {
    font-size: clamp(4rem, 12vw, 8rem);
    font-weight: 900;
    margin-bottom: 25px;
    background: linear-gradient(135deg, var(--primary-yellow) 0%, var(--secondary-yellow) 50%, var(--accent-orange) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 40px rgba(255, 193, 7, 0.3);
    letter-spacing: 2px;
    line-height: 1.1;
    filter: drop-shadow(0 0 20px rgba(255, 193, 7, 0.2));
}

/* SUBTITLE STYLING */
.hero-subtitle {
    font-size: 1.6rem;
    margin-bottom: 20px;
    margin-top: 30px;
    color: var(--primary-yellow);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 4px;
    opacity: 0.95;
    background: rgba(255, 193, 7, 0.1);
    padding: 6px 20px;
    border-radius: 50px;
    border: 2px solid rgba(255, 193, 7, 0.3);
    display: inline-block;
}

/* HERO DESCRIPTION */
.hero p {
    font-size: 1.5rem;
    margin-bottom: 60px;
    opacity: 0.85;
    line-height: 1.8;
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
    color: rgba(255, 255, 255, 0.9);
}

/* BUTTON CONTAINER */
.cta-container {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 80px;
}

/* ============================================================= */
/* BUTTON STYLES */
/* ============================================================= */

.btn {
    padding: 20px 50px;
    border: none;
    border-radius: 50px;
    font-size: 1.3rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.4s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 2px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* YELLOW BUTTON STYLE */
.btn-valorant {
    background: linear-gradient(135deg, var(--primary-yellow), var(--secondary-yellow));
    color: #000;
    border: 2px solid rgba(255, 193, 7, 0.5);
}

/* ORANGE BUTTON STYLE */
.btn-marvel {
    background: linear-gradient(135deg, var(--accent-orange), var(--primary-yellow));
    color: #000;
    border: 2px solid rgba(255, 152, 0, 0.5);
}

/* TRANSPARENT BUTTON STYLE */
.btn-secondary {
    background: rgba(255, 193, 7, 0.1);
    color: var(--primary-yellow);
    border: 2px solid rgba(255, 193, 7, 0.5);
    backdrop-filter: blur(10px);
}

/* SHOP BUTTON STYLE */
.btn-shop {
    background: linear-gradient(135deg, var(--primary-yellow), var(--secondary-yellow));
    color: #000;
    border: 2px solid rgba(255, 193, 7, 0.5);
    padding: 20px 50px;
    font-size: 1.3rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

/* BUTTON HOVER EFFECTS */
.btn:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 20px 50px rgba(255, 193, 7, 0.3);
}

.btn-valorant:hover,
.btn-marvel:hover,
.btn-shop:hover {
    filter: brightness(1.1);
    box-shadow: 0 20px 50px rgba(255, 193, 7, 0.4);
}

.btn-secondary:hover {
    background: rgba(255, 193, 7, 0.2);
    box-shadow: 0 20px 50px rgba(255, 193, 7, 0.2);
}

/* BUTTON SHINE EFFECT */
.btn::before,
.btn-shop::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s ease;
}

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

/* ============================================================= */
/* FEATURES SECTION (STATISTICS CARDS) WITH GAME IMAGES */
/* ============================================================= */

.stats-section {
    padding: 40px 50px;
    margin: 20px auto;
    max-width: 1400px;
    scroll-margin-top: 90px;
    position: relative;
}

.stats-achievements {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    padding: 20px 0;
}

.achievement-card {
    background: linear-gradient(135deg, var(--card-bg-1), var(--card-bg-2));
    border-radius: 25px;
    padding: 40px;
    border: 2px solid rgba(255, 193, 7, 0.2);
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    backdrop-filter: blur(20px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

/* Add game overlays to feature cards - RESTORED ORIGINAL OPACITY */
.achievement-card:nth-child(1)::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://i.pinimg.com/736x/df/a3/59/dfa35993dac062c2340cb99c99be7998.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.15;
    z-index: -1;
    transition: opacity 0.3s ease;
}

.achievement-card:nth-child(2)::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://wallpapers-clan.com/wp-content/uploads/2024/03/overwatch-hunter-empty-orange-desktop-wallpaper-preview.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.15;
    z-index: -1;
    transition: opacity 0.3s ease;
}

.achievement-card:nth-child(3)::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://4kwallpapers.com/images/wallpapers/star-lord-marvel-2560x1440-17981.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.15;
    z-index: -1;
    transition: opacity 0.3s ease;
}

/* CARD HOVER EFFECT */
.achievement-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, transparent, rgba(255, 193, 7, 0.3), transparent);
    background-size: 300% 300%;
    border-radius: 27px;
    z-index: -2;
    animation: borderGlow 8s ease-in-out infinite;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.achievement-card:hover::before {
    opacity: 1;
}

.achievement-card:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: var(--primary-yellow);
    box-shadow: 0 25px 60px rgba(255, 193, 7, 0.2);
}

.achievement-card:hover::after {
    opacity: 0.25;
}

.achievement-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

/* FEATURE ICON */
.achievement-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-yellow), var(--accent-orange));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #000;
    box-shadow: 0 10px 25px rgba(255, 193, 7, 0.3);
    flex-shrink: 0;
}

.achievement-text {
    flex: 1;
}

/* FEATURE NUMBER */
.achievement-number {
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--primary-yellow);
    line-height: 1;
    letter-spacing: -2px;
    filter: drop-shadow(0 0 10px rgba(255, 193, 7, 0.3));
}

/* FEATURE TITLE */
.achievement-label {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 5px;
}

/* FEATURE DESCRIPTION */
.achievement-description {
    font-size: 1.1rem;
    color: var(--text-medium);
    margin-top: 20px;
    line-height: 1.5;
    position: relative;
    z-index: 1;
}

/* ============================================================= */
/* GAMES SECTION WITH GAME OVERLAYS */
/* ============================================================= */

.games-showcase {
    padding: 60px 50px;
    max-width: 1600px;
    margin: 0 auto;
    position: relative;
    scroll-margin-top: 90px;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

/* SECTION TITLES */
.section-title {
    font-size: 4.5rem;
    font-weight: 900;
    margin-bottom: 25px;
    background: linear-gradient(135deg, var(--primary-yellow), var(--secondary-yellow));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -2px;
    filter: drop-shadow(0 0 20px rgba(255, 193, 7, 0.2));
}

/* SECTION SUBTITLES */
.section-subtitle {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.75);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

.hero-games {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-bottom: 60px;
}

.hero-game {
    background: linear-gradient(135deg, var(--card-bg-1), var(--card-bg-2));
    border-radius: 25px;
    padding: 50px;
    text-align: center;
    border: 2px solid rgba(255, 193, 7, 0.2);
    transition: all 0.4s ease;
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

/* Add game-specific overlays - RESTORED ORIGINAL OPACITY */
.valorant-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://www.hdwallpapers.in/download/raze_with_yellow_cap_hd_valorant-HD.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.18;
    z-index: -1;
    transition: opacity 0.3s ease;
}

.marvel-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://images.hdqwalls.com/wallpapers/spiderman-in-marvel-rivals-nc.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.18;
    z-index: -1;
    transition: opacity 0.3s ease;
}

/* GAME CARD HOVER EFFECT */
.hero-game::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, transparent, rgba(255, 193, 7, 0.3), transparent);
    background-size: 300% 300%;
    border-radius: 27px;
    z-index: -2;
    animation: borderGlow 8s ease-in-out infinite;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

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

.hero-game:hover {
    transform: translateY(-15px);
    border-color: var(--primary-yellow);
    box-shadow: 0 25px 60px rgba(255, 193, 7, 0.15);
}

.hero-game:hover::after {
    opacity: 0.28;
}

/* GAME CARD ACCENTS */
.valorant-hero { 
    border-left: 6px solid var(--primary-yellow); 
}

.marvel-hero { 
    border-left: 6px solid var(--accent-orange); 
}

/* GAME TITLES */
.hero-game h3 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 25px;
    letter-spacing: -1px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.valorant-hero h3 {
    color: var(--primary-yellow);
    text-shadow: 0 0 20px rgba(255, 193, 7, 0.3);
}

.marvel-hero h3 {
    color: var(--accent-orange);
    text-shadow: 0 0 20px rgba(255, 152, 0, 0.3);
}

/* GAME DESCRIPTIONS */
.hero-game p {
    font-size: 1.2rem;
    line-height: 1.7;
    opacity: 0.9;
    text-align: center;
    margin: 0 auto;
    max-width: 320px;
    color: var(--text-light);
    position: relative;
    z-index: 2;
}

/* SUPPORTED GAMES LIST WITH OVERWATCH OVERLAY */
.supported-games-list {
    text-align: center;
    margin-bottom: 80px;
    padding: 40px;
    background: rgba(255, 193, 7, 0.05);
    border-radius: 20px;
    border: 1px solid rgba(255, 193, 7, 0.2);
    position: relative;
    overflow: hidden;
}

.supported-games-list::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://images7.alphacoders.com/803/thumb-1920-803483.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.12;
    z-index: -1;
}

.supported-games-list h4 {
    color: var(--primary-yellow);
    margin-bottom: 25px;
    font-size: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    z-index: 1;
}

.game-tags {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    position: relative;
    z-index: 1;
}

.game-tag {
    background: rgba(26, 26, 26, 0.8);
    padding: 12px 22px;
    border-radius: 25px;
    font-size: 1rem;
    border: 2px solid rgba(255, 193, 7, 0.3);
    transition: all 0.3s ease;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
}

.game-tag:hover {
    background: rgba(255, 193, 7, 0.15);
    border-color: var(--primary-yellow);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 193, 7, 0.2);
    color: var(--primary-yellow);
}

/* ============================================================= */
/* MEDIA SECTION STYLING */
/* ============================================================= */

.media-section {
    padding: 60px 50px;
    max-width: 1600px;
    margin: 0 auto;
    position: relative;
    scroll-margin-top: 90px;
}

.media-container {
    max-width: 1400px;
    margin: 0 auto;
}

.media-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    align-items: start;
}

/* MAIN FEATURED VIDEO */
.featured-video {
    background: linear-gradient(135deg, var(--card-bg-1), var(--card-bg-2));
    border-radius: 25px;
    padding: 0;
    border: 2px solid rgba(255, 193, 7, 0.2);
    backdrop-filter: blur(20px);
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
    height: fit-content;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.featured-video::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, transparent, rgba(255, 193, 7, 0.3), transparent);
    background-size: 300% 300%;
    border-radius: 27px;
    z-index: -1;
    animation: borderGlow 8s ease-in-out infinite;
    opacity: 0;
    transition

/* ============================================================= */
/* DISCORD NAV BUTTON - ADD THIS TO THE END OF YOUR styles.css FILE */
/* ============================================================= */

.nav-discord-cta {
    background: linear-gradient(135deg, var(--primary-yellow), var(--accent-orange)) !important;
    color: #000 !important;
    border: 2px solid var(--primary-yellow) !important;
    font-weight: 800 !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    padding: 10px 20px !important;
    box-shadow: 0 5px 15px rgba(255, 193, 7, 0.3) !important;
    position: relative !important;
    overflow: hidden !important;
}

.nav-discord-cta:hover {
    color: #000 !important;
    background: linear-gradient(135deg, var(--secondary-yellow), var(--primary-yellow)) !important;
    border-color: var(--secondary-yellow) !important;
    transform: translateY(-3px) scale(1.05) !important;
    box-shadow: 0 10px 25px rgba(255, 193, 7, 0.4) !important;
    filter: brightness(1.1);
}

/* Discord button shine effect */
.nav-discord-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s ease;
    z-index: 1;
}

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

/* Ensure Discord icon and text stay above shine effect */
.nav-discord-cta i,
.nav-discord-cta span {
    position: relative;
    z-index: 2;
}

/* Discord icon spacing */
.nav-discord-cta i {
    margin-right: 8px;
}

/* Responsive design for Discord button */
@media (max-width: 1024px) {
    .nav-discord-cta {
        padding: 8px 16px !important;
        font-size: 13px !important;
        letter-spacing: 0.5px !important;
    }
}

@media (max-width: 768px) {
    .nav-discord-cta {
        padding: 6px 14px !important;
        font-size: 12px !important;
        margin-top: 5px !important;
    }
    
    .nav-discord-cta i {
        margin-right: 6px;
    }
}

@media (max-width: 480px) {
    .nav-discord-cta {
        padding: 6px 12px !important;
        font-size: 11px !important;
    }
}