﻿/* ================= GLOBAL ================= */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Inter', sans-serif;
    color: #e6e9ff;
    background: radial-gradient(circle at 20% 10%, rgba(124,58,237,.15), transparent 40%), radial-gradient(circle at 80% 30%, rgba(34,211,238,.12), transparent 45%), #05030f;
    background-attachment: fixed;
    overflow-x: hidden;
    cursor: url('sword.png') 4 4, auto;
}

section {
    position: relative;
    z-index: 1;
}

h1, h2, h3, h4, h5, p, span {
    color: inherit;
}

/* ================= FLOATING BLOBS ================= */
.ui-blobs {
    position: fixed;
    inset: 0;
    z-index: -2;
    pointer-events: none;
}

    .ui-blobs span {
        position: absolute;
        border-radius: 50%;
        filter: blur(90px);
        opacity: .35;
        animation: floatBlob 18s infinite ease-in-out alternate;
    }

        .ui-blobs span:nth-child(1) {
            width: 420px;
            height: 420px;
            background: #7c3aed;
            top: 10%;
            left: 5%;
        }

        .ui-blobs span:nth-child(2) {
            width: 520px;
            height: 520px;
            background: #22d3ee;
            bottom: 5%;
            right: 10%;
            animation-delay: 4s;
        }

        .ui-blobs span:nth-child(3) {
            width: 380px;
            height: 380px;
            background: #4ade80;
            top: 55%;
            left: 45%;
            animation-delay: 8s;
        }

@keyframes floatBlob {
    0% {
        transform: translate(0,0) scale(1);
    }

    50% {
        transform: translate(30px,-40px) scale(1.1);
    }

    100% {
        transform: translate(-20px,20px) scale(.95);
    }
}

.navbar {
    position: fixed;
    top: 0px;
    left: 50%;
    transform: translateX(-50%);
    width: 92%;
    padding: 18px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(18px);
    border-radius: 18px;
    border: 1px solid rgba(255,255,255,0.08);
    transition: all 0.35s cubic-bezier(.4,0,.2,1);
    z-index: 10000;
    padding: 14px 28px;
    background: rgba(10, 15, 30, 0.25);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    z-index: 1000;
}

.main-header {
    position: fixed;
    top: 18px; /* gap when pill */
    width: 100%;
    display: flex;
    justify-content: center;
    z-index: 9999;
    transition: top .35s ease;
}


.nav-pill {
    width: 96%;
    max-width: 1400px;
    padding: 16px 26px;
    border-radius: 999px; /* 🔵 PILL at top */
    background: linear-gradient(90deg, #2b0d63, #1a0b35);
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 12px 40px rgba(0,0,0,.45);
    transition: all .35s cubic-bezier(.4,0,.2,1);
}

.main-header.scrolled {
    top: 0; /* 🔥 removes gap */
}

    .main-header.scrolled .nav-pill {
        width: 100%;
        max-width: 100%;
        border-radius: 0; /* rectangle */
        padding: 14px 40px;
        background: rgba(10, 10, 30, 0.85);
        backdrop-filter: blur(14px);
        box-shadow: 0 8px 30px rgba(0,0,0,.35);
    }



/* Base hidden state */
.nav-item .dropdown-menu,
.panels-dropdown .dropdown-menu {
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: all .25s ease;
    pointer-events: none;
}

/* Show on hover */
.nav-item.dropdown:hover > .dropdown-menu,
.panels-dropdown:hover > .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.nav-item .dropdown-menu,
.panels-dropdown .dropdown-menu {
    opacity: 0;
    visibility: hidden;
    transform: translateY(14px) scale(.98);
    pointer-events: none;
    transition: opacity .35s ease, transform .35s cubic-bezier(.22,1,.36,1), visibility 0s linear .45s; /* ⬅ longer delay before hiding */
}

.nav-item.dropdown:hover > .dropdown-menu,
.panels-dropdown:hover > .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
    pointer-events: auto;
    transition: opacity .25s ease, transform .25s cubic-bezier(.22,1,.36,1), visibility 0s;
}

.nav-item.dropdown::after,
.panels-dropdown::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    height: 22px; /* bigger bridge */
}


.nav-item.dropdown::after,
.panels-dropdown::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    height: 14px; /* invisible hover bridge */
}

