:root {
    --clr-bg: #0a0a12;
    --clr-bg-alt: #12111f;
    --clr-surface: rgba(143, 127, 226, 0.06);
    --clr-surface-hover: rgba(143, 127, 226, 0.12);
    --clr-border: rgba(143, 127, 226, 0.12);
    --clr-border-hover: rgba(143, 127, 226, 0.3);

    --clr-primary: #8f7fe2;
    --clr-primary-glow: rgba(143, 127, 226, 0.4);
    --clr-secondary: #a89cf0;
    --clr-accent: #7866cc;
    --clr-accent-glow: rgba(120, 102, 204, 0.4);

    --clr-text: #f0eef8;
    --clr-text-muted: rgba(240, 238, 248, 0.65);
    --clr-text-faint: rgba(240, 238, 248, 0.35);

    --clr-success: #4ade80;
    --clr-error: #f87171;
    --clr-warning: #facc15;
    --clr-info: #60a5fa;

    --grad-bg: linear-gradient(160deg, #0a0a12 0%, #12111f 40%, #0f0e1a 100%);
    --grad-primary: linear-gradient(135deg, var(--clr-primary) 0%, var(--clr-secondary) 50%, #c4b5fd 100%);
    --grad-accent: linear-gradient(135deg, var(--clr-accent) 0%, var(--clr-primary) 100%);
    --grad-glass: linear-gradient(135deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0));
    --grad-shine: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, 0.06) 50%, transparent 70%);

    --radius-sm: 10px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --radius-pill: 999px;

    --font-heading: 'Tajwal', sans-serif;
    --font-body: 'Inter', sans-serif;

    --trans-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --trans-base: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --trans-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    --trans-bounce: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    --trans-spring: 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);

    --z-bg: -1;
    --z-canvas: 0;
    --z-content: 10;
    --z-header: 100;
    --z-modal: 500;
    --z-toast: 1000;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background: var(--clr-bg);
    background-image: var(--grad-bg);
    background-attachment: fixed;
    color: var(--clr-text);
    font-family: var(--font-body);
    line-height: 1.65;
    overflow-x: hidden;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--trans-base);
}

ul {
    list-style: none;
}

button,
input {
    font-family: inherit;
}

img {
    max-width: 100%;
    height: auto;
}

/* ============================
   ACCENT GRADIENT TEXT
   ============================ */
.Accent {
    background: var(--grad-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

/* ============================
   CONTAINER
   ============================ */
.Container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ============================
   PARTICLE CANVAS
   ============================ */
#ParticleCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: var(--z-canvas);
    pointer-events: none;
}

/* ============================
   AMBIENT GLOW ORBS (background)
   ============================ */
body::before,
body::after {
    content: '';
    position: fixed;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.12;
    pointer-events: none;
    z-index: 0;
    animation: orbFloat 20s ease-in-out infinite alternate;
}

body::before {
    width: 600px;
    height: 600px;
    background: var(--clr-primary);
    top: -200px;
    right: -200px;
}

body::after {
    width: 500px;
    height: 500px;
    background: var(--clr-accent);
    bottom: -150px;
    left: -150px;
    animation-delay: -10s;
}

@keyframes orbFloat {
    0% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(40px, 30px) scale(1.1);
    }

    100% {
        transform: translate(-20px, -20px) scale(0.95);
    }
}

/* ============================
   GLASS CARD
   ============================ */
.GlassCard {
    background: linear-gradient(135deg, rgba(143, 127, 226, 0.08), rgba(143, 127, 226, 0.02));
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-lg);
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

.GlassCard::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--grad-shine);
    transition: left 0.8s ease;
    z-index: 0;
}

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

/* ============================
   HEADER
   ============================ */
.Header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: var(--z-header);
    padding: 1.25rem 0;
    background-color: transparent;
    border-bottom: 1px solid transparent;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.Header--scrolled {
    padding: 0.75rem 0;
    background: rgba(10, 10, 18, 0.85);
    backdrop-filter: blur(24px) saturate(1.4);
    -webkit-backdrop-filter: blur(24px) saturate(1.4);
    border-bottom: 1px solid var(--clr-border);
    box-shadow: 0 4px 40px rgba(0, 0, 0, 0.4);
}

.Nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.NavLogo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    position: relative;
    z-index: 2;
}

.NavLogoImg {
    border-radius: 50%;
    box-shadow: 0 0 20px var(--clr-primary-glow);
    transition: var(--trans-spring);
}

.NavLogo:hover .NavLogoImg {
    transform: rotate(15deg) scale(1.15);
    box-shadow: 0 0 30px var(--clr-primary-glow);
}

.NavLogoText {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    direction: ltr;
    display: inline-block;
}

.NavLinks {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.NavLink {
    font-weight: 500;
    color: var(--clr-text-muted);
    position: relative;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-sm);
    transition: var(--trans-base);
}

.NavLink::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 60%;
    height: 2px;
    background: var(--grad-primary);
    border-radius: 2px;
    transition: var(--trans-spring);
}

.NavLink:hover {
    color: var(--clr-text);
    background: rgba(143, 127, 226, 0.06);
}

.NavLinkActive {
    color: var(--clr-text);
}

.NavLink:hover::after,
.NavLinkActive::after {
    transform: translateX(-50%) scaleX(1);
}

.NavMobileToggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 30px;
    height: 24px;
    position: relative;
    z-index: 2;
}

.HamburgerLine {
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--clr-text);
    border-radius: 2px;
    transition: var(--trans-bounce);
}

.HamburgerLine:nth-child(1) {
    top: 0;
}

.HamburgerLine:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
}

.HamburgerLine:nth-child(3) {
    bottom: 0;
}

.NavMobileToggle.active .HamburgerLine:nth-child(1) {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
}

.NavMobileToggle.active .HamburgerLine:nth-child(2) {
    opacity: 0;
    transform: translateY(-50%) scaleX(0);
}

.NavMobileToggle.active .HamburgerLine:nth-child(3) {
    bottom: 50%;
    transform: translateY(50%) rotate(-45deg);
}

/* ============================
   BUTTONS
   ============================ */
.Btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 0.875rem 1.75rem;
    border-radius: var(--radius-pill);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    border: none;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
    text-align: center;
    letter-spacing: 0.01em;
}

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

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

.Btn:active {
    transform: scale(0.95);
    transition-duration: 0.1s;
}

.BtnLg {
    padding: 1.125rem 2.25rem;
    font-size: 1.125rem;
}

.BtnShop {
    background: var(--grad-primary);
    color: white;
    box-shadow:
        0 4px 20px var(--clr-primary-glow),
        0 0 0 0 transparent;
}

.BtnShop:hover {
    box-shadow:
        0 8px 30px var(--clr-primary-glow),
        0 0 0 4px rgba(143, 127, 226, 0.15);
    transform: translateY(-3px) scale(1.02);
}

.BtnDiscord {
    background: linear-gradient(135deg, #5865F2 0%, #7289DA 100%);
    color: white;
    box-shadow: 0 4px 20px rgba(88, 101, 242, 0.35);
}

.BtnDiscord:hover {
    box-shadow:
        0 8px 30px rgba(88, 101, 242, 0.45),
        0 0 0 4px rgba(88, 101, 242, 0.15);
    transform: translateY(-3px) scale(1.02);
}

.BtnOutline {
    background: transparent;
    border: 1px solid var(--clr-border);
    color: var(--clr-text);
}

.BtnOutline:hover {
    background: var(--clr-surface-hover);
    border-color: var(--clr-border-hover);
}

/* ============================
   HERO SECTION
   ============================ */
.Hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 5rem;
    z-index: var(--z-content);
    overflow: hidden;
}

/* Animated gradient mesh behind hero */
.Hero::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle,
            rgba(143, 127, 226, 0.12) 0%,
            rgba(120, 102, 204, 0.06) 40%,
            transparent 70%);
    animation: heroGlow 8s ease-in-out infinite alternate;
    pointer-events: none;
}

@keyframes heroGlow {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.6;
    }

    100% {
        transform: translate(-50%, -50%) scale(1.3);
        opacity: 1;
    }
}

