/* ===== ACTIVITIES PAGE ONLY STYLES ===== */
/* All styles are scoped to .activities-page */

/* Alphacorsa Font Import */
@import url("https://db.onlinewebfonts.com/c/7736576106700fa2774f04bf3e04ebbb?family=Alphacorsa+Personal+Use");

:root {
    --bg-dark: #0A0A0F;
    --bg-darker: #050508;
    --neon-green: #B0D136;
    --neon-green-dim: rgba(176, 209, 54, 0.2);
    --neon-green-glow: rgba(176, 209, 54, 0.5);
    --neon-accent: #FF2ED1;
    --text-dim: rgba(255, 255, 255, 0.8);
    --font-alphacorsa: 'Alphacorsa Personal Use', cursive;
    --font-display: 'Bebas Neue', 'Oswald', sans-serif;
    --font-body: 'Barlow Condensed', sans-serif;

    /* Legacy aliases so all var(--neon-blue) etc still resolve */
    --neon-blue: var(--neon-green);
    --neon-pink: var(--neon-accent);
    --neon-purple: var(--neon-green);
    --accent-glow: var(--neon-green-glow);

    background: var(--bg-dark);
    color: var(--text-light);
    font-family: var(--font-body);
    position: relative;
    overflow-x: hidden;
}

/* Circuit board background */
.activities-page .circuit-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(174, 208, 52, 0.03) 0%, transparent 20%),
        radial-gradient(circle at 80% 70%, rgba(174, 208, 52, 0.03) 0%, transparent 20%),
        repeating-linear-gradient(45deg,
            transparent 0px,
            transparent 30px,
            rgba(174, 208, 52, 0.02) 30px,
            rgba(174, 208, 52, 0.02) 32px);
    pointer-events: none;
    z-index: 0;
}

.activities-page .section-container {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 20px;
    z-index: 2;
}

.activities-page .section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    color: var(--neon-blue);
}

.activities-page .neon-title {
    color: var(--neon-blue);
    text-shadow: 0 0 10px var(--neon-green-glow);
    animation: titlePulse 3s infinite;
}

@keyframes titlePulse {

    0%,
    100% {
        text-shadow: 0 0 10px var(--neon-green-glow);
    }

    50% {
        text-shadow: 0 0 20px var(--neon-green-glow), 0 0 30px var(--neon-green-dim);
    }
}

/* ===== HERO SECTION ===== */
.activities-page .activities-hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #030303;
    background-image: url("data:image/svg+xml,%3Csvg width='42' height='44' viewBox='0 0 42 44' xmlns='http://www.w3.org/2000/svg'%3E%3Cg id='Page-1' fill='none' fill-rule='evenodd'%3E%3Cg id='brick-wall' fill='%23caff00' fill-opacity='0.18'%3E%3Cpath d='M0 0h42v44H0V0zm1 1h40v20H1V1zM0 23h20v20H0V23zm22 0h20v20H22V23z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    overflow: hidden;
    border-bottom: 1px solid var(--neon-green-dim);
}

.activities-page #particle-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

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

.activities-page .glitch-text {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 900;
    color: var(--neon-blue);
    text-transform: uppercase;
    position: relative;
    animation: glitch-skew 4s infinite;
    line-height: 1.2;
    margin: 0 0 20px;
}

.activities-page .glitch-text::before,
.activities-page .glitch-text::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
}

.activities-page .glitch-text::before {
    animation: glitch-1 0.8s infinite;
    color: var(--neon-pink);
    z-index: -1;
}

.activities-page .glitch-text::after {
    animation: glitch-2 0.8s infinite;
    color: var(--neon-purple);
    z-index: -2;
}

@media (min-width: 400px) {
    .activities-page .glitch-text {
        margin: 80px 0 20px;
    }
}

@keyframes glitch-1 {

    0%,
    100% {
        transform: translate(0);
    }

    20% {
        transform: translate(-3px, 2px);
    }

    40% {
        transform: translate(-3px, -2px);
    }

    60% {
        transform: translate(3px, 2px);
    }

    80% {
        transform: translate(3px, -2px);
    }
}

@keyframes glitch-2 {

    0%,
    100% {
        transform: translate(0);
    }

    20% {
        transform: translate(3px, -2px);
    }

    40% {
        transform: translate(3px, 2px);
    }

    60% {
        transform: translate(-3px, -2px);
    }

    80% {
        transform: translate(-3px, 2px);
    }
}

.activities-page .game-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin: 40px 0;
}

.activities-page .game-tag {
    padding: 10px 25px;
    background: var(--neon-green-dim);
    border: 1px solid rgba(174, 208, 52, 0.4);
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--neon-blue);
    text-shadow: 0 0 10px var(--neon-green-glow);
    backdrop-filter: blur(5px);
    transition: all 0.3s;
    animation: tagFloat 3s infinite;
    animation-delay: calc(var(--i) * 0.2s);
}

@keyframes tagFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

.activities-page .game-tag:hover {
    background: rgba(174, 208, 52, 0.25);
    border-color: var(--neon-green);
    box-shadow: 0 0 20px var(--neon-green-glow);
    transform: scale(1.05);
}

.activities-page .btn-neon {
    position: relative;
    display: inline-block;
    padding: 18px 45px;
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #fff;
    background: transparent;
    border: 2px solid;
    border-radius: 50px;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s;
    text-decoration: none;
}

