/* ================================================
   PRICING SECTION — Container & Background
   ================================================ */
.pricing-section {
    position: relative;
    width: 100%;
    padding: 80px 0;
    background: #0B0B0F;
    overflow: hidden;
    /* Subtle top/bottom gradient blend into site bg */
    background-image:
        linear-gradient(180deg, var(--bg-primary, #090014) 0%, #0B0B0F 8%, #0B0B0F 92%, var(--bg-primary, #090014) 100%);
}

@media (min-width: 1024px) {
    .pricing-section {
        padding: 120px 0;
    }
}

/* ---- Blurred GIF Background ---- */
.pricing-section__bg-gif {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.pricing-section__bg-gif img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(15px) brightness(0.25);
    -webkit-filter: blur(15px) brightness(0.25);
    transform: scale(1.1);
    /* prevent blur edge bleed */
    opacity: 0.6;
}

/* ---- Container ---- */
.pricing-section__container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* ================================================
   STATS BAR
   ================================================ */
.pricing-section__stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    width: 100%;
    max-width: 1100px;
    padding: 1.2rem 2rem;
    margin-bottom: 3rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    position: relative;
    z-index: 1;
}

.pricing-stat {
    display: flex;
    align-items: center;
    gap: 10px;
}

.pricing-stat__icon {
    color: var(--accent-purple, #8b5cf6);
    flex-shrink: 0;
}

.pricing-stat__num {
    display: block;
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--accent-purple, #8b5cf6);
    line-height: 1.2;
}

.pricing-stat__desc {
    display: block;
    font-size: 0.7rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 1px;
    text-transform: uppercase;
}

@media (max-width: 767px) {
    .pricing-section__stats {
        flex-wrap: wrap;
        gap: 1.5rem;
        padding: 1rem 1.2rem;
        justify-content: space-around;
    }

    .pricing-stat {
        min-width: 40%;
    }
}

@media (max-width: 400px) {
    .pricing-stat {
        min-width: 100%;
        justify-content: center;
    }
}

/* ================================================
   BACKGROUND TYPOGRAPHY — "Pricing"
   ================================================ */
.pricing-section__bg-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: clamp(8rem, 25vw, 24rem);
    font-weight: 900;
    color: rgba(255, 255, 255, 0.12);
    filter: blur(50px);
    -webkit-filter: blur(50px);
    white-space: nowrap;
    pointer-events: none;
    user-select: none;
    z-index: 0;
    line-height: 1;
    letter-spacing: -8px;
}

/* ================================================
   HEADER
   ================================================ */
.pricing-section__header {
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.pricing-section__subtitle {
    color: var(--text-highlight, #d8b4fe);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    letter-spacing: 2px;
    font-weight: 500;
}

.pricing-section__title {
    font-size: clamp(1.8rem, 5vw, 3rem);
    font-weight: 900;
    text-transform: uppercase;
    color: #fff;
}

/* ================================================
   TOGGLE WRAP
   ================================================ */
.pricing-section__toggle-wrap {
    display: flex;
    justify-content: center;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

/* ================================================
   CAROUSEL — CSS Scroll-Snap
   ================================================ */
.pricing-carousel__track {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
    padding: 2rem 1.5rem 3rem;
    width: 100%;
    position: relative;
    z-index: 1;
    cursor: grab;

    /* Hide scrollbar */
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.pricing-carousel__track:active {
    cursor: grabbing;
}

.pricing-carousel__track::-webkit-scrollbar {
    display: none;
}

/* ---- Arrow Navigation ---- */
.pricing-carousel__arrows {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.pricing-carousel__arrow {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    -webkit-tap-highlight-color: transparent;
    line-height: 1;
}

.pricing-carousel__arrow:hover:not(:disabled) {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.pricing-carousel__arrow:disabled {
    opacity: 0.25;
    cursor: not-allowed;
}

/* ---- Mobile: 1 card centered with peek ---- */
@media (max-width: 767px) {
    .pricing-carousel__track {
        /* Side padding to center the first/last card */
        scroll-padding: 0 calc(50vw - 150px);
        padding-left: calc(50vw - 150px);
        padding-right: calc(50vw - 150px);
        gap: 1rem;
    }

    .pricing-carousel__track .pricing-card {
        min-width: 280px;
        max-width: 300px;
    }
}

/* ---- Tablet: 2 cards visible ---- */
@media (min-width: 768px) and (max-width: 1023px) {
    .pricing-carousel__track {
        scroll-padding: 0 2rem;
        padding-left: 2rem;
        padding-right: 2rem;
        gap: 1.5rem;
    }

    .pricing-carousel__track .pricing-card {
        min-width: calc(50% - 1.5rem);
        max-width: calc(50% - 0.75rem);
    }
}

/* ---- Desktop: 3 cards visible ---- */
@media (min-width: 1024px) {
    .pricing-carousel__track {
        max-width: 1300px;
        margin: 0 auto;
        scroll-padding: 0 3rem;
        padding-left: 3rem;
        padding-right: 3rem;
        gap: 2rem;
    }

    .pricing-carousel__track .pricing-card {
        min-width: calc(33.333% - 1.5rem);
        max-width: calc(33.333% - 1rem);
    }
}

/* ================================================
   DOT INDICATORS
   ================================================ */
.pricing-carousel__dots {
    display: flex;
    gap: 8px;
    justify-content: center;
    position: relative;
    z-index: 1;
    margin-top: 0.5rem;
}

.pricing-carousel__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    padding: 0;
    cursor: pointer;
    transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
    -webkit-tap-highlight-color: transparent;
}

.pricing-carousel__dot--active {
    width: 28px;
    border-radius: 10px;
    background: var(--accent-purple, #8b5cf6);
    box-shadow: 0 0 12px rgba(139, 92, 246, 0.5);
}

.pricing-carousel__dot:hover:not(.pricing-carousel__dot--active) {
    background: rgba(255, 255, 255, 0.4);
}

.pricing-carousel__dot:focus-visible {
    outline: 2px solid var(--accent-purple, #8b5cf6);
    outline-offset: 3px;
}

/* ================================================
   ANIMATION: entry stagger handled by GSAP
   Cards start invisible and animate in
   ================================================ */
.pricing-carousel__track .pricing-card {
    opacity: 0;
}

/* Fallback if GSAP doesn't load — show cards after 1s */
@keyframes pricing-fallback-reveal {
    to {
        opacity: 1;
    }
}

.pricing-carousel__track .pricing-card {
    animation: pricing-fallback-reveal 0s 1.2s forwards;
}

/* === PricingCard.css === */
/* ================================================
   PRICING CARD — Glassmorphism Dark SaaS
   ================================================ */
.pricing-card {
    position: relative;
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 22px;
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    min-width: 280px;
    max-width: 380px;
    flex-shrink: 0;
    cursor: pointer;
    overflow: hidden;
    transition:
        transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1),
        border-color 0.4s ease,
        box-shadow 0.4s ease,
        opacity 0.4s ease,
        background 0.4s ease,
        filter 0.4s ease;
    scroll-snap-align: center;
    will-change: transform;
    outline: none;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
}

/* ---- Active / Selected ---- */
.pricing-card--active {
    transform: translateY(-8px) scale(1.03);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}

.pricing-card--active .pricing-card__cta {
    background: #ffffff;
    color: #0B0B0F;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

.pricing-card--active .pricing-card__glow {
    opacity: 1;
}

/* ---- Dimmed when sibling is active ---- */
.pricing-carousel__track:has(.pricing-card--active) .pricing-card:not(.pricing-card--active) {
    opacity: 0.6;
    filter: blur(1px);
    transform: scale(0.98);
}

/* ---- Hover (desktop only) ---- */
@media (hover: hover) {
    .pricing-card:hover:not(.pricing-card--active) {
        transform: translateY(-10px) scale(1.02);
        opacity: 1;
        filter: none;
        background: rgba(255, 255, 255, 0.07);
    }

    /* Tier-specific Neon Glows — Subtle */
    .pricing-card.tier-bronze:hover,
    .pricing-card.tier-bronze.pricing-card--active {
        border-color: rgba(205, 127, 50, 0.7);
        box-shadow: 0 0 20px rgba(205, 127, 50, 0.15), 0 0 40px rgba(205, 127, 50, 0.06), inset 0 0 15px rgba(205, 127, 50, 0.04);
    }

    .pricing-card.tier-silver:hover,
    .pricing-card.tier-silver.pricing-card--active {
        border-color: rgba(224, 224, 224, 0.6);
        box-shadow: 0 0 20px rgba(224, 224, 224, 0.15), 0 0 40px rgba(224, 224, 224, 0.06), inset 0 0 15px rgba(224, 224, 224, 0.04);
    }

    .pricing-card.tier-gold:hover,
    .pricing-card.tier-gold.pricing-card--active {
        border-color: rgba(255, 215, 0, 0.6);
        box-shadow: 0 0 25px rgba(255, 215, 0, 0.2), 0 0 50px rgba(255, 215, 0, 0.08), inset 0 0 15px rgba(255, 215, 0, 0.05);
    }

    .pricing-card.tier-platinum:hover,
    .pricing-card.tier-platinum.pricing-card--active {
        border-color: rgba(229, 228, 226, 0.5);
        box-shadow: 0 0 25px rgba(229, 228, 226, 0.2), 0 0 50px rgba(229, 228, 226, 0.08), inset 0 0 15px rgba(229, 228, 226, 0.05);
    }

    .pricing-card.tier-diamond:hover,
    .pricing-card.tier-diamond.pricing-card--active {
        border-color: rgba(185, 242, 255, 0.5);
        box-shadow: 0 0 30px rgba(185, 242, 255, 0.25), 0 0 60px rgba(185, 242, 255, 0.1), inset 0 0 20px rgba(185, 242, 255, 0.06);
    }

    .pricing-card.tier-ultimate:hover,
    .pricing-card.tier-ultimate.pricing-card--active {
        border-color: rgba(255, 0, 85, 0.5);
        box-shadow: 0 0 35px rgba(255, 0, 85, 0.3), 0 0 70px rgba(255, 0, 85, 0.12), inset 0 0 25px rgba(255, 0, 85, 0.08);
    }

    /* Hover: label brightens */
    .pricing-card:hover .pricing-card__label {
        color: rgba(255, 255, 255, 0.8);
    }

    /* Hover: checks glow */
    .pricing-card:hover .pricing-card__check-circle {
        background: rgba(255, 255, 255, 0.2);
    }

    /* Hover: CTA lifts */
    .pricing-card:hover .pricing-card__cta {
        transform: translateY(-3px);
        background: rgba(255, 255, 255, 0.1);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    }

    /* Hover: glow appears */
    .pricing-card:hover .pricing-card__glow {
        opacity: 0.35;
    }
}

/* ---- Tap animation (mobile) ---- */
.pricing-card__cta:active {
    transform: scale(0.92) !important;
    transition-duration: 0.1s;
}

/* ---- Focus ---- */
.pricing-card:focus-visible {
    outline: 2px solid var(--accent-purple, #8b5cf6);
    outline-offset: 3px;
}

/* ---- Plan label ---- */
.pricing-card__label {
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0.5rem;
    display: block;
}

/* ---- Price ---- */
.pricing-card__price {
    display: flex;
    align-items: baseline;
    gap: 2px;
    margin-bottom: 1.5rem;
    line-height: 1;
}

.pricing-card__currency {
    font-size: 1.5rem;
    font-weight: 600;
    color: #fff;
    margin-right: 2px;
}

.pricing-card__dollars {
    font-size: 3.5rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: -1.5px;
}

.pricing-card__cents {
    font-size: 1.4rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.45);
    margin-top: 6px;
    align-self: flex-start;
}

/* ---- Game count (Description) ---- */
.pricing-card__games {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    padding-bottom: 1.5rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
}

/* ---- Features ---- */
.pricing-card__features {
    list-style: none;
    padding: 0;
    margin: 0 0 2.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.pricing-card__features li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    padding: 0;
    border: none;
}

.pricing-card__check-circle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    flex-shrink: 0;
}

.pricing-card--active .pricing-card__check-circle {
    background: #fff;
    color: #000;
}

.pricing-card__check {
    width: 12px;
    height: 12px;
    stroke-width: 3px;
}

/* ---- CTA Button ---- */
.pricing-card__cta {
    width: 100%;
    padding: 0.9rem 1.5rem;
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 99px;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
    font-family: inherit;
    letter-spacing: 0.3px;
}

.pricing-card--active .pricing-card__cta:hover {
    background: #e0e0e0;
    transform: scale(1.03);
}

/* ---- Glow ---- */
.pricing-card__glow {
    position: absolute;
    bottom: -40%;
    left: 10%;
    width: 80%;
    height: 60%;
    background: radial-gradient(ellipse, rgba(139, 92, 246, 0.2) 0%, transparent 70%);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s;
}

/* ================================================
   RESPONSIVE
   ================================================ */
@media (min-width: 768px) {
    .pricing-card {
        padding: 32px 28px;
    }
}

@media (max-width: 480px) {
    .pricing-card {
        padding: 22px 18px;
        border-radius: 18px;
        min-width: 260px;
    }

    .pricing-card__dollars {
        font-size: 2.6rem;
    }
}

/* === ProductCard.css === */
.pack-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.pack-card:hover {
    transform: translateY(-12px);
    background: rgba(255, 255, 255, 0.06);
    border-color: var(--accent-purple);
    box-shadow: 0 20px 50px -10px rgba(139, 92, 246, 0.3);
}

.pack-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 1.5rem;
    text-align: center;
}

.tier-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #333 0%, #000 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Tier Specific Styles */
.tier-bronze .tier-icon {
    background: linear-gradient(135deg, #cd7f32 0%, #8b4513 100%);
}

.tier-silver .tier-icon {
    background: linear-gradient(135deg, #e0e0e0 0%, #757575 100%);
}

.tier-gold .tier-icon {
    background: linear-gradient(135deg, #ffd700 0%, #b8860b 100%);
}

.tier-platinum .tier-icon {
    background: linear-gradient(135deg, #e5e4e2 0%, #708090 100%);
}

.tier-diamond .tier-icon {
    background: linear-gradient(135deg, #b9f2ff 0%, #00bfff 100%);
}

.tier-ultimate .tier-icon {
    background: linear-gradient(135deg, #ff0055 0%, #990033 100%);
    box-shadow: 0 0 20px #ff0055;
    border: 1px solid #ff0055;
}

.pack-info h3 {
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 0.2rem;
    color: #fff;
    text-transform: uppercase;
}

.pack-count {
    font-size: 0.9rem;
    color: var(--accent-cyan);
    font-weight: 700;
    letter-spacing: 1px;
}

.pack-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #ff0055;
    color: #fff;
    font-size: 0.7rem;
    padding: 4px 8px;
    border-radius: 4px;
    font-weight: 800;
    box-shadow: 0 2px 10px rgba(255, 0, 85, 0.4);
}

.pack-price-container {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    color: #fff;
}

.currency {
    font-size: 1.5rem;
    font-weight: 700;
    margin-top: 5px;
}

.amount {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1;
}

.decimal {
    font-size: 1.2rem;
    font-weight: 700;
    margin-top: 5px;
    color: var(--text-secondary);
}

.pack-features {
    list-style: none;
    width: 100%;
    margin-bottom: 2rem;
}

.pack-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 0.8rem;
    padding-bottom: 0.8rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.pack-features li:last-child {
    border-bottom: none;
}

.check-icon {
    color: var(--accent-cyan);
    filter: drop-shadow(0 0 5px rgba(6, 182, 212, 0.5));
}

.pack-buy-btn {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    border-radius: 12px;
    font-weight: 700;
    transition: all 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.pack-card:hover .pack-buy-btn {
    background: var(--accent-purple);
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.5);
    border-color: transparent;
    transform: scale(1.05);
}

.pack-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.1) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
}

.pack-card:hover .pack-glow {
    opacity: 1;
}

/* Responsive */
@media (max-width: 768px) {
    .pack-card {
        padding: 1.5rem;
        border-radius: 18px;
    }

    .amount {
        font-size: 2.8rem;
    }

    .pack-card:hover {
        transform: translateY(-6px);
    }
}

@media (max-width: 480px) {
    .pack-card {
        padding: 1.2rem;
    }

    .amount {
        font-size: 2.4rem;
    }

    .currency {
        font-size: 1.2rem;
    }

    .pack-features li {
        font-size: 0.85rem;
    }
}

/* === ProductCarousel.css === */
/* Carousel Section with Glassmorphism */
.carousel-section {
    position: relative;
    padding: 4rem 0 6rem;
    margin-top: -50px;
    z-index: 10;
}

/* Stats Header - Glass Panel */
.carousel-header {
    display: flex;
    justify-content: space-between;
    background: rgba(10, 10, 20, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 1.5rem 3rem;
    margin-bottom: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transform: translateY(-50%);
}

.carousel-stat {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.stat-icon {
    color: var(--accent-cyan);
    filter: drop-shadow(0 0 5px var(--accent-cyan));
}

.stat-num {
    font-size: 1.2rem;
    font-weight: 800;
    display: block;
    line-height: 1;
    color: #fff;
}

.stat-desc {
    font-size: 0.8rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-title-small {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 2rem;
    text-transform: uppercase;
    padding-left: 1rem;
    border-left: 4px solid var(--accent-purple);
}

.highlight-cyan {
    color: var(--accent-cyan);
}

/* Carousel Track */
.carousel-track-container {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 2rem;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.carousel-track-container::-webkit-scrollbar {
    display: none;
}

.carousel-track {
    display: flex;
    gap: 2rem;
    padding: 1rem;
}

/* Glassmorphic Carousel Cards */
.carousel-card {
    min-width: 260px;
    width: 260px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.carousel-card:hover {
    transform: translateY(-10px) scale(1.02);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
    border-color: rgba(255, 255, 255, 0.2);
}

/* Media Area */
.card-media {
    height: 160px;
    position: relative;
    overflow: hidden;
}

.media-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    font-weight: 900;
    color: rgba(0, 0, 0, 0.3);
    transition: transform 0.5s ease;
}

.carousel-card:hover .media-placeholder {
    transform: scale(1.1);
}

/* Dynamic Colors */
.bg-gold {
    background: linear-gradient(45deg, #ffd700, #b8860b);
}

.bg-cyan {
    background: linear-gradient(45deg, #06b6d4, #0891b2);
}

.bg-green {
    background: linear-gradient(45deg, #22c55e, #15803d);
}

.bg-purple {
    background: linear-gradient(45deg, #a855f7, #7e22ce);
}

.bg-blue {
    background: linear-gradient(45deg, #3b82f6, #1d4ed8);
}

.bg-orange {
    background: linear-gradient(45deg, #f97316, #c2410c);
}

/* Glow Effects */
.glow-gold:hover {
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
    border-color: #ffd700;
}

.glow-cyan:hover {
    box-shadow: 0 10px 30px rgba(6, 182, 212, 0.3);
    border-color: #06b6d4;
}

.glow-green:hover {
    box-shadow: 0 10px 30px rgba(34, 197, 94, 0.3);
    border-color: #22c55e;
}

.glow-purple:hover {
    box-shadow: 0 10px 30px rgba(168, 85, 247, 0.3);
    border-color: #a855f7;
}

.glow-blue:hover {
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
    border-color: #3b82f6;
}

.glow-orange:hover {
    box-shadow: 0 10px 30px rgba(249, 115, 22, 0.3);
    border-color: #f97316;
}

/* Overlay */
.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.card-overlay .view-btn {
    padding: 0.5rem 1.5rem;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid #fff;
    border-radius: 20px;
    color: #fff;
    font-weight: 600;
    backdrop-filter: blur(4px);
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.3s ease;
}

.carousel-card:hover .card-overlay {
    opacity: 1;
}

.carousel-card:hover .view-btn {
    transform: translateY(0);
    opacity: 1;
}

/* Card Details */
.card-details {
    padding: 1.2rem;
}

.card-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.card-category {
    font-size: 0.7rem;
    color: var(--text-secondary);
    background: rgba(255, 255, 255, 0.1);
    padding: 2px 8px;
    border-radius: 4px;
}

.card-rating {
    font-size: 0.8rem;
    color: #fbbf24;
    display: flex;
    align-items: center;
    gap: 4px;
}

.card-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #fff;
}

.card-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.card-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
}

.card-action {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: all 0.2s;
}

.carousel-card:hover .card-action {
    background: var(--accent-cyan);
    color: #000;
}

@media (max-width: 968px) {
    .carousel-header {
        flex-direction: column;
        gap: 1.5rem;
        transform: none;
        margin-top: 2rem;
        padding: 1.5rem 2rem;
    }

    .carousel-section {
        margin-top: 0;
        padding: 3rem 0 4rem;
    }

    .carousel-card {
        min-width: 230px;
        width: 230px;
    }
}

@media (max-width: 576px) {
    .carousel-header {
        padding: 1.2rem 1rem;
        gap: 1rem;
        border-radius: 14px;
    }

    .carousel-stat {
        gap: 0.6rem;
    }

    .stat-num {
        font-size: 1rem;
    }

    .stat-desc {
        font-size: 0.7rem;
    }

    .section-title-small {
        font-size: 1.2rem;
    }

    .carousel-card {
        min-width: 200px;
        width: 200px;
    }

    .carousel-track {
        gap: 1rem;
        padding: 0.5rem;
    }
}

/* === ProductGrid.css === */
.product-section {
    padding: 4rem 0 8rem;
    background: radial-gradient(circle at center, #1a0b2e 0%, var(--bg-primary) 70%);
}

.section-header-center {
    text-align: center;
    margin-bottom: 4rem;
}

.section-subtitle {
    color: var(--text-highlight);
    font-family: 'Nothing You Could Do', cursive, sans-serif;
    /* Fallback */
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    letter-spacing: 2px;
}

.section-title {
    font-size: 3rem;
    font-weight: 900;
    text-transform: uppercase;
}

.highlight-purple {
    color: var(--accent-purple);
    text-shadow: 0 0 20px rgba(139, 92, 246, 0.4);
}

.zigzag-divider {
    width: 100px;
    height: 10px;
    background: url("data:image/svg+xml,%3Csvg width='20' height='10' viewBox='0 0 20 10' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 10 L10 0 L20 10' fill='none' stroke='%238b5cf6' stroke-width='2'/%3E%3C/svg%3E") repeat-x;
    margin: 1rem auto 0;
    opacity: 0.5;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    padding: 0 1rem;
}

/* Responsive */
@media (max-width: 968px) {
    .product-section {
        padding: 3rem 0 5rem;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .product-grid {
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
        gap: 1.5rem;
    }
}

@media (max-width: 576px) {
    .product-section {
        padding: 2rem 0 4rem;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .product-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
        padding: 0 0.5rem;
    }
}

/* ================================================
   NEON GLOWS - Always visible on active cards
   ================================================ */
.pricing-card.tier-bronze.pricing-card--active {
    border-color: rgba(205, 127, 50, 0.7);
    box-shadow: 0 0 20px rgba(205, 127, 50, 0.25), 0 0 50px rgba(205, 127, 50, 0.1), inset 0 0 20px rgba(205, 127, 50, 0.06);
}
.pricing-card.tier-silver.pricing-card--active {
    border-color: rgba(224, 224, 224, 0.6);
    box-shadow: 0 0 20px rgba(224, 224, 224, 0.25), 0 0 50px rgba(224, 224, 224, 0.1), inset 0 0 20px rgba(224, 224, 224, 0.06);
}
.pricing-card.tier-gold.pricing-card--active {
    border-color: rgba(255, 215, 0, 0.6);
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.3), 0 0 60px rgba(255, 215, 0, 0.12), inset 0 0 20px rgba(255, 215, 0, 0.07);
}
.pricing-card.tier-platinum.pricing-card--active {
    border-color: rgba(229, 228, 226, 0.5);
    box-shadow: 0 0 30px rgba(229, 228, 226, 0.3), 0 0 60px rgba(229, 228, 226, 0.12), inset 0 0 20px rgba(229, 228, 226, 0.07);
}
.pricing-card.tier-diamond.pricing-card--active {
    border-color: rgba(185, 242, 255, 0.5);
    box-shadow: 0 0 35px rgba(185, 242, 255, 0.35), 0 0 70px rgba(185, 242, 255, 0.15), inset 0 0 25px rgba(185, 242, 255, 0.08);
}
.pricing-card.tier-ultimate.pricing-card--active {
    border-color: rgba(255, 0, 85, 0.5);
    box-shadow: 0 0 40px rgba(255, 0, 85, 0.4), 0 0 80px rgba(255, 0, 85, 0.15), inset 0 0 30px rgba(255, 0, 85, 0.1);
}