.HeroContent {
    max-width: 800px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
}

.HeroBadge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.5rem 1.25rem;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 2.5rem;
    border-radius: var(--radius-pill);
    cursor: default;
}

.HeroBadgeDot {
    width: 8px;
    height: 8px;
    min-width: 8px;
    min-height: 8px;
    background: var(--clr-success);
    border-radius: 50%;
    display: inline-block;
    position: relative;
    flex-shrink: 0;
    box-shadow: 0 0 8px var(--clr-success);
}

/* Dot pulse ring animation */
.HeroBadgeDot::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: var(--clr-success);
    border-radius: 50%;
    animation: dotPulseRing 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes dotPulseRing {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.8;
    }

    100% {
        transform: translate(-50%, -50%) scale(3);
        opacity: 0;
    }
}

/* ============================
   HERO ICON with orbital rings
   ============================ */
.HeroIconWrapper {
    position: relative;
    margin-bottom: 2.5rem;
    width: 180px;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Orbital ring 1 */
.HeroIconWrapper::before {
    content: '';
    position: absolute;
    top: -15px;
    left: -15px;
    right: -15px;
    bottom: -15px;
    border: 1px solid rgba(143, 127, 226, 0.2);
    border-radius: 50%;
    animation: orbitalSpin 12s linear infinite;
    border-top-color: var(--clr-primary);
    border-right-color: transparent;
}

/* Orbital ring 2 */
.HeroIconWrapper::after {
    content: '';
    position: absolute;
    top: -30px;
    left: -30px;
    right: -30px;
    bottom: -30px;
    border: 1px solid rgba(143, 127, 226, 0.1);
    border-radius: 50%;
    animation: orbitalSpin 20s linear infinite reverse;
    border-bottom-color: var(--clr-secondary);
    border-left-color: transparent;
}

@keyframes orbitalSpin {
    from {
        transform: rotate(0deg);
    }

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

.HeroIcon {
    position: relative;
    z-index: 2;
    border-radius: 50%;
    box-shadow:
        0 0 40px var(--clr-accent-glow),
        0 0 80px rgba(143, 127, 226, 0.15);
    animation: floatIcon 5s cubic-bezier(0.45, 0.05, 0.55, 0.95) infinite alternate;
    width: 150px;
    height: 150px;
}

@keyframes floatIcon {
    0% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-10px) rotate(1deg);
    }

    100% {
        transform: translateY(-18px) rotate(-1deg);
    }
}

.HeroTitle {
    font-size: clamp(2.8rem, 6vw + 1rem, 5rem);
    margin-bottom: 1.25rem;
    letter-spacing: -1.5px;
    direction: ltr;
    display: inline-block;
    line-height: 1.1;
}

.HeroSubtitle {
    font-size: clamp(1rem, 2vw + 0.5rem, 1.3rem);
    color: var(--clr-text-muted);
    max-width: 580px;
    margin-bottom: 3rem;
    line-height: 1.7;
}

.HeroActions {
    display: flex;
    gap: 1.25rem;
    flex-wrap: wrap;
    justify-content: center;
}

/* ============================
   SCROLL INDICATOR
   ============================ */
.HeroScrollIndicator {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    opacity: 0.6;
    animation: scrollBounce 2.5s ease-in-out infinite;
    transition: opacity var(--trans-base);
}

.HeroScrollIndicator:hover {
    opacity: 1;
}

.ScrollMouse {
    width: 24px;
    height: 38px;
    border: 2px solid var(--clr-text-muted);
    border-radius: 14px;
    position: relative;
}

.ScrollMouseWheel {
    width: 3px;
    height: 8px;
    background: var(--clr-text);
    border-radius: 2px;
    position: absolute;
    top: 7px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 2s ease-in-out infinite;
}

.ScrollText {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--clr-text-muted);
}

@keyframes scrollBounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translate(-50%, 0);
    }

    40% {
        transform: translate(-50%, -8px);
    }

    60% {
        transform: translate(-50%, -4px);
    }
}