.activities-page .btn-neon.blue {
    border-color: var(--neon-green);
    color: var(--neon-green);
    box-shadow: 0 0 10px var(--neon-green-glow);
}

.activities-page .btn-neon.pink {
    border-color: var(--neon-accent);
    color: var(--neon-accent);
    box-shadow: 0 0 10px var(--neon-accent-glow);
}

.activities-page .btn-neon.purple {
    border-color: var(--neon-green);
    color: var(--neon-green);
    box-shadow: 0 0 10px var(--neon-green-glow);
}

.activities-page .btn-neon:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 30px currentColor;
    text-shadow: 0 0 10px currentColor;
}



/* =========================================
   PREMIUM HIGHLIGHTS SECTION
   Modern Dark Patterned Background
   ========================================= */

@import url("https://db.onlinewebfonts.com/c/7736576106700fa2774f04bf3e04ebbb?family=Alphacorsa+Personal+Use");

:root {
    --premium-gold: #33ff00;
    --premium-gold-dim: rgba(145, 255, 0, 0.15);
    --premium-gold-glow: rgba(136, 255, 0, 0.4);
    --premium-purple: #9b4dff;
    --premium-cyan: #00ffff;
    --bg-dark-1: #0a0a0f;
    --bg-dark-2: #0f0f1a;
    --bg-dark-3: #151525;
    --bg-dark-4: #1a1a2e;
    --font-alphacorsa: 'Alphacorsa Personal Use', cursive;
    --font-body: 'Barlow Condensed', sans-serif;
}

/* Section Background - Dark & Patterned */
.premium-highlights-section {
    position: relative;
    padding: 60px 0;
    /* background: linear-gradient(135deg, var(--bg-dark-1) 0%, var(--bg-dark-3) 50%, var(--bg-dark-1) 100%); */
    overflow: hidden;
}

/* Complex Background Container */
.premium-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}

/* ===== 1. GRADIENT ORBS ===== */
.bg-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    mix-blend-mode: screen;
}

.bg-orb--1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.15) 0%, transparent 70%);
    top: -200px;
    right: -200px;
    animation: orbFloat 20s ease-in-out infinite alternate;
}

.bg-orb--2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(155, 77, 255, 0.12) 0%, transparent 70%);
    bottom: -150px;
    left: -150px;
    animation: orbFloat 25s ease-in-out infinite alternate-reverse;
}

.bg-orb--3 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 255, 255, 0.1) 0%, transparent 70%);
    top: 30%;
    left: 20%;
    animation: orbPulse 15s ease-in-out infinite;
}

.bg-orb--4 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.08) 0%, transparent 70%);
    bottom: 20%;
    right: 15%;
    animation: orbPulse 18s ease-in-out infinite reverse;
}

/* ===== 2. CYBER GRID PATTERN ===== */
.bg-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 215, 0, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 215, 0, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    animation: gridMove 30s linear infinite;
}

/* ===== 3. CIRCUIT BOARD PATTERN ===== */
.bg-circuit {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 30% 40%, rgba(255, 215, 0, 0.02) 0%, transparent 30%),
        radial-gradient(circle at 70% 60%, rgba(155, 77, 255, 0.02) 0%, transparent 30%),
        repeating-linear-gradient(45deg,
            transparent 0px,
            transparent 20px,
            rgba(255, 215, 0, 0.01) 20px,
            rgba(255, 215, 0, 0.01) 22px);
    background-size: 60px 60px;
    animation: circuitGlow 8s ease-in-out infinite;
}

/* ===== 4. GEOMETRIC PATTERN ===== */
.bg-geometric {
    position: absolute;
    inset: 0;
    background-image:
        repeating-linear-gradient(30deg,
            rgba(255, 215, 0, 0.02) 0px,
            rgba(255, 215, 0, 0.02) 2px,
            transparent 2px,
            transparent 20px),
        repeating-linear-gradient(-30deg,
            rgba(155, 77, 255, 0.02) 0px,
            rgba(155, 77, 255, 0.02) 2px,
            transparent 2px,
            transparent 20px);
    background-size: 60px 60px;
    opacity: 0.5;
}

/* ===== 5. FLOATING PARTICLES ===== */
.bg-particles {
    position: absolute;
    inset: 0;
}

.particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: rgba(179, 255, 0, 0.3);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(187, 255, 0, 0.5);
    animation: particleFloat calc(10s * var(--i)) linear infinite;
}

.particle:nth-child(1) {
    top: 20%;
    left: 10%;
    --i: 1;
}

.particle:nth-child(2) {
    top: 50%;
    left: 80%;
    --i: 2;
}

.particle:nth-child(3) {
    top: 80%;
    left: 30%;
    --i: 3;
}

.particle:nth-child(4) {
    top: 30%;
    left: 60%;
    --i: 4;
}

.particle:nth-child(5) {
    top: 70%;
    left: 40%;
    --i: 5;
}

.particle:nth-child(6) {
    top: 40%;
    left: 20%;
    --i: 6;
}

.particle:nth-child(7) {
    top: 60%;
    left: 70%;
    --i: 7;
}

.particle:nth-child(8) {
    top: 15%;
    left: 90%;
    --i: 8;
}

.particle:nth-child(9) {
    top: 85%;
    left: 15%;
    --i: 9;
}