.dropdown-menu {
    position: absolute;
    top: 44px;
    left: 0;
    min-width: 240px;
    padding: 14px;
    border-radius: 16px;
    background: rgba(20, 10, 45, 0.55);
    backdrop-filter: blur(18px) saturate(140%);
    -webkit-backdrop-filter: blur(18px) saturate(140%);
    border: 1px solid rgba(120, 80, 255, 0.25);
    box-shadow: 0 20px 60px rgba(0,0,0,.55), 0 0 25px rgba(124,58,237,.25), inset 0 0 12px rgba(255,255,255,.05);
    display: flex;
    flex-direction: column;
    gap: 6px;
    z-index: 3000;
}

    .dropdown-menu a {
        position: relative;
        padding: 10px 12px;
        border-radius: 10px;
        color: #dcdcff;
        text-decoration: none;
        font-size: 14px;
        transition: all .25s ease;
    }

        .dropdown-menu a:hover {
            background: rgba(124,58,237,.15);
            color: #fff;
            box-shadow: 0 0 12px rgba(124,58,237,.35);
            transform: translateX(4px);
        }

    .dropdown-menu::before {
        content: "";
        position: absolute;
        inset: 0;
        border-radius: 16px;
        padding: 1px;
        background: linear-gradient(120deg, #7c3aed, #22d3ee, #7c3aed);
        background-size: 200% 200%;
        animation: borderGlow 6s linear infinite;
        -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
        -webkit-mask-composite: xor;
        mask-composite: exclude;
        pointer-events: none;
    }

@keyframes borderGlow {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.nav-item .dropdown-menu,
.panels-dropdown .dropdown-menu {
    opacity: 0;
    visibility: hidden;
    transform: translateY(14px) scale(.98);
    pointer-events: none;
    transition: opacity .4s ease, transform .4s cubic-bezier(.22,1,.36,1), visibility 0s linear .7s; /* ⬅ stays "alive" longer */
}

.nav-item.dropdown::after,
.panels-dropdown::after {
    content: "";
    position: absolute;
    left: -20px;
    right: -20px;
    top: 100%;
    height: 36px; /* bigger invisible zone */
}

.dropdown-menu {
    top: 38px; /* bring closer to menu item */
}


/* Right side dropdown (Panels) */
.panels-dropdown .dropdown-menu {
    right: 0;
    left: auto;
}


.panels-dropdown {
    position: relative;
}

    .panels-dropdown .dropdown-menu {
        right: 0;
        left: auto;
        top: 42px;
        display: none;
    }

    .panels-dropdown:hover .dropdown-menu {
        display: flex;
    }

.dropdown-menu a {
    padding: 10px 12px;
    border-radius: 10px;
    color: #dcdcff;
    text-decoration: none;
    font-size: 14px;
    transition: background .2s ease;
}

    .dropdown-menu a:hover {
        background: rgba(255,255,255,.07);
        color: #fff;
    }



.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

    .logo img {
        height: 36px;
    }

.logo-text strong {
    font-size: 18px;
}

.logo-text span {
    font-size: 13px;
    opacity: .7;
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-menu {
    display: flex;
    gap: 22px;
}

.nav-item {
    position: relative;
    color: #dcdcff;
    font-size: 14px;
    cursor: pointer;
}

    .nav-item:hover {
        color: #fff;
    }

.dropdown-menu {
    position: absolute;
    top: 38px;
    left: 0;
    background: linear-gradient(180deg,#0f0622,#1a0836);
    padding: 12px;
    border-radius: 16px;
    min-width: 230px;
    display: none;
    flex-direction: column;
    gap: 8px;
    box-shadow: 0 20px 50px rgba(0,0,0,.5);
}

    .dropdown-menu a {
        color: #cfcfff;
        text-decoration: none;
        padding: 8px 10px;
        border-radius: 10px;
        font-size: 14px;
    }

        .dropdown-menu a:hover {
            background: rgba(255,255,255,0.07);
            color: #fff;
        }

.dropdown:hover .dropdown-menu {
    display: flex;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.pill-btn {
    padding: 9px 16px;
    border-radius: 999px;
    font-size: 14px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    color: white;
    background: rgba(255,255,255,0.08);
}

    .pill-btn:hover {
        background: rgba(255,255,255,0.16);
    }

    .pill-btn.solid {
        background: linear-gradient(90deg,#7c3aed,#9333ea);
    }

        .pill-btn.solid:hover {
            filter: brightness(1.1);
        }

    .pill-btn.ghost {
        background: transparent;
        border: 1px solid rgba(255,255,255,0.2);
    }

.panels-dropdown {
    position: relative;
}

.right-menu {
    right: 0;
    left: auto;
}

.dropdown.open .dropdown-menu {
    display: flex;
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 28px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 18px;
    font-weight: 600;
}

.logo-img {
    height: 32px;
}

.logo-text {
    color: #ffffff;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 22px;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: inherit;
}

    .logo-link:hover {
        opacity: 0.95;
    }


.nav-links a {
    position: relative;
    text-decoration: none;
    color: #cbd5f5;
    font-size: 14px;
    font-weight: 500;
    padding: 6px 2px;
    transition: color 0.25s ease;
}

    .nav-links a:hover {
        color: #ffffff;
    }

    .nav-links a::before {
        content: "";
        position: absolute;
        left: 50%;
        bottom: -8px;
        width: 0;
        height: 6px;
        background: #22c55e;
        filter: blur(12px);
        opacity: 0;
        transform: translateX(-50%);
        transition: width 0.35s ease, opacity 0.35s ease;
    }

    .nav-links a:hover::before {
        width: 100%;
        opacity: 0.9;
    }

    .nav-links a::after {
        content: "";
        position: absolute;
        left: 50%;
        bottom: -6px;
        width: 0;
        height: 2px;
        background: linear-gradient(90deg, #22c55e, #06b6d4);
        border-radius: 999px;
        transform: translateX(-50%);
        opacity: 0;
        transition: width 0.35s ease, opacity 0.35s ease;
        box-shadow: 0 0 8px rgba(34,197,94,1), 0 0 18px rgba(34,197,94,0.9), 0 0 32px rgba(34,197,94,0.7), 0 0 52px rgba(34,197,94,0.5);
    }

    .nav-links a:hover::after {
        width: 100%;
        opacity: 1;
    }

.services-btn-wrapper,
.support-btn-wrapper {
    position: relative;
}

.services-arrow,
.support-arrow {
    font-size: 10px;
    margin-left: 4px;
}

.services-dropdown {
    position: absolute;
    top: 48px;
    left: 50%;
    transform: translateX(-50%) translateY(12px);
    width: 320px;
    padding: 12px;
    border-radius: 16px;
    background: linear-gradient(180deg, #0b0f19, #020617);
    box-shadow: 0 30px 60px rgba(0,0,0,0.8), 0 0 40px rgba(124,58,237,0.25);
    opacity: 0;
    visibility: hidden;
    transition: all 0.25s ease;
    z-index: 999;
}

.services-btn-wrapper:hover .services-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.service-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px;
    border-radius: 14px;
    text-decoration: none;
    color: #ffffff;
    transition: background 0.25s ease, transform 0.25s ease;
}

    .service-card:hover {
        background: rgba(124,58,237,0.15);
        transform: translateX(6px);
    }

.service-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    background: rgba(124,58,237,0.25);
}

.service-text strong {
    display: block;
    font-size: 14px;
    font-weight: 600;
}

.service-text span {
    font-size: 12px;
    opacity: 0.7;
}

.support-dropdown {
    position: absolute;
    top: 48px;
    left: 50%;
    transform: translateX(-50%) translateY(12px);
    width: 280px;
    padding: 10px;
    border-radius: 14px;
    background: linear-gradient(180deg, #0b0f19, #020617);
    box-shadow: 0 30px 60px rgba(0,0,0,0.8), 0 0 40px rgba(124,58,237,0.25);
    opacity: 0;
    visibility: hidden;
    transition: all 0.25s ease;
    z-index: 999;
}

.support-btn-wrapper:hover .support-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.support-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px;
    border-radius: 12px;
    text-decoration: none;
    color: #ffffff;
    transition: background 0.25s ease, transform 0.25s ease;
}

    .support-card:hover {
        background: rgba(124,58,237,0.15);
        transform: translateX(6px);
    }

.support-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(124,58,237,0.25);
    font-size: 16px;
}

.support-text strong {
    display: block;
    font-size: 14px;
    font-weight: 600;
}

.support-text span {
    font-size: 12px;
    opacity: 0.7;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* Panels */
.panel-btn-wrapper {
    position: relative;
}

.panel-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    border-radius: 10px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    color: #e5e7eb;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

    .panel-btn:hover {
        background: rgba(255,255,255,0.14);
        box-shadow: 0 0 12px rgba(34,197,94,0.35), 0 0 28px rgba(34,197,94,0.2);
    }

.panel-arrow {
    font-size: 10px;
}

.dropdown-menu {
    position: absolute;
    top: 48px;
    right: 0;
    min-width: 200px;
    padding: 8px;
    border-radius: 12px;
    background: linear-gradient(180deg, #0f172a, #020617);
    box-shadow: 0 20px 40px rgba(0,0,0,0.7), 0 0 30px rgba(34,197,94,0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: all 0.25s ease;
    z-index: 999;
}

.panel-btn-wrapper:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    display: block;
    padding: 10px 12px;
    font-size: 13px;
    color: #e5e7eb;
    text-decoration: none;
    border-radius: 8px;
}

    .dropdown-menu a:hover {
        background: rgba(34,197,94,0.12);
    }

.discord-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 6px;
    background: #5865F2;
    color: #ffffff;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 0 20px rgba(88,101,242,0.45);
}

    .discord-btn:hover {
        background: #4752C4;
    }

    .discord-btn i {
        font-size: 15px;
    }

.services-dropdown,
.support-dropdown,
.dropdown-menu {
    z-index: 2000;
}


.services-btn-wrapper:hover > a::before,
.services-btn-wrapper:hover > a::after,
.support-btn-wrapper:hover > a::before,
.support-btn-wrapper:hover > a::after {
    opacity: 0;
}

.support-nav-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px;
    border-radius: 12px;
    text-decoration: none;
    color: #ffffff;
    transition: background 0.25s ease, transform 0.25s ease;
}

    .support-nav-card:hover {
        background: rgba(124,58,237,0.15);
        transform: translateX(6px);
    }

    .support-nav-card .support-icon {
        width: 40px;
        height: 40px;
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(124,58,237,0.25);
        font-size: 16px;
    }

    .support-nav-card strong {
        display: block;
        font-size: 14px;
        font-weight: 600;
    }

    .support-nav-card span {
        font-size: 12px;
        opacity: 0.7;
    }

/* ================= GAMES SECTION LAYOUT ================= */
.games-section {
    padding: 120px 20px;
}

.games-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 420px; /* TEXT | CARD */
    align-items: center;
    gap: 60px;
}

/* LEFT TEXT */
.games-title {
    font-size: 44px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 14px;
}

    .games-title span {
        background: linear-gradient(90deg, #a78bfa, #38bdf8);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

.games-subtitle {
    font-size: 16px;
    opacity: 0.75;
    max-width: 420px;
}

/* RIGHT CARD AREA */
.games-card-area {
    display: flex;
    justify-content: center;
}

/* ================= MINECRAFT CARD ================= */
.game-card {
    width: 100%;
    max-width: 380px; /* 🔥 REDUCED WIDTH */
    padding: 18px;
    border-radius: 22px;
    background: linear-gradient(145deg, rgba(25,25,60,.7), rgba(10,10,25,.8));
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,.08);
    box-shadow: 0 25px 70px rgba(0,0,0,.65);
    transition: all .3s ease;
    position: relative;
}

    .game-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 35px 90px rgba(0,0,0,.8), 0 0 30px rgba(124,58,237,.25);
    }

/* Badge */
.game-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    font-size: 12px;
    padding: 6px 12px;
    border-radius: 999px;
    background: linear-gradient(90deg,#7c3aed,#22d3ee);
    font-weight: 600;
}

/* Image */
.game-card img {
    width: 100%;
    border-radius: 14px;
    margin-bottom: 16px;
}

/* Title */
.game-card h3 {
    font-size: 20px;
    margin-bottom: 6px;
}

/* Price */
.game-price {
    font-size: 15px;
    font-weight: 700;
    color: #22d3ee;
    margin-bottom: 18px;
}

/* Button */
.game-btn {
    display: inline-block;
    padding: 12px 22px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    color: white;
    background: linear-gradient(90deg,#7c3aed,#22d3ee);
    transition: all .25s ease;
}

    .game-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 0 30px rgba(124,58,237,.6);
    }

/* ================= RESPONSIVE ================= */
@media (max-width: 900px) {
    .games-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .games-subtitle {
        margin: auto;
    }

    .games-card-area {
        margin-top: 40px;
    }
}

/* ================= GAMES SECTION (STACKED CENTER) ================= */
.games-section {
    padding: 120px 20px;
    text-align: center;
}

.games-container {
    max-width: 900px;
    margin: auto;
    display: flex;
    flex-direction: column; /* STACKED */
    align-items: center;
}

/* TITLE */
.games-title {
    font-size: 44px;
    font-weight: 800;
    margin-bottom: 14px;
}

    .games-title span {
        background: linear-gradient(90deg, #a78bfa, #38bdf8);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

/* SUBTITLE */
.games-subtitle {
    font-size: 16px;
    opacity: 0.75;
    margin-bottom: 50px;
    max-width: 520px;
}

/* CARD AREA */
.games-card-area {
    display: flex;
    justify-content: center;
    width: 100%;
}

.game-card {
    width: 100%;
    max-width: 360px; /* nice premium card width */
    padding: 18px;
    border-radius: 22px;
    background: linear-gradient(145deg, rgba(25,25,60,.7), rgba(10,10,25,.85));
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,.08);
    box-shadow: 0 25px 70px rgba(0,0,0,.65);
    transition: all .3s ease;
    position: relative;
}

    .game-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 35px 90px rgba(0,0,0,.8), 0 0 30px rgba(124,58,237,.25);
    }

/* ================= SOLUTIONS SECTION ================= */
.solutions-section {
    padding: 110px 20px 90px;
    text-align: center;
}

.section-title {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 12px;
}

    .section-title span {
        background: linear-gradient(90deg,#22d3ee,#4ade80);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

.section-subtitle {
    font-size: 15px;
    opacity: .65;
    margin-bottom: 60px;
}

/* GRID */
.solutions-grid {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
}

/* CARD */
.solution-card {
    padding: 28px 22px;
    border-radius: 16px;
    text-align: left;
    background: linear-gradient(145deg, rgba(20,25,45,.75), rgba(10,12,25,.9));
    border: 1px solid rgba(255,255,255,.08);
    box-shadow: 0 10px 30px rgba(0,0,0,.45);
    transition: all .25s ease;
}

    .solution-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 20px 50px rgba(0,0,0,.7);
    }

/* ICON */
.solution-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 16px;
}

    /* ICON COLORS */
    .solution-icon.purple {
        background: linear-gradient(135deg,#9333ea,#7c3aed);
    }

    .solution-icon.blue {
        background: linear-gradient(135deg,#2563eb,#22d3ee);
    }

    .solution-icon.green {
        background: linear-gradient(135deg,#16a34a,#4ade80);
    }

    .solution-icon.orange {
        background: linear-gradient(135deg,#f97316,#fb923c);
    }

/* TEXT */
.solution-card h3 {
    font-size: 17px;
    margin-bottom: 8px;
}

.solution-card p {
    font-size: 13px;
    opacity: .7;
}

/* ================= WHY SECTION ================= */
.why-section {
    padding: 110px 20px 120px;
    text-align: center;
}

.why-grid {
    max-width: 1200px;
    margin: 60px auto 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 🔥 FORCE 3 PER ROW */
    gap: 26px;
}

@media (max-width: 1000px) {
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .why-grid {
        grid-template-columns: 1fr;
    }
}

.play-section {
    padding: 120px 20px;
}

.play-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1.1fr 1fr; /* Image slightly bigger */
    gap: 60px;
    align-items: center;
}

/* IMAGE */
.play-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 30px 70px rgba(0,0,0,.65);
}

/* RIGHT SIDE CONTENT */
.play-tag {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: #38bdf8;
    margin-bottom: 14px;
}

.play-content h2 {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 18px;
    line-height: 1.1;
}

    .play-content h2 span {
        background: linear-gradient(90deg,#7c3aed,#22d3ee);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

.play-content p {
    font-size: 15px;
    opacity: .75;
    line-height: 1.8;
    margin-bottom: 28px;
    max-width: 520px;
}

.platform-buttons {
    display: grid;
    grid-template-columns: repeat(2, 180px);
    gap: 14px 18px;
}

    .platform-buttons div {
        padding: 14px 0;
        text-align: center;
        font-weight: 600;
        border-radius: 10px;
        cursor: default;
        background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
        border: 1px solid rgba(255,255,255,.08);
        transition: all .25s ease;
    }

        .platform-buttons div:hover {
            border-color: rgba(124,58,237,.6);
            box-shadow: 0 0 18px rgba(124,58,237,.35);
            transform: translateY(-2px);
        }

@media (max-width: 900px) {
    .play-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .play-content p {
        margin-left: auto;
        margin-right: auto;
    }

    .platform-buttons {
        justify-content: center;
        grid-template-columns: repeat(2, 150px);
    }
}

.support-highlight {
    padding: 120px 20px;
    text-align: center;
}

.support-header {
    max-width: 760px;
    margin: 0 auto 60px;
}

    .support-header h2 {
        font-size: 36px;
        font-weight: 800;
        margin-bottom: 14px;
    }

        .support-header h2 span {
            background: linear-gradient(90deg,#22d3ee,#4ade80);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

    .support-header p {
        font-size: 14px;
        opacity: .7;
        line-height: 1.7;
    }

/* GRID */
.support-highlight-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1100px;
    margin: auto;
}

/* CARD */
.support-highlight-card {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    padding: 26px;
    border-radius: 16px;
    text-decoration: none;
    color: #e6e9ff;
    background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
    border: 1px solid rgba(255,255,255,.08);
    backdrop-filter: blur(12px);
    transition: all .25s ease;
    text-align: left;
}

    .support-highlight-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 25px 60px rgba(0,0,0,.65), 0 0 25px rgba(124,58,237,.25);
        border-color: rgba(124,58,237,.35);
    }

/* ICON */
.support-highlight-icon {
    font-size: 26px;
    min-width: 42px;
    height: 42px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg,#7c3aed,#22d3ee);
    box-shadow: 0 0 16px rgba(124,58,237,.4);
}

/* TEXT */
.support-highlight-card h3 {
    font-size: 16px;
    margin-bottom: 6px;
}

.support-highlight-card p {
    font-size: 13px;
    opacity: .75;
    line-height: 1.6;
}

@media (max-width: 900px) {
    .support-highlight-grid {
        grid-template-columns: 1fr;
    }

    .support-highlight-card {
        text-align: left;
    }
}

.performance-section {
    padding: 120px 20px 80px;
    text-align: center;
}

.performance-grid {
    margin-top: 50px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.perf-card {
    padding: 26px 20px;
    border-radius: 16px;
    background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
    border: 1px solid rgba(255,255,255,.08);
    backdrop-filter: blur(10px);
    transition: all .25s ease;
}

    .perf-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 25px 60px rgba(0,0,0,.65), 0 0 25px rgba(124,58,237,.25);
        border-color: rgba(124,58,237,.35);
    }

.perf-icon {
    font-size: 24px;
    margin-bottom: 10px;
}

.perf-value {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 4px;
    background: linear-gradient(90deg,#22d3ee,#4ade80);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.perf-label {
    font-size: 13px;
    opacity: .7;
}

.cta-section {
    padding: 100px 20px 120px;
    display: flex;
    justify-content: center;
}

.cta-box {
    max-width: 900px;
    width: 100%;
    padding: 60px 40px;
    border-radius: 22px;
    text-align: center;
    background: linear-gradient(145deg, rgba(124,58,237,.18), rgba(15,8,40,.95));
    border: 1px solid rgba(124,58,237,.35);
    box-shadow: 0 40px 100px rgba(0,0,0,.7), 0 0 60px rgba(124,58,237,.25);
    backdrop-filter: blur(14px);
}

.cta-icon {
    font-size: 34px;
    margin-bottom: 14px;
}

.cta-box h2 {
    font-size: 32px;
    margin-bottom: 10px;
}

.cta-box p {
    font-size: 14px;
    opacity: .75;
    margin-bottom: 26px;
}

.cta-button {
    display: inline-block;
    padding: 14px 34px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    color: #020617;
    background: linear-gradient(90deg,#7c3aed,#22d3ee);
    box-shadow: 0 0 25px rgba(124,58,237,.6);
    transition: all .25s ease;
}

    .cta-button:hover {
        transform: translateY(-3px);
        box-shadow: 0 0 35px rgba(124,58,237,.9);
    }

.trustpilot-section {
    padding-bottom: 80px;
    display: flex;
    justify-content: center;
}

.trustpilot-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 22px;
    background: #ffffff;
    color: #000;
    font-size: 14px;
    font-weight: 600;
    border-radius: 6px;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(0,0,0,.35);
    transition: transform .25s ease, box-shadow .25s ease;
}

    .trustpilot-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 16px 40px rgba(0,0,0,.45);
    }

.tp-star {
    color: #00b67a;
    font-size: 16px;
}

@media (max-width: 900px) {
    .performance-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 500px) {
    .performance-grid {
        grid-template-columns: 1fr;
    }
}

.site-footer {
    background: radial-gradient(ellipse,#1a0033,#05010d);
    padding: 26px 0;
}

.footer-inner {
    max-width: 1200px;
    margin: auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 20px;
    font-size: 13px;
    color: #cbd5f5;
}

.footer-logo {
    display: flex;
    gap: 12px;
    align-items: center;
}

.footer-logo-img {
    width: 36px;
    height: 36px;
    border-radius: 8px;
}

.footer-center {
    text-align: center;
    opacity: .6;
    font-size: 12px;
}

.footer-right {
    display: flex;
    gap: 22px;
    justify-content: flex-end;
}

    .footer-right a {
        color: #cbd5f5;
        text-decoration: none;
        gap: 6px;
        display: flex;
    }

@media(max-width:900px) {
    .footer-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-right {
        justify-content: center;
    }
}

/* CARD */
.why-card {
    padding: 26px 22px;
    border-radius: 16px;
    text-align: left;
    background: linear-gradient(145deg, rgba(20,25,45,.75), rgba(10,12,25,.9));
    border: 1px solid rgba(255,255,255,.08);
    box-shadow: 0 10px 30px rgba(0,0,0,.45);
    transition: all .25s ease;
}

    .why-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 20px 50px rgba(0,0,0,.7);
    }

/* ICON BASE */
.why-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 16px;
}

    /* ICON COLORS */
    .why-icon.blue {
        background: linear-gradient(135deg,#2563eb,#22d3ee);
    }

    .why-icon.green {
        background: linear-gradient(135deg,#16a34a,#4ade80);
    }

    .why-icon.purple {
        background: linear-gradient(135deg,#9333ea,#7c3aed);
    }

    .why-icon.cyan {
        background: linear-gradient(135deg,#06b6d4,#22d3ee);
    }

    .why-icon.yellow {
        background: linear-gradient(135deg,#facc15,#f59e0b);
    }

    .why-icon.pink {
        background: linear-gradient(135deg,#ec4899,#f472b6);
    }

/* TEXT */
.why-card h3 {
    font-size: 17px;
    margin-bottom: 8px;
}

.why-card p {
    font-size: 13px;
    opacity: .7;
}

.dropdown-menu {
    position: absolute;
    top: 42px;
    left: 0;
    min-width: 240px;
    padding: 14px;
    border-radius: 16px;
    background: rgba(20,10,45,.6);
    backdrop-filter: blur(18px);
    border: 1px solid rgba(124,58,237,.35);
    display: flex;
    flex-direction: column;
    gap: 6px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: .3s;
}

.nav-item:hover > .dropdown-menu,
.panels-dropdown:hover > .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    padding: 10px 12px;
    border-radius: 10px;
    color: #dcdcff;
    text-decoration: none;
}

    .dropdown-menu a:hover {
        background: rgba(124,58,237,.15);
        color: #fff;
    }

.nav-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.pill-btn {
    padding: 9px 18px;
    border-radius: 999px;
    font-size: 14px;
    color: #fff;
    text-decoration: none;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,.15);
}

    .pill-btn.solid {
        background: linear-gradient(90deg,#7c3aed,#22d3ee);
        border: none;
    }

/* ================= HERO ================= */
.allgame-hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
    background: url("images/forest-bg.jpg") center/cover no-repeat;
    overflow: hidden;
}

.allgame-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(10,5,25,.75), rgba(5,3,15,1));
}

.allgame-hero::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    height: 180px;
    background: linear-gradient(to bottom, rgba(5,3,15,0), rgba(5,3,15,1));
}

.allgame-content {
    position: relative;
    z-index: 2;
    max-width: 820px;
}

.gradient-text {
    background: linear-gradient(90deg,#a78bfa,#38bdf8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ================= SECTION SPACING ================= */
.games-section, .solutions-section, .why-section, .play-section,
.support-highlight, .performance-section, .cta-section {
    padding: 100px 20px;
}

/* ================= CARDS ================= */
.game-card, .solution-card, .why-card, .perf-card, .support-highlight-card, .cta-box {
    backdrop-filter: blur(12px);
    background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 18px;
    padding: 24px;
    transition: .25s;
}

    .game-card:hover, .solution-card:hover, .why-card:hover, .perf-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 25px 60px rgba(0,0,0,.65);
    }

/* ================= BUTTONS ================= */
.explore-btn, .game-btn, .cta-button {
    border-radius: 999px;
    background: linear-gradient(90deg,#7c3aed,#22d3ee);
    color: #fff;
    padding: 12px 28px;
    text-decoration: none;
    display: inline-block;
    position: relative;
    overflow: hidden;
}

/* ================= EFFECTS ================= */
#particles-bg {
    position: fixed;
    inset: 0;
    z-index: -1;
}

.cursor-glow {
    position: fixed;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(34,211,238,.9), transparent 70%);
    pointer-events: none;
    z-index: 9999;
    mix-blend-mode: screen;
}

#scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    width: 0%;
    background: linear-gradient(90deg,#7c3aed,#22d3ee);
    z-index: 9999;
}

/* ================= HERO ================= */
.allgame-hero {
    position: relative;
    min-height: 92vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
    background: url("images/forest-bg.jpg") center/cover no-repeat;
    overflow: hidden;
}

/* ✨ TOP PURPLE ATMOSPHERE + CENTER LIGHT */
.allgame-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 20%, rgba(167,139,250,0.35), transparent 45%), linear-gradient( to bottom, rgba(30, 10, 60, 0.75) 0%, rgba(15, 8, 35, 0.65) 40%, rgba(5, 3, 15, 0.85) 75%, rgba(5, 3, 15, 1) 100% );
}

/* 🌫 SMOOTH BOTTOM FADE (NO HARD LINE) */
.allgame-hero::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 240px;
    background: linear-gradient( to bottom, rgba(5,3,15,0) 0%, rgba(5,3,15,0.5) 40%, rgba(5,3,15,1) 100% );
    pointer-events: none;
}

.allgame-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
}

    .allgame-content h1 {
        font-size: 64px;
        font-weight: 800;
        line-height: 1.1;
        margin-bottom: 18px;
        text-shadow: 0 0 35px rgba(124,58,237,0.35);
    }

.gradient-text {
    background: linear-gradient(90deg, #a78bfa, #38bdf8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-tags {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 22px;
    flex-wrap: wrap;
}

    .hero-tags span {
        background: rgba(15, 23, 42, 0.75);
        border: 1px solid rgba(255,255,255,0.15);
        padding: 6px 14px;
        border-radius: 999px;
        font-size: 12px;
        font-weight: 600;
        letter-spacing: .4px;
    }

.explore-btn {
    display: inline-block;
    padding: 16px 38px;
    border-radius: 14px;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    color: #fff;
    background: linear-gradient(90deg, #7c3aed, #2563eb);
    box-shadow: 0 0 35px rgba(124,58,237,.5);
    transition: all .25s ease;
}

    .explore-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 0 50px rgba(124,58,237,.9);
    }

/* Center single game */
.games-grid.single-game {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

/* Bigger featured card */
.minecraft-featured {
    width: 340px;
    padding: 20px;
    border-radius: 22px;
}

    /* Image taller like marketplace style */
    .minecraft-featured img {
        height: 220px;
        object-fit: cover;
        border-radius: 14px;
    }

    /* Bigger title */
    .minecraft-featured h3 {
        font-size: 22px;
        margin-top: 10px;
    }

    /* Bigger price */
    .minecraft-featured .game-price {
        font-size: 16px;
        margin: 10px 0 16px;
    }

    /* Stronger badge */
    .minecraft-featured .game-badge {
        font-size: 12px;
        padding: 6px 12px;
    }

/* ===== FEATURED GAMES SECTION LAYOUT ===== */
.featured-minecraft {
    padding: 120px 20px 140px;
}

.games-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Left aligned heading like reference */
.games-header {
    max-width: 600px;
    margin-bottom: 60px;
}

.games-title {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 10px;
}

    .games-title span {
        background: linear-gradient(90deg, #a78bfa, #38bdf8);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

.games-subtitle {
    font-size: 15px;
    opacity: .75;
}

/* Center card area */
.games-grid.single-game {
    display: flex;
    justify-content: center;
}

/* ===== FEATURED CARD STYLE ===== */
.minecraft-featured {
    width: 360px;
    padding: 22px;
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.02));
    border: 1px solid rgba(255,255,255,.08);
    backdrop-filter: blur(14px);
    box-shadow: 0 30px 80px rgba(0,0,0,.55);
    transition: transform .3s ease, box-shadow .3s ease;
}

    .minecraft-featured:hover {
        transform: translateY(-8px);
        box-shadow: 0 40px 100px rgba(0,0,0,.7), 0 0 30px rgba(124,58,237,.25);
    }

    /* Image like marketplace card */
    .minecraft-featured img {
        width: 100%;
        height: 220px;
        object-fit: cover;
        border-radius: 16px;
        margin-bottom: 14px;
    }

    /* Badge */
    .minecraft-featured .game-badge {
        position: absolute;
        top: 16px;
        left: 16px;
        background: linear-gradient(90deg, #7c3aed, #22d3ee);
        padding: 6px 12px;
        border-radius: 999px;
        font-size: 12px;
        font-weight: 700;
    }

    /* Text */
    .minecraft-featured h3 {
        font-size: 22px;
        margin-bottom: 6px;
    }

    .minecraft-featured .game-price {
        font-size: 16px;
        font-weight: 700;
        color: #22d3ee;
        margin-bottom: 16px;
    }

/* ===== FEATURE SECTION ===== */
.games-feature {
    padding: 140px 20px 120px;
    text-align: center;
    position: relative;
}

.games-feature-container {
    max-width: 900px;
    margin: 0 auto;
}

/* CENTERED HEADING */
.games-feature-text h2 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 12px;
    line-height: 1.1;
}

    .games-feature-text h2 span {
        background: linear-gradient(90deg, #a78bfa, #38bdf8);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

.games-feature-text p {
    font-size: 17px;
    opacity: .7;
    margin-bottom: 50px;
}

/* CARD WRAPPER */
.games-feature-card {
    display: flex;
    justify-content: center;
}

/* SMALLER FEATURED CARD */
.minecraft-featured {
    width: 320px; /* 🔥 reduced from 380 */
    padding: 20px;
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
    border: 1px solid rgba(255,255,255,.08);
    backdrop-filter: blur(14px);
    box-shadow: 0 35px 90px rgba(0,0,0,.55);
    transition: transform .3s ease, box-shadow .3s ease;
}

    .minecraft-featured:hover {
        transform: translateY(-8px);
        box-shadow: 0 45px 110px rgba(0,0,0,.65), 0 0 40px rgba(124,58,237,.25);
    }

    .minecraft-featured img {
        width: 100%;
        height: 190px; /* 🔥 reduced image height */
        object-fit: cover;
        border-radius: 16px;
        margin-bottom: 14px;
    }

    .minecraft-featured h3 {
        font-size: 20px;
        margin-bottom: 6px;
    }

    .minecraft-featured .game-price {
        font-size: 15px;
        font-weight: 700;
        color: #22d3ee;
        margin-bottom: 16px;
    }


/* ===== FEATURE SECTION LAYOUT ===== */
.games-feature {
    padding: 140px 20px;
    position: relative;
}

.games-feature-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 80px;
}

/* LEFT TEXT SIDE */
.games-feature-text {
    max-width: 520px;
}

    .games-feature-text h2 {
        font-size: 44px;
        font-weight: 800;
        margin-bottom: 14px;
        line-height: 1.1;
    }

        .games-feature-text h2 span {
            background: linear-gradient(90deg, #a78bfa, #38bdf8);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

    .games-feature-text p {
        font-size: 17px;
        opacity: .75;
    }

/* RIGHT CARD WRAPPER */
.games-feature-card {
    flex-shrink: 0;
}

/* ===== FEATURED CARD ===== */
.minecraft-featured {
    width: 380px;
    padding: 22px;
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
    border: 1px solid rgba(255,255,255,.08);
    backdrop-filter: blur(14px);
    box-shadow: 0 40px 100px rgba(0,0,0,.6);
    transition: transform .3s ease, box-shadow .3s ease;
}

    .minecraft-featured:hover {
        transform: translateY(-10px);
        box-shadow: 0 50px 120px rgba(0,0,0,.7), 0 0 40px rgba(124,58,237,.25);
    }

    .minecraft-featured img {
        width: 100%;
        height: 230px;
        object-fit: cover;
        border-radius: 18px;
        margin-bottom: 16px;
    }

    .minecraft-featured .game-badge {
        position: absolute;
        top: 16px;
        left: 16px;
        background: linear-gradient(90deg, #7c3aed, #22d3ee);
        padding: 6px 12px;
        border-radius: 999px;
        font-size: 12px;
        font-weight: 700;
    }

    .minecraft-featured h3 {
        font-size: 22px;
        margin-bottom: 6px;
    }

    .minecraft-featured .game-price {
        font-size: 16px;
        font-weight: 700;
        color: #22d3ee;
        margin-bottom: 18px;
    }

/* RESPONSIVE */
@media (max-width: 900px) {
    .games-feature-container {
        flex-direction: column;
        text-align: center;
    }

    .games-feature-text {
        max-width: 100%;
    }
}

/* ================= NEON SCROLLBAR ================= */

/* Width */
::-webkit-scrollbar {
    width: 12px;
}

/* Track (background) */
::-webkit-scrollbar-track {
    background: linear-gradient(180deg, #0a0718, #05030f);
    box-shadow: inset 0 0 10px rgba(124, 58, 237, 0.2);
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #7c3aed, #22d3ee);
    border-radius: 20px;
    border: 2px solid #05030f;
    box-shadow: 0 0 8px #7c3aed, 0 0 16px #22d3ee, 0 0 24px rgba(34, 211, 238, 0.6);
    transition: all 0.3s ease;
}

    /* Handle on hover */
    ::-webkit-scrollbar-thumb:hover {
        background: linear-gradient(180deg, #a78bfa, #67e8f9);
        box-shadow: 0 0 12px #a78bfa, 0 0 24px #22d3ee, 0 0 36px rgba(34, 211, 238, 0.9);
    }

/* Firefox support */
* {
    scrollbar-width: thin;
    scrollbar-color: #7c3aed #05030f;
}

/* ================= RGB PULSE SCROLLBAR ================= */

@keyframes rgbPulse {
    0% {
        box-shadow: 0 0 8px #7c3aed, 0 0 16px #7c3aed;
    }

    25% {
        box-shadow: 0 0 10px #22d3ee, 0 0 20px #22d3ee;
    }

    50% {
        box-shadow: 0 0 12px #4ade80, 0 0 24px #4ade80;
    }

    75% {
        box-shadow: 0 0 10px #f472b6, 0 0 20px #f472b6;
    }

    100% {
        box-shadow: 0 0 8px #7c3aed, 0 0 16px #7c3aed;
    }
}

@keyframes rgbGradient {
    0% {
        background: linear-gradient(180deg, #7c3aed, #22d3ee);
    }

    25% {
        background: linear-gradient(180deg, #22d3ee, #4ade80);
    }

    50% {
        background: linear-gradient(180deg, #4ade80, #f472b6);
    }

    75% {
        background: linear-gradient(180deg, #f472b6, #7c3aed);
    }

    100% {
        background: linear-gradient(180deg, #7c3aed, #22d3ee);
    }
}

/* Animated thumb */
::-webkit-scrollbar-thumb {
    border-radius: 20px;
    border: 2px solid #05030f;
    animation: rgbPulse 6s ease-in-out infinite, rgbGradient 8s linear infinite;
}

    /* Slightly stronger glow on hover */
    ::-webkit-scrollbar-thumb:hover {
        animation-duration: 3s, 4s;
    }

/* Firefox fallback (static color since Firefox doesn't support animation here) */
* {
    scrollbar-width: thin;
    scrollbar-color: #7c3aed #05030f;
}