@keyframes scrollWheel {
    0% {
        transform: translate(-50%, 0);
        opacity: 1;
    }

    100% {
        transform: translate(-50%, 14px);
        opacity: 0;
    }
}

/* ============================
   SECTION HEADERS
   ============================ */
.SectionHeader {
    text-align: center;
    margin-bottom: 4.5rem;
}

.SectionLabel {
    display: inline-block;
    color: var(--clr-primary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.8rem;
    margin-bottom: 0.75rem;
    position: relative;
    padding: 0.25rem 0;
}

.SectionLabel::before,
.SectionLabel::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 30px;
    height: 1px;
    background: var(--grad-primary);
    opacity: 0.5;
}

.SectionLabel::before {
    right: calc(100% + 12px);
}

.SectionLabel::after {
    left: calc(100% + 12px);
}

.SectionTitle {
    font-size: clamp(2rem, 4vw, 3.2rem);
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
}

.SectionDesc {
    color: var(--clr-text-muted);
    max-width: 520px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.7;
}

/* ============================
   FEATURES SECTION
   ============================ */
.Features {
    padding: 8rem 0;
    position: relative;
    z-index: var(--z-content);
}

.FeaturesGrid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
}

.FeatureCard {
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    cursor: default;
    position: relative;
}

/* Subtle glow on hover */
.FeatureCard::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-lg);
    opacity: 0;
    background: radial-gradient(600px circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
            rgba(143, 127, 226, 0.1),
            transparent 40%);
    transition: opacity var(--trans-base);
    pointer-events: none;
    z-index: 0;
}

.FeatureCard:hover::after {
    opacity: 1;
}

.FeatureCard:hover {
    transform: translateY(-8px);
    border-color: var(--clr-border-hover);
    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.35),
        0 0 30px rgba(143, 127, 226, 0.08);
}

.FeatureCardIconWrap {
    width: 68px;
    height: 68px;
    margin: 0 auto 1.75rem;
    background: var(--grad-primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 10px 25px var(--clr-primary-glow);
    transform: rotate(8deg);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    z-index: 1;
}

.FeatureCard:hover .FeatureCardIconWrap {
    transform: rotate(0) scale(1.12);
    box-shadow: 0 14px 35px var(--clr-primary-glow);
}

.FeatureCardTitle {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    position: relative;
    z-index: 1;
}

.FeatureCardDesc {
    color: var(--clr-text-muted);
    font-size: 0.9375rem;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

/* ============================
   PRODUCTS PAGE
   ============================ */
.PageProducts .Products {
    padding-top: 10rem;
    padding-bottom: 6rem;
    min-height: 100vh;
}

.ProductsGrid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.LoadingText {
    grid-column: 1 / -1;
    text-align: center;
    font-size: 1.2rem;
    color: var(--clr-primary);
    padding: 3rem;
    animation: loadingPulse 1.5s ease-in-out infinite;
}

@keyframes loadingPulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.4;
    }
}

.ProductCard {
    position: relative;
    border-radius: var(--radius-lg);
    background: linear-gradient(160deg, rgba(18, 17, 31, 0.9), rgba(10, 10, 18, 0.9));
    border: 1px solid var(--clr-border);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    display: flex;
    flex-direction: column;
    padding: 2.25rem;
    height: 100%;
    overflow: hidden;
}

/* Top gradient accent line */
.ProductCard::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--grad-primary);
    opacity: 0;
    transition: opacity var(--trans-base);
}

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

.ProductCard:hover {
    transform: translateY(-10px);
    border-color: var(--clr-border-hover);
    box-shadow:
        0 25px 50px rgba(0, 0, 0, 0.4),
        0 0 30px rgba(143, 127, 226, 0.1);
}

.ProductCardHeader {
    text-align: center;
    margin-bottom: 1.5rem;
    position: relative;
}

.ProductCardBadge {
    position: absolute;
    top: -1rem;
    right: -1rem;
    background: var(--grad-accent);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.3rem 0.85rem;
    border-radius: var(--radius-pill);
    box-shadow: 0 4px 12px var(--clr-accent-glow);
    animation: badgePulse 3s ease-in-out infinite;
}