.particle:nth-child(10) {
    top: 45%;
    left: 45%;
    --i: 10;
}

/* ===== 6. SCAN LINES ===== */
.bg-scanlines {
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(0deg,
            rgba(0, 0, 0, 0.1) 0px,
            rgba(0, 0, 0, 0.1) 1px,
            transparent 1px,
            transparent 4px);
    pointer-events: none;
    opacity: 0.15;
    animation: scanMove 8s linear infinite;
}

/* ===== 7. VIGNETTE EFFECT ===== */
.bg-vignette {
    position: absolute;
    inset: 0;
    /* background: radial-gradient(circle at 50% 50%,
            transparent 30%,
            rgba(0, 0, 0, 0.3) 80%,
            rgba(0, 0, 0, 0.6) 100%); */
    pointer-events: none;
}

/* ===== ANIMATIONS ===== */
@keyframes orbFloat {
    0% {
        transform: translate(0, 0) scale(1);
        opacity: 0.3;
    }

    100% {
        transform: translate(40px, 30px) scale(1.2);
        opacity: 0.5;
    }
}

@keyframes orbPulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.2;
    }

    50% {
        transform: scale(1.3);
        opacity: 0.4;
    }
}

@keyframes gridMove {
    0% {
        background-position: 0 0;
    }

    100% {
        background-position: 40px 40px;
    }
}

@keyframes circuitGlow {

    0%,
    100% {
        opacity: 0.3;
    }

    50% {
        opacity: 0.6;
    }
}

@keyframes particleFloat {
    0% {
        transform: translateY(0) translateX(0);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        transform: translateY(-100px) translateX(50px);
        opacity: 0;
    }
}

@keyframes scanMove {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(10px);
    }
}

/* Rest of the card styles remain the same as before */
/* ===== CONTAINER & HEADER ===== */
.premium-container {
    position: relative;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 15px;
    z-index: 2;
}

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

.premium-eyebrow {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #c8ff00 0%, #9b4dff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.premium-title {
    font-family: var(--font-alphacorsa);
    font-size: 1.8rem;
    font-weight: 400;
    color: #ffffff;
    margin-bottom: 1rem;
    line-height: 1.2;
    text-transform: uppercase;
    padding: 0 10px;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.2);
}

.premium-title .gradient-text {
    background: linear-gradient(135deg, #bbff00 0%, #9b4dff 50%, #00ffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: var(--font-alphacorsa);
    display: inline-block;
}

.premium-subtitle {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.6;
    font-family: var(--font-body);
    padding: 0 15px;
    margin-bottom: 1.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.premium-divider {
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, #c8ff00, #9b4dff);
    margin: 0 auto;
    border-radius: 2px;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

/* ===== HIGHLIGHTS GRID ===== */
.highlights-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 30px;
}

/* ===== CARD STYLES ===== */
.highlight-card {
    position: relative;
    background: rgba(20, 20, 30, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 215, 0, 0.15);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
}

.highlight-card:hover {
    transform: translateY(-10px);
    border-color: rgba(200, 255, 0, 0.4);
    box-shadow: 0 25px 45px rgba(0, 0, 0, 0.6),
        0 0 30px rgba(200, 255, 0, 0.2);
}

/* Card Media */
.highlight-card .card-media {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.highlight-card .card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.highlight-card:hover .card-media img {
    transform: scale(1.1);
}

.media-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
            rgba(0, 0, 0, 0.2) 0%,
            rgba(0, 0, 0, 0.8) 100%);
    z-index: 1;
}

/* Card Icon */
.card-icon {
    position: absolute;
    bottom: -25px;
    right: 20px;
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, #a6ff00, #9b4dff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    z-index: 3;
    box-shadow: 0 0 30px rgba(157, 255, 0, 0.6);
    border: 2px solid rgba(255, 255, 255, 0.3);
    animation: iconPulse 2s ease-in-out infinite;
}

@keyframes iconPulse {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 0 30px rgba(208, 255, 0, 0.6);
    }

    50% {
        transform: scale(1.1);
        box-shadow: 0 0 50px rgba(187, 255, 0, 0.9);
    }
}

/* Card Content */
.highlight-card .card-content {
    padding: 40px 20px 20px;
    position: relative;
    z-index: 2;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.highlight-card h3 {
    font-family: var(--font-alphacorsa);
    font-size: 1.5rem;
    color: #d0ff00;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
    line-height: 1.2;
}

.card-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.6;
    font-family: var(--font-body);
    margin-bottom: 20px;
    flex-grow: 1;
}

.card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #b3ff00;
    text-decoration: none;
    font-family: var(--font-body);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    transition: all 0.3s;
    align-self: flex-start;
    padding: 5px 0;
}

.card-link span {
    transition: transform 0.3s;
}

.card-link:hover {
    color: #ffffff;
    gap: 12px;
}

.card-link:hover span {
    transform: translateX(5px);
}

/* Card Glow Effect */
.card-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 0%, rgba(255, 215, 0, 0.15), transparent 70%);
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
}

.highlight-card:hover .card-glow {
    opacity: 1;
}

/* ===== RESPONSIVE BREAKPOINTS ===== */
@media (min-width: 600px) {
    .premium-container {
        max-width: 540px;
    }

    .premium-title {
        font-size: 2rem;
    }
}