@keyframes badgePulse {

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

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

.ProductCardIcon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem;
}

.ProductCardIcon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 0 15px rgba(143, 127, 226, 0.25));
    transition: var(--trans-bounce);
}

.ProductCard:hover .ProductCardIcon img {
    transform: scale(1.1);
}

.ProductCardTitle {
    font-size: 1.5rem;
    margin-bottom: 0.25rem;
}

.ProductCardDuration {
    color: var(--clr-primary);
    font-size: 0.875rem;
    font-weight: 600;
}

.ProductCardPrice {
    text-align: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--clr-border);
}

.ProductCardPriceAmount {
    font-size: 2.75rem;
    font-weight: 800;
    font-family: var(--font-heading);
    background: var(--grad-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ProductCardPriceCurrency {
    font-size: 1rem;
    color: var(--clr-text-muted);
}

.ProductCardActions {
    margin-top: auto;
}

.BtnView {
    width: 100%;
    background: var(--clr-surface);
    border: 1px solid var(--clr-border);
    color: var(--clr-text);
}

.BtnView:hover {
    background: var(--clr-surface-hover);
    border-color: var(--clr-primary);
    box-shadow: 0 0 20px rgba(143, 127, 226, 0.15);
}

/* ============================
   SHOWCASE / STATS SECTION
   ============================ */
.Showcase {
    padding: 8rem 0;
    position: relative;
    z-index: var(--z-content);
}

.ShowcaseStats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.StatCard {
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    cursor: default;
}

.StatCard:hover {
    transform: translateY(-5px);
    border-color: var(--clr-border-hover);
}

.StatCardNumber {
    font-size: 3.25rem;
    font-weight: 900;
    font-family: var(--font-heading);
    background: var(--grad-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.StatCardSuffix {
    font-size: 1.5rem;
    background: var(--grad-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.StatCardLabel {
    display: block;
    color: var(--clr-text-muted);
    font-size: 0.95rem;
    margin-top: 0.75rem;
    letter-spacing: 0.5px;
}

/* ============================
   SHOWCASE BANNER
   ============================ */
.ShowcaseBanner {
    border-radius: var(--radius-xl);
    overflow: hidden;
    position: relative;
    box-shadow:
        0 25px 60px rgba(0, 0, 0, 0.5),
        0 0 0 1px var(--clr-border);
    transition: var(--trans-slow);
}

.ShowcaseBanner:hover {
    transform: scale(1.01);
    box-shadow:
        0 30px 70px rgba(0, 0, 0, 0.55),
        0 0 40px rgba(143, 127, 226, 0.1);
}

.ShowcaseBannerImg {
    width: 100%;
    height: auto;
    display: block;
    filter: brightness(0.8) contrast(1.15) saturate(1.1);
    transition: filter var(--trans-slow);
}

.ShowcaseBanner:hover .ShowcaseBannerImg {
    filter: brightness(0.85) contrast(1.2) saturate(1.2);
}

.ShowcaseBannerOverlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, var(--clr-bg) 0%, transparent 50%);
}

/* ============================
   CTA SECTION
   ============================ */
.Cta {
    padding: 8rem 0;
    position: relative;
    z-index: var(--z-content);
}

.CtaContent {
    text-align: center;
    padding: 5rem 3rem;
    position: relative;
    overflow: hidden;
}

/* Animated shimmer on CTA card */
.CtaContent::after {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: var(--radius-lg);
    background: conic-gradient(from var(--cta-angle, 0deg),
            transparent,
            rgba(143, 127, 226, 0.15),
            transparent,
            transparent);
    z-index: -1;
    animation: ctaRotate 6s linear infinite;
}

@keyframes ctaRotate {
    to {
        --cta-angle: 360deg;
    }
}

@property --cta-angle {
    syntax: '<angle>';
    initial-value: 0deg;
    inherits: false;
}

.CtaTicket {
    position: absolute;
    top: -50px;
    right: -50px;
    opacity: 0.08;
    transform: rotate(15deg);
    pointer-events: none;
}

.CtaTitle {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1.25rem;
}

.CtaDesc {
    color: var(--clr-text-muted);
    max-width: 600px;
    margin: 0 auto 3rem;
    font-size: 1.125rem;
    line-height: 1.7;
}

.CtaActions {
    display: flex;
    justify-content: center;
}

/* ============================
   FOOTER
   ============================ */
.Footer {
    background: rgba(0, 0, 0, 0.4);
    border-top: 1px solid var(--clr-border);
    padding: 2rem 0;
    position: relative;
    z-index: var(--z-content);
}

.FooterInner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.FooterBrand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.FooterBrandText {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 800;
    direction: ltr;
    display: inline-block;
}

.FooterCopy {
    color: var(--clr-text-faint);
    font-size: 0.875rem;
}

.FooterSocials {
    display: flex;
    gap: 0.75rem;
}

.FooterSocial {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--clr-surface);
    border: 1px solid var(--clr-border);
    color: var(--clr-text-muted);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.FooterSocial:hover {
    background: #5865F2;
    border-color: #5865F2;
    color: white;
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 20px rgba(88, 101, 242, 0.35);
}

/* ============================
   MODAL OVERLAY
   ============================ */
.ModalOverlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: var(--z-modal);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.ModalOverlay.active {
    opacity: 1;
    visibility: visible;
}

.ModalContent {
    width: 100%;
    max-width: 500px;
    padding: 2.5rem;
    position: relative;
    transform: scale(0.9) translateY(30px);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    border-radius: var(--radius-lg);
    background: linear-gradient(160deg, rgba(18, 17, 31, 0.98), rgba(10, 10, 18, 0.98));
    border: 1px solid var(--clr-border);
    box-shadow:
        0 25px 60px rgba(0, 0, 0, 0.7),
        0 0 40px rgba(143, 127, 226, 0.08);
}

.ModalOverlay.active .ModalContent {
    transform: scale(1) translateY(0);
}

.ModalClose {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--clr-surface);
    border: 1px solid var(--clr-border);
    color: var(--clr-text-muted);
    width: 38px;
    height: 38px;
    border-radius: 50%;
    font-size: 1.4rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.ModalClose:hover {
    background: var(--clr-error);
    border-color: var(--clr-error);
    color: white;
    transform: rotate(90deg) scale(1.1);
}

.ModalProductIcon {
    width: 72px;
    height: 72px;
    margin: 0 auto 1.5rem;
}

.ModalProductIcon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 0 20px rgba(143, 127, 226, 0.3));
}

.ModalProductName {
    font-size: 1.75rem;
    text-align: center;
    margin-bottom: 0.5rem;
}

.ModalProductDesc {
    text-align: center;
    color: var(--clr-text-muted);
    font-size: 0.9375rem;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.ModalFeatures {
    margin-bottom: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--clr-border);
}

.ModalFeatures li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.85rem;
    font-size: 0.9375rem;
    color: var(--clr-text-muted);
    transition: color var(--trans-fast);
}

.ModalFeatures li:hover {
    color: var(--clr-text);
}

.ModalFeatures li svg {
    color: var(--clr-success);
    flex-shrink: 0;
    margin-top: 3px;
}

.ModalBuyWrap {
    text-align: center;
}

.ModalBuyBtn {
    width: 100%;
    padding: 1.125rem;
    font-size: 1.125rem;
}

/* ============================
   PROMPT OVERLAY
   ============================ */
.PromptOverlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.88);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    z-index: var(--z-modal);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.PromptOverlay.active {
    opacity: 1;
    visibility: visible;
}

.PromptCard {
    width: 100%;
    max-width: 420px;
    padding: 3rem 2.5rem;
    text-align: center;
    transform: translateY(30px) scale(0.95);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    border-radius: var(--radius-lg);
    background: linear-gradient(160deg, rgba(18, 17, 31, 0.98), rgba(10, 10, 18, 0.98));
    border: 1px solid var(--clr-border);
    box-shadow:
        0 25px 60px rgba(0, 0, 0, 0.7),
        0 0 40px rgba(143, 127, 226, 0.08);
}

.PromptOverlay.active .PromptCard {
    transform: translateY(0) scale(1);
}

.PromptDiscordIcon {
    width: 68px;
    height: 68px;
    background: linear-gradient(135deg, #5865F2 0%, #7289DA 100%);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.75rem;
    box-shadow: 0 12px 30px rgba(88, 101, 242, 0.35);
    color: white;
    transition: var(--trans-bounce);
}

.PromptDiscordIcon:hover {
    transform: rotate(10deg) scale(1.05);
}

.PromptTitle {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.PromptSubtitle {
    color: var(--clr-text-muted);
    font-size: 0.875rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.PromptInputGroup {
    position: relative;
    margin-bottom: 2rem;
}


.PromptInput {
    width: 100%;
    padding: 1rem;
    text-align: center;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-sm);
    color: var(--clr-text);
    font-size: 1rem;
    outline: none;
    transition: all 0.3s ease;
}

.PromptInput:focus {
    border-color: var(--clr-primary);
    box-shadow: 0 0 0 4px rgba(143, 127, 226, 0.15);
    background: rgba(0, 0, 0, 0.5);
}



.PromptInput::placeholder {
    color: var(--clr-text-faint);
}

.PromptActions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.PromptActions button {
    width: 100%;
}

/* ============================
   PAYMENT RESULT
   ============================ */
.PaymentResult {
    text-align: center;
}

.PaymentResultIcon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--clr-success), #22c55e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2.5rem;
    font-weight: bold;
    color: white;
    box-shadow: 0 10px 30px rgba(74, 222, 128, 0.35);
    animation: paymentPop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes paymentPop {
    0% {
        transform: scale(0);
        opacity: 0;
    }

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

.PaymentResultTitle {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.PaymentResultDesc {
    color: var(--clr-text-muted);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.PaymentIdBox {
    background: rgba(0, 0, 0, 0.4);
    border: 1px dashed var(--clr-border);
    padding: 1.125rem;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    cursor: pointer;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
}

.PaymentIdBox:hover {
    border-color: var(--clr-primary);
    background: var(--clr-surface-hover);
    transform: scale(1.02);
}

.PaymentIdText {
    font-family: 'Courier New', monospace;
    font-size: 1.125rem;
    letter-spacing: 2px;
    color: var(--clr-primary);
}

/* ============================
   NOTIFICATIONS
   ============================ */
.NotificationContainer {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: var(--z-toast);
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    pointer-events: none;
}

.Notification {
    background: linear-gradient(135deg, rgba(18, 17, 31, 0.95), rgba(10, 10, 18, 0.95));
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--clr-border);
    padding: 1rem 1.25rem;
    border-radius: var(--radius-md);
    display: flex;
    align-items: flex-start;
    gap: 0.875rem;
    width: 340px;
    pointer-events: auto;
    box-shadow:
        0 12px 40px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.03);
    position: relative;
    overflow: hidden;
    animation: notifSlideIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.Notification.exiting {
    animation: notifSlideOut 0.4s ease forwards;
}

@keyframes notifSlideIn {
    from {
        transform: translateX(120%) scale(0.8);
        opacity: 0;
    }

    to {
        transform: translateX(0) scale(1);
        opacity: 1;
    }
}

@keyframes notifSlideOut {
    from {
        transform: translateX(0) scale(1);
        opacity: 1;
    }

    to {
        transform: translateX(120%) scale(0.8);
        opacity: 0;
    }
}

.NotifIconWrap {
    margin-top: 2px;
    flex-shrink: 0;
}

.Notification.success .NotifIconWrap {
    color: var(--clr-success);
}

.Notification.error .NotifIconWrap {
    color: var(--clr-error);
}

.Notification.info .NotifIconWrap {
    color: var(--clr-info);
}

.Notification.warning .NotifIconWrap {
    color: var(--clr-warning);
}

/* Left accent border based on type */
.Notification.success {
    border-left: 3px solid var(--clr-success);
}

.Notification.error {
    border-left: 3px solid var(--clr-error);
}

.Notification.info {
    border-left: 3px solid var(--clr-info);
}

.Notification.warning {
    border-left: 3px solid var(--clr-warning);
}

.NotifBody {
    flex: 1;
    min-width: 0;
}

.NotifTitle {
    font-weight: 700;
    margin-bottom: 0.2rem;
    font-size: 0.9375rem;
}

.NotifMessage {
    font-size: 0.8125rem;
    color: var(--clr-text-muted);
    line-height: 1.5;
}

.NotifClose {
    background: none;
    border: none;
    color: var(--clr-text-faint);
    cursor: pointer;
    font-size: 1.25rem;
    line-height: 1;
    padding: 4px;
    border-radius: 4px;
    transition: all var(--trans-fast);
}

.NotifClose:hover {
    color: var(--clr-text);
    background: rgba(255, 255, 255, 0.05);
}

.NotifProgress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    background: var(--clr-primary);
    width: 100%;
    transform-origin: left;
    animation: notifProgress 4.5s linear forwards;
}

.Notification.success .NotifProgress {
    background: var(--clr-success);
}

.Notification.error .NotifProgress {
    background: var(--clr-error);
}

.Notification.info .NotifProgress {
    background: var(--clr-info);
}

.Notification.warning .NotifProgress {
    background: var(--clr-warning);
}

@keyframes notifProgress {
    from {
        transform: scaleX(1);
    }

    to {
        transform: scaleX(0);
    }
}

/* ============================
   SCROLL ANIMATIONS
   ============================ */
[data-animate] {
    opacity: 0;
    transition: opacity 0.7s ease-out, transform 0.7s cubic-bezier(0.175, 0.885, 0.32, 1.15);
    will-change: opacity, transform;
}

[data-animate="fade-up"] {
    transform: translateY(50px);
}

[data-animate="fade-down"] {
    transform: translateY(-50px);
}

[data-animate="zoom-in"] {
    transform: scale(0.75);
}

[data-animate].visible {
    opacity: 1;
    transform: translate(0) scale(1);
}

/* ============================
   CUSTOM SCROLLBAR
   ============================ */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--clr-bg);
}