@media (min-width: 768px) {
    .premium-container {
        max-width: 720px;
    }

    .premium-title {
        font-size: 2.2rem;
    }

    .highlights-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (min-width: 992px) {
    .premium-container {
        max-width: 960px;
    }

    .premium-title {
        font-size: 2.8rem;
    }

    .highlights-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }
}

@media (min-width: 1200px) {
    .premium-container {
        max-width: 1140px;
    }

    .premium-title {
        font-size: 3.2rem;
    }

    .highlights-grid {
        gap: 30px;
    }
}

@media (max-width: 380px) {
    .premium-title {
        font-size: 1.5rem;
    }

    .card-icon {
        width: 45px;
        height: 45px;
        font-size: 1.5rem;
    }

    .highlight-card h3 {
        font-size: 1.3rem;
    }
}

/* Touch Device Optimizations */
@media (hover: none) {
    .highlight-card:hover {
        transform: none;
    }

    .highlight-card:hover .card-media img {
        transform: none;
    }

    .highlight-card:active {
        transform: scale(0.98);
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {

    .bg-orb,
    .bg-grid,
    .bg-circuit,
    .particle,
    .bg-scanlines,
    .highlight-card,
    .card-icon,
    .card-media img {
        animation: none !important;
        transition: none !important;
    }
}


/* =========================================
   ACTIVITIES GRID - MOBILE OPTIMIZED
   WITH ALPHACORSA FONT
   ========================================= */
/* Mobile First Approach - Base styles for mobile */
.activities-page .activities-grid-section {
    background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-darker) 100%);
    position: relative;
    padding: 60px 0;
    width: 100%;
    overflow-x: hidden;
}

.activities-page .section-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 15px;
    width: 100%;
    box-sizing: border-box;
}

/* Section Header - Mobile First */
.activities-page .section-header {
    text-align: center;
    margin-bottom: 40px;
    width: 100%;
}

.activities-page .section-subtitle {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 0.8rem;
    background: linear-gradient(135deg, #B0D136 0%, #00D4FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.activities-page .section-title {
    font-family: var(--font-alphacorsa);
    font-size: 2rem;
    font-weight: 400;
    color: #ffffff;
    margin-bottom: 1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    line-height: 1.2;
}

.activities-page .section-title .gradient-text {
    background: linear-gradient(135deg, #B0D136 0%, #00D4FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: var(--font-alphacorsa);
}

.activities-page .neon-divider {
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, #B0D136, #00D4FF, #FF2ED1);
    margin: 15px auto 0;
    border-radius: 2px;
    box-shadow: 0 0 15px rgba(176, 209, 54, 0.5);
}

/* Grid Container - Mobile First */
.activities-page .grid-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
    width: 100%;
}

/* Game Card - Mobile First */
.activities-page .game-card {
    position: relative;
    background: rgba(10, 10, 15, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid var(--neon-green-dim);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    width: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* Card Media */
.activities-page .card-media {
    position: relative;
    height: 200px;
    overflow: hidden;
    flex-shrink: 0;
}

.activities-page .card-media .placeholder-img {
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #0d1a08, #16213e);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.activities-page .card-media .placeholder-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}

/* Card Overlay */
.activities-page .card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.7) 100%);
    opacity: 0.3;
    transition: opacity 0.3s;
    pointer-events: none;
}

/* Card Content */
.activities-page .card-content {
    padding: 20px 16px;
    position: relative;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.activities-page .game-icon {
    position: absolute;
    top: -25px;
    right: 15px;
    font-size: 2.8rem;
    filter: drop-shadow(0 0 10px var(--neon-green));
    background: rgba(10, 10, 15, 0.95);
    padding: 5px;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--neon-green);
    z-index: 5;
}

.activities-page .card-content h3 {
    font-family: var(--font-alphacorsa);
    font-size: 1.4rem;
    font-weight: 400;
    color: #fff;
    margin-bottom: 10px;
    text-shadow: 0 0 8px var(--neon-green-dim);
    line-height: 1.3;
    padding-right: 45px;
    letter-spacing: 1px;
}

.activities-page .card-excerpt {
    font-family: var(--font-body);
    color: var(--text-dim);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 18px;
    flex-grow: 1;
}

.activities-page .card-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--neon-green);
    text-decoration: none;
    font-family: var(--font-body);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s;
    font-size: 0.9rem;
    margin-top: auto;
    align-self: flex-start;
    padding: 5px 0;
}

.activities-page .card-btn span {
    transition: transform 0.3s;
}

/* Hover Effects (only for devices that support hover) */
@media (hover: hover) {
    .activities-page .game-card:hover {
        transform: translateY(-5px);
        border-color: var(--neon-green);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.7),
            0 0 25px var(--neon-green-glow);
    }

    .activities-page .game-card:hover .card-media .placeholder-img img {
        transform: scale(1.08);
    }

    .activities-page .game-card:hover .card-overlay {
        opacity: 0.5;
    }

    .activities-page .card-btn:hover {
        color: var(--neon-accent);
        gap: 12px;
    }

    .activities-page .card-btn:hover span {
        transform: translateX(5px);
    }
}