::-webkit-scrollbar-thumb {
    background: rgba(143, 127, 226, 0.25);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(143, 127, 226, 0.4);
}

/* ============================
   SELECTION
   ============================ */
::selection {
    background: rgba(143, 127, 226, 0.3);
    color: white;
}

/* ============================
   RESPONSIVE
   ============================ */
@media (max-width: 768px) {
    .NavLinks {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(10, 10, 18, 0.97);
        backdrop-filter: blur(24px);
        -webkit-backdrop-filter: blur(24px);
        flex-direction: column;
        padding: 2rem;
        gap: 0.5rem;
        transform: translateY(-20px);
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        border-bottom: 1px solid var(--clr-border);
    }

    .NavLinks.open {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .NavMobileToggle {
        display: block;
    }

    .NavLink {
        width: 100%;
        text-align: center;
        padding: 0.75rem 1rem;
    }

    .HeroTitle {
        font-size: 2.5rem;
    }

    .HeroIconWrapper {
        width: 140px;
        height: 140px;
    }

    .HeroIcon {
        width: 110px;
        height: 110px;
    }

    .HeroActions {
        flex-direction: column;
        width: 100%;
        padding: 0 1rem;
    }

    .HeroActions .Btn {
        width: 100%;
    }

    .NotificationContainer {
        bottom: 1rem;
        right: 1rem;
        left: 1rem;
    }

    .Notification {
        width: 100%;
    }

    .CtaContent {
        padding: 3rem 1.5rem;
    }

    .SectionLabel::before,
    .SectionLabel::after {
        display: none;
    }

    body::before,
    body::after {
        display: none;
    }
}

@media (max-width: 480px) {
    .HeroTitle {
        font-size: 2rem;
    }

    .StatCardNumber {
        font-size: 2.5rem;
    }

    .FeaturesGrid {
        grid-template-columns: 1fr;
    }

    .ProductsGrid {
        grid-template-columns: 1fr;
    }
}