/* Circuit Lines Effect */
.activities-page .circuit-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        repeating-linear-gradient(0deg, transparent, transparent 19px, rgba(176, 209, 54, 0.05) 20px),
        repeating-linear-gradient(90deg, transparent, transparent 19px, rgba(176, 209, 54, 0.05) 20px);
    opacity: 0.1;
    pointer-events: none;
    z-index: 1;
}

/* ===== TABLET STYLES (600px and up) ===== */
@media (min-width: 600px) {
    .activities-page .section-container {
        padding: 0 20px;
    }

    .activities-page .grid-container {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .activities-page .section-title {
        font-size: 2.2rem;
    }

    .activities-page .card-media {
        height: 180px;
    }
}

/* ===== TABLET LANDSCAPE (768px and up) ===== */
@media (min-width: 768px) {
    .activities-page .section-container {
        max-width: 720px;
        margin: 0 auto;
    }

    .activities-page .section-header {
        margin-bottom: 50px;
    }

    .activities-page .section-title {
        font-size: 2.5rem;
    }

    .activities-page .grid-container {
        gap: 25px;
    }

    .activities-page .card-media {
        height: 190px;
    }

    .activities-page .card-content h3 {
        font-size: 1.5rem;
    }
}

/* ===== DESKTOP (992px and up) ===== */
@media (min-width: 992px) {
    .activities-page .section-container {
        max-width: 960px;
    }

    .activities-page .grid-container {
        grid-template-columns: repeat(3, 1fr);
    }

    .activities-page .section-title {
        font-size: 3rem;
    }

    .activities-page .section-subtitle {
        font-size: 0.95rem;
        letter-spacing: 4px;
    }

    .activities-page .neon-divider {
        width: 120px;
    }
}

/* ===== LARGE DESKTOP (1200px and up) ===== */
@media (min-width: 1200px) {
    .activities-page .section-container {
        max-width: 1140px;
    }

    .activities-page .grid-container {
        grid-template-columns: repeat(4, 1fr);
        gap: 30px;
    }

    .activities-page .card-media {
        height: 200px;
    }

    .activities-page .card-content h3 {
        font-size: 1.6rem;
    }
}

/* ===== EXTRA LARGE DESKTOP (1400px and up) ===== */
@media (min-width: 1400px) {
    .activities-page .section-container {
        max-width: 1320px;
    }

    .activities-page .grid-container {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* ===== SMALL MOBILE (up to 380px) ===== */
@media (max-width: 380px) {
    .activities-page .section-title {
        font-size: 1.6rem;
    }

    .activities-page .card-media {
        height: 160px;
    }

    .activities-page .card-content {
        padding: 16px 12px;
    }

    .activities-page .card-content h3 {
        font-size: 1.2rem;
        padding-right: 35px;
    }

    .activities-page .game-icon {
        font-size: 2.2rem;
        width: 42px;
        height: 42px;
        top: -21px;
        right: 10px;
    }

    .activities-page .card-excerpt {
        font-size: 0.85rem;
    }

    .activities-page .card-btn {
        font-size: 0.8rem;
    }
}

/* ===== LANDSCAPE MODE ON MOBILE ===== */
@media (max-width: 896px) and (orientation: landscape) {
    .activities-page .grid-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .activities-page .card-media {
        height: 150px;
    }
}

/* ===== TOUCH DEVICE OPTIMIZATIONS ===== */
@media (hover: none) {
    .activities-page .game-card:active {
        transform: scale(0.98);
        border-color: var(--neon-green);
    }

    .activities-page .card-btn {
        padding: 8px 0;
    }
}

/* ===== REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {

    .activities-page .game-card,
    .activities-page .card-media .placeholder-img img,
    .activities-page .card-btn,
    .activities-page .card-btn span {
        transition: none !important;
        animation: none !important;
        transform: none !important;
    }
}

/* ===== HIGH CONTRAST MODE ===== */
@media (prefers-contrast: high) {
    .activities-page .game-card {
        border: 2px solid #B0D136;
    }

    .activities-page .card-btn {
        border: 1px solid #B0D136;
        padding: 6px 12px;
        border-radius: 4px;
    }
}


/* =========================================
   GAME ZONES SECTION - REVAMPED
   ========================================= */

@import url("https://db.onlinewebfonts.com/c/7736576106700fa2774f04bf3e04ebbb?family=Alphacorsa+Personal+Use");

:root {
    --bg-dark: #0A0A0F;
    --bg-darker: #050508;
    --neon-gold: #d0ff00;
    --neon-gold-dim: rgba(255, 215, 0, 0.2);
    --neon-gold-glow: rgba(255, 215, 0, 0.4);
    --neon-purple: #9b4dff;
    --neon-cyan: #00ffff;
    --text-dim: rgba(255, 255, 255, 0.7);
    --font-alphacorsa: 'Alphacorsa Personal Use', cursive;
    --font-body: 'Barlow Condensed', sans-serif;
    --font-display: 'Bebas Neue', 'Oswald', sans-serif;
}

/* Section Background */
.activities-page .game-zones-section {
    /* background: linear-gradient(180deg, var(--bg-darker) 0%, var(--bg-dark) 100%); */
    position: relative;
    overflow: hidden;
    padding: 80px 0;
}

/* Section Container */
.activities-page .section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

/* Section Header */
.activities-page .section-header {
    text-align: center;
    margin-bottom: 50px;
}

.activities-page .section-subtitle {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #d0ff00 0%, #9b4dff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.activities-page .section-title {
    font-family: var(--font-alphacorsa);
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 400;
    color: #ffffff;
    margin-bottom: 1rem;
    line-height: 1.2;
    text-transform: uppercase;
}

.activities-page .section-title .gradient-text {
    background: linear-gradient(135deg, #d0ff00 0%, #9b4dff 50%, #00ffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: var(--font-alphacorsa);
}

.activities-page .neon-divider {
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, #d0ff00, #9b4dff, #00ffff);
    margin: 20px auto 0;
    border-radius: 2px;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

/* Zones Container */
.activities-page .zones-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 30px;
}

/* Zone Card */
.activities-page .zone-card {
    position: relative;
    padding: 50px 25px 40px;
    background: rgba(10, 10, 15, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 24px;
    text-align: center;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.activities-page .zone-card:hover {
    transform: translateY(-10px);
    border-color: var(--neon-gold);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6),
        0 0 40px rgba(255, 215, 0, 0.3);
}

/* Zone Icon */
.activities-page .zone-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 20px currentColor);
    animation: zoneIconFloat 3s ease-in-out infinite;
}

@keyframes zoneIconFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

/* Zone Title */
.activities-page .zone-card h3 {
    font-family: var(--font-alphacorsa);
    font-size: 2rem;
    margin-bottom: 30px;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 15px currentColor;
}

/* Card-specific colors */
.activities-page .zone-card.fan-zone {
    border-color: rgba(0, 255, 255, 0.3);
}

.activities-page .zone-card.fan-zone .zone-icon,
.activities-page .zone-card.fan-zone h3 {
    color: var(--neon-cyan);
    filter: drop-shadow(0 0 15px var(--neon-cyan));
}

.activities-page .zone-card.bar-lounge {
    border-color: rgba(255, 215, 0, 0.3);
}

.activities-page .zone-card.bar-lounge .zone-icon,
.activities-page .zone-card.bar-lounge h3 {
    color: var(--neon-gold);
    filter: drop-shadow(0 0 15px var(--neon-gold));
}

.activities-page .zone-card.food-fiesta {
    border-color: rgba(155, 77, 255, 0.3);
}

.activities-page .zone-card.food-fiesta .zone-icon,
.activities-page .zone-card.food-fiesta h3 {
    color: var(--neon-purple);
    filter: drop-shadow(0 0 15px var(--neon-purple));
}

/* Zone Features List */
.activities-page .zone-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.activities-page .zone-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 0;
    color: rgba(255, 255, 255, 0.9);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    font-family: var(--font-body);
    font-size: 1.1rem;
}

.activities-page .zone-features li:last-child {
    border-bottom: none;
}

.activities-page .zone-features li:hover {
    transform: translateX(8px);
    color: #fff;
    border-bottom-color: currentColor;
}

.activities-page .feature-icon {
    font-size: 1.3rem;
    filter: drop-shadow(0 0 8px currentColor);
    width: 30px;
    text-align: center;
}

.activities-page .feature-text {
    flex: 1;
    text-align: left;
    font-weight: 500;
}

/* Zone Glow Effect */
.activities-page .zone-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.15) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s;
    pointer-events: none;
    z-index: 1;
}

.activities-page .zone-card.fan-zone .zone-glow {
    background: radial-gradient(circle, rgba(0, 255, 255, 0.15) 0%, transparent 70%);
}

.activities-page .zone-card.bar-lounge .zone-glow {
    background: radial-gradient(circle, rgba(255, 215, 0, 0.15) 0%, transparent 70%);
}

.activities-page .zone-card.food-fiesta .zone-glow {
    background: radial-gradient(circle, rgba(155, 77, 255, 0.15) 0%, transparent 70%);
}

.activities-page .zone-card:hover .zone-glow {
    opacity: 1;
    animation: rotateGlow 10s linear infinite;
}

/* Zone Particles */
.activities-page .zone-particles {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(2px 2px at 20px 30px, currentColor, transparent),
        radial-gradient(2px 2px at 40px 70px, currentColor, transparent),
        radial-gradient(2px 2px at 80px 120px, currentColor, transparent);
    background-size: 100px 100px;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
    z-index: 1;
}

.activities-page .zone-card:hover .zone-particles {
    opacity: 0.4;
    animation: particleMove 15s linear infinite;
}

/* Animations */
@keyframes rotateGlow {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes particleMove {
    0% {
        background-position: 0 0;
    }

    100% {
        background-position: 100px 100px;
    }
}

/* ===== RESPONSIVE DESIGN ===== */

/* Tablet Landscape */
@media (max-width: 992px) {
    .activities-page .game-zones-section {
        padding: 60px 0;
    }

    .activities-page .zones-container {
        gap: 20px;
    }

    .activities-page .zone-card {
        padding: 40px 20px 30px;
    }

    .activities-page .zone-card h3 {
        font-size: 1.8rem;
    }

    .activities-page .zone-features li {
        font-size: 1rem;
        padding: 12px 0;
    }
}

/* Tablet Portrait */
@media (max-width: 768px) {
    .activities-page .game-zones-section {
        padding: 50px 0;
    }

    .activities-page .section-header {
        margin-bottom: 40px;
    }

    .activities-page .section-title {
        font-size: 2rem;
    }

    .activities-page .zones-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .activities-page .zone-card {
        padding: 35px 15px 25px;
    }

    .activities-page .zone-icon {
        font-size: 3.5rem;
    }

    .activities-page .zone-card h3 {
        font-size: 1.6rem;
        margin-bottom: 20px;
    }

    .activities-page .feature-icon {
        font-size: 1.2rem;
        width: 25px;
    }
}

/* Mobile Large */
@media (max-width: 576px) {
    .activities-page .game-zones-section {
        padding: 40px 0;
    }

    .activities-page .section-title {
        font-size: 1.8rem;
    }

    .activities-page .section-subtitle {
        font-size: 0.85rem;
        letter-spacing: 3px;
    }

    .activities-page .neon-divider {
        width: 80px;
    }

    .activities-page .zones-container {
        grid-template-columns: 1fr;
        max-width: 380px;
        margin-left: auto;
        margin-right: auto;
        gap: 25px;
    }

    .activities-page .zone-card {
        padding: 40px 20px 30px;
    }

    .activities-page .zone-icon {
        font-size: 4rem;
    }

    .activities-page .zone-card h3 {
        font-size: 1.8rem;
    }

    .activities-page .zone-features li {
        font-size: 1rem;
        padding: 12px 0;
    }
}

/* Mobile Small */
@media (max-width: 380px) {
    .activities-page .section-title {
        font-size: 1.5rem;
    }

    .activities-page .zone-card {
        padding: 30px 15px 25px;
    }

    .activities-page .zone-icon {
        font-size: 3.5rem;
    }

    .activities-page .zone-card h3 {
        font-size: 1.5rem;
    }

    .activities-page .zone-features li {
        font-size: 0.95rem;
        padding: 10px 0;
    }

    .activities-page .feature-icon {
        font-size: 1.1rem;
    }
}

/* Landscape Mode on Mobile */
@media (max-width: 896px) and (orientation: landscape) {
    .activities-page .zones-container {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }

    .activities-page .zone-card {
        padding: 30px 15px 20px;
    }

    .activities-page .zone-icon {
        font-size: 3rem;
    }

    .activities-page .zone-card h3 {
        font-size: 1.4rem;
        margin-bottom: 15px;
    }

    .activities-page .zone-features li {
        font-size: 0.9rem;
        padding: 8px 0;
    }
}

/* Touch Device Optimizations */
@media (hover: none) {
    .activities-page .zone-card:hover {
        transform: none;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    }

    .activities-page .zone-card:hover .zone-glow {
        opacity: 0;
    }

    .activities-page .zone-card:hover .zone-particles {
        opacity: 0;
    }

    .activities-page .zone-features li:hover {
        transform: none;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {

    .activities-page .zone-card,
    .activities-page .zone-icon,
    .activities-page .zone-features li,
    .activities-page .zone-glow,
    .activities-page .zone-particles {
        animation: none !important;
        transition: none !important;
        transform: none !important;
    }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    .activities-page .zone-card {
        border: 2px solid #FFD700;
    }

    .activities-page .zone-card.fan-zone {
        border-color: #00ffff;
    }

    .activities-page .zone-card.bar-lounge {
        border-color: #FFD700;
    }

    .activities-page .zone-card.food-fiesta {
        border-color: #9b4dff;
    }

    .activities-page .zone-features li {
        border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    }
}

/* ===== FEATURED SECTION ===== */
.activities-page .featured-section {
    min-height: 80vh;
    display: flex;
    align-items: center;
    position: relative;
    /* background: linear-gradient(135deg, #0A0A0F, #0d1a08); */
    overflow: hidden;
}

.activities-page .featured-container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.activities-page .featured-container h2 {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.2;
}

/* -------------------New Section Starts Here  --------------- */
/* ============================================
   FEATURED GAME SECTION - PROFESSIONAL
   ============================================ */

.featured-section {
    position: relative;
    padding: 120px 0;
    /* background: linear-gradient(135deg, #0A0A0F 0%, #0d1a08 50%, #0A0A0F 100%); */
    overflow: hidden;
}

.featured-section .section-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 2;
}

.featured-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
}

/* Content Side */
.featured-header {
    margin-bottom: 30px;
}

.featured-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    background: rgba(174, 208, 52, 0.1);
    border: 1px solid var(--neon-green);
    border-radius: 50px;
    color: var(--neon-green);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 24px;
}

.featured-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 900;
    line-height: 0.9;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 4px;
}

.title-accent {
    display: block;
    font-size: 0.7em;
    background: linear-gradient(135deg, var(--neon-green) 0%, var(--neon-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-top: 10px;
}

.featured-description {
    font-size: 1.15rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 40px;
    max-width: 90%;
}

/* Stats */
.featured-stats {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 40px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.stat-item {
    text-align: center;
}

.stat-value {
    display: block;
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--neon-blue);
    text-shadow: 0 0 20px rgba(0, 229, 255, 0.4);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    display: block;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-divider {
    width: 1px;
    height: 50px;
    background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}

/* Actions */
.featured-actions {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 36px;
    background: linear-gradient(135deg, var(--neon-pink) 0%, #ff6b9d 100%);
    color: #ffffff;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-decoration: none;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(255, 46, 209, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 46, 209, 0.6);
}

.btn-primary svg {
    transition: transform 0.3s ease;
}

.btn-primary:hover svg {
    transform: translateX(5px);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    padding: 18px 36px;
    background: transparent;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    border-color: var(--neon-blue);
    color: var(--neon-blue);
    background: rgba(0, 229, 255, 0.05);
}

/* Media Side */
.featured-media {
    position: relative;
}

.media-frame {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    border: 2px solid rgba(174, 208, 52, 0.3);
    box-shadow:
        0 40px 80px rgba(0, 0, 0, 0.5),
        0 0 60px rgba(174, 208, 52, 0.2);
}

.media-frame img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

.media-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(10, 10, 15, 0.8) 100%);
    pointer-events: none;
}

.media-glow {
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: linear-gradient(45deg, var(--neon-green), var(--neon-blue));
    border-radius: 40px;
    z-index: -1;
    opacity: 0.2;
    filter: blur(40px);
    animation: glowPulse 4s ease-in-out infinite;
}

@keyframes glowPulse {

    0%,
    100% {
        opacity: 0.2;
        transform: scale(1);
    }

    50% {
        opacity: 0.4;
        transform: scale(1.05);
    }
}

/* ============================================
   CTA SECTION - PROFESSIONAL
   ============================================ */

.cta-section {
    position: relative;
    padding: 140px 0;
    /* background: linear-gradient(180deg, #0A0A0F 0%, #050508 100%); */
    overflow: hidden;
}

.cta-section .section-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 2;
}

.cta-wrapper {
    text-align: center;
}

.cta-header {
    margin-bottom: 50px;
}

.cta-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 20px;
    line-height: 1.1;
}

.cta-subtitle {
    font-size: 1.25rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
    max-width: 700px;
    margin: 0 auto;
}

/* Metrics */
.cta-metrics {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    margin-bottom: 50px;
    padding: 40px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    backdrop-filter: blur(10px);
}

.metric-item {
    text-align: center;
}

.metric-number {
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 900;
    color: var(--neon-green);
    text-shadow: 0 0 30px rgba(174, 208, 52, 0.4);
    line-height: 1;
}

.metric-suffix {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--neon-green);
    vertical-align: super;
    margin-left: 2px;
}

.metric-label {
    display: block;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 10px;
}

.metric-divider {
    width: 1px;
    height: 80px;
    background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}

/* Actions */
.cta-actions {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.cta-actions .btn-primary {
    padding: 20px 48px;
    font-size: 1.1rem;
}

.cta-actions .btn-secondary {
    padding: 20px 48px;
    font-size: 1.1rem;
}

/* Trust Badges */
.cta-trust {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
}

.trust-item svg {
    color: var(--neon-green);
    stroke-width: 2.5px;
}

/* Pulse Animation */
.pulse-animation {
    animation: professionalPulse 2s ease-in-out infinite;
}

@keyframes professionalPulse {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 10px 30px rgba(255, 46, 209, 0.4);
    }

    50% {
        transform: scale(1.02);
        box-shadow: 0 15px 40px rgba(255, 46, 209, 0.6);
    }
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1024px) {
    .activities-page .featured-container {
        display: flex !important;
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

    .activities-page .featured-content {
        display: contents;
        /* Allows children to participate in the flex layout of .featured-container */
    }

    .activities-page .featured-header {
        order: 1;
        margin-bottom: 10px;
        width: 100%;
    }

    .activities-page .featured-media {
        order: 2;
        width: 100%;
        margin-bottom: 20px;
    }

    .activities-page .featured-description {
        order: 3;
        max-width: 100%;
        margin-bottom: 30px;
    }

    .activities-page .featured-stats {
        order: 4;
        justify-content: center;
        margin-bottom: 30px;
    }

    .activities-page .featured-actions {
        order: 5;
        justify-content: center;
        width: 100%;
    }

    .media-frame img {
        height: 400px;
    }

    .cta-metrics {
        gap: 30px;
        padding: 30px;
    }

    .metric-number {
        font-size: 3rem;
    }

    .metric-suffix {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {

    .featured-section,
    .cta-section {
        padding: 80px 0;
    }

    .featured-section .section-container,
    .cta-section .section-container {
        padding: 0 20px;
    }

    .activities-page .featured-stats {
        flex-direction: row;
        gap: 10px;
        padding: 20px 10px;
        justify-content: space-evenly;
        flex-wrap: nowrap;
        width: 100%;
    }

    .activities-page .stat-divider {
        width: 1px;
        height: 40px;
        margin: auto 0;
    }

    .activities-page .stat-item {
        flex: 1;
    }

    .activities-page .stat-value {
        font-size: 1.5rem;
    }

    .activities-page .stat-label {
        font-size: 0.75rem;
    }

    .featured-actions {
        flex-direction: column;
        align-items: center;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    .media-frame {
        border-radius: 20px;
    }

    .media-frame img {
        height: 300px;
    }

    .cta-metrics {
        flex-direction: column;
        gap: 30px;
        padding: 30px 20px;
    }

    .metric-divider {
        width: 60px;
        height: 1px;
    }

    .cta-actions {
        flex-direction: column;
        align-items: center;
    }

    .cta-trust {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .featured-title {
        font-size: 2.5rem;
    }

    .activities-page .stat-value {
        font-size: 1.2rem;
    }

    .metric-number {
        font-size: 2.5rem;
    }

    .metric-suffix {
        font-size: 1.5rem;
    }
}