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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #000;
    color: #fff;
    min-height: 100vh;
    overflow-x: hidden;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================================
   ANIMATED BACKGROUND EFFECTS
   ============================================ */
.bg-effects {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
}

/* Floating Gradient Orbs */
.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    animation: float 20s ease-in-out infinite;
}

.orb-1 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, #ff006e, #a855f7);
    top: -100px;
    left: -100px;
    animation-delay: 0s;
}

.orb-2 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #a855f7, #60a5fa);
    top: 50%;
    right: -100px;
    animation-delay: -7s;
}

.orb-3 {
    width: 350px;
    height: 350px;
    background: linear-gradient(135deg, #ff006e, #ff80b5);
    bottom: -100px;
    left: 30%;
    animation-delay: -14s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(50px, 50px) scale(1.1); }
    50% { transform: translate(0, 100px) scale(1); }
    75% { transform: translate(-50px, 50px) scale(0.9); }
}

/* Particles Container */
#particles {
    position: absolute;
    width: 100%;
    height: 100%;
}

.particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: #ff006e;
    border-radius: 50%;
    opacity: 0;
    animation: particle-float 8s ease-in-out infinite;
    box-shadow: 0 0 10px #ff006e;
}

@keyframes particle-float {
    0% { opacity: 0; transform: translateY(100vh) scale(0); }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { opacity: 0; transform: translateY(-100vh) scale(1); }
}

/* ============================================
   LIVE BROADCAST BANNER
   ============================================ */
.broadcast-banner {
    background: linear-gradient(90deg, #1a0a0a, #2a0a1a, #1a0a0a);
    border-bottom: 1px solid rgba(255, 0, 110, 0.3);
    padding: 10px 0;
    position: relative;
    overflow: hidden;
}

.broadcast-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg,
        rgba(255, 0, 110, 0.1),
        rgba(255, 215, 0, 0.1),
        rgba(255, 0, 110, 0.1));
    background-size: 200% 100%;
    animation: shimmer-bg 3s ease infinite;
}

@keyframes shimmer-bg {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

.broadcast-content {
    display: flex;
    align-items: center;
    gap: 15px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.broadcast-live {
    background: #ff006e;
    color: #fff;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1px;
    flex-shrink: 0;
    animation: live-pulse 1.5s ease-in-out infinite;
}

@keyframes live-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.broadcast-slider {
    flex: 1;
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
}

.broadcast-text {
    display: inline-block;
    white-space: nowrap;
    font-size: 0.85rem;
    font-weight: 600;
    color: #ffd700;
    animation: scroll-text 20s linear infinite;
    padding-left: 100%;
}

@keyframes scroll-text {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

.broadcast-btn {
    background: linear-gradient(135deg, #ffd700, #ff9500);
    color: #000;
    padding: 6px 16px;
    border-radius: 5px;
    font-size: 0.75rem;
    font-weight: 800;
    text-decoration: none;
    flex-shrink: 0;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.broadcast-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

@media (max-width: 600px) {
    .broadcast-content {
        gap: 10px;
    }

    .broadcast-live {
        padding: 3px 8px;
        font-size: 0.6rem;
    }

    .broadcast-text {
        font-size: 0.75rem;
    }

    .broadcast-btn {
        padding: 5px 12px;
        font-size: 0.7rem;
    }
}

/* ============================================
   HEADER
   ============================================ */
.header {
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(20px);
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 0, 110, 0.2);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

/* Logo with Glow Pulse */
.logo {
    font-size: 1.4rem;
    font-weight: 800;
    color: #ff006e;
    letter-spacing: 2px;
    text-shadow: 0 0 10px rgba(255, 0, 110, 0.5);
}

.glow-pulse {
    animation: glow-pulse 2s ease-in-out infinite;
}

@keyframes glow-pulse {
    0%, 100% { text-shadow: 0 0 10px rgba(255, 0, 110, 0.5), 0 0 20px rgba(255, 0, 110, 0.3); }
    50% { text-shadow: 0 0 20px rgba(255, 0, 110, 0.8), 0 0 40px rgba(255, 0, 110, 0.5), 0 0 60px rgba(255, 0, 110, 0.3); }
}

/* Navigation Links */
.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: #888;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #ff006e;
}

/* Buttons with Shine Effect */
.tg-btn, .btn {
    position: relative;
    overflow: hidden;
    background: transparent;
    color: #ff006e;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    border: 2px solid #ff006e;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
}

.tg-btn:hover, .btn:hover {
    background: #ff006e;
    color: #000;
    box-shadow: 0 0 30px rgba(255, 0, 110, 0.6);
    transform: translateY(-2px);
}

.btn-primary {
    background: #ff006e;
    color: #000;
}

.btn-primary:hover {
    background: #ff3388;
    border-color: #ff3388;
}

.btn-secondary {
    background: transparent;
}

.btn-large {
    padding: 15px 35px;
    font-size: 1rem;
}

.btn-large svg {
    width: 20px;
    height: 20px;
}

.btn-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: 0.5s;
}

.tg-btn:hover .btn-shine,
.btn:hover .btn-shine {
    left: 100%;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    text-align: center;
    padding: 25px 20px 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
}

/* Glitch Effect for Title */
.hero h1.glitch {
    font-size: 3.5rem;
    font-weight: 800;
    color: #ff006e;
    margin-bottom: 0;
    position: relative;
    text-shadow: 0 0 30px rgba(255, 0, 110, 0.6);
    animation: glitch-skew 4s infinite linear alternate-reverse;
}

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

.hero h1.glitch::before {
    color: #00ffff;
    animation: glitch-effect 3s infinite linear alternate-reverse;
    clip-path: polygon(0 0, 100% 0, 100% 35%, 0 35%);
    transform: translate(-2px);
}

.hero h1.glitch::after {
    color: #ff00ff;
    animation: glitch-effect 2s infinite linear alternate-reverse;
    clip-path: polygon(0 65%, 100% 65%, 100% 100%, 0 100%);
    transform: translate(2px);
}

@keyframes glitch-effect {
    0% { transform: translate(0); }
    20% { transform: translate(-3px, 3px); }
    40% { transform: translate(-3px, -3px); }
    60% { transform: translate(3px, 3px); }
    80% { transform: translate(3px, -3px); }
    100% { transform: translate(0); }
}

@keyframes glitch-skew {
    0% { transform: skew(0deg); }
    10% { transform: skew(0.5deg); }
    20% { transform: skew(-0.5deg); }
    30% { transform: skew(0deg); }
    100% { transform: skew(0deg); }
}

/* Animated Gradient Tagline */
.hero .tagline {
    font-size: 1.1rem;
    line-height: 1.8;
    max-width: 600px;
    background: linear-gradient(90deg, #ff006e, #a855f7, #ff80b5, #60a5fa, #ff006e);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shift 4s ease infinite;
    margin-bottom: 30px;
}

@keyframes gradient-shift {
    0% { background-position: 0% center; }
    50% { background-position: 100% center; }
    100% { background-position: 0% center; }
}

/* Hero CTA */
.hero-cta {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

/* Scroll Indicator */
.scroll-indicator {
    display: none;
}

.mouse {
    width: 25px;
    height: 40px;
    border: 2px solid #ff006e;
    border-radius: 15px;
    position: relative;
}

.mouse::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: #ff006e;
    border-radius: 2px;
    animation: scroll-wheel 1.5s infinite;
}

@keyframes scroll-wheel {
    0% { opacity: 1; transform: translateX(-50%) translateY(0); }
    100% { opacity: 0; transform: translateX(-50%) translateY(15px); }
}

.scroll-indicator span {
    font-size: 0.75rem;
    color: #ff006e;
    letter-spacing: 2px;
    text-transform: uppercase;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(10px); }
}

/* ============================================
   SECTION TITLES
   ============================================ */
.title {
    text-align: center;
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 3px;
    position: relative;
}

.title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #ff006e, #a855f7);
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    color: #888;
    font-size: 1rem;
    margin-bottom: 25px;
}

/* ============================================
   PRODUCTS SECTION
   ============================================ */
.products {
    padding: 20px 0 60px;
}

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

/* Full Width Card */
.card-full {
    width: 100%;
}

.card-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

/* Card Carousel */
.card-carousel {
    position: relative;
    height: 550px;
    overflow: hidden;
    background: #000;
}

.carousel-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 0;
    transition: opacity 0.5s ease;
    background: #000;
    -webkit-user-select: none;
    user-select: none;
    -webkit-user-drag: none;
    pointer-events: none;
}

/* Protect all images and videos from download */
img, video {
    -webkit-user-select: none;
    user-select: none;
    -webkit-user-drag: none;
}

.carousel-slide.active {
    opacity: 1;
}

/* CP Carousel - Blur + Watermark Effect */
#cpCarousel video.carousel-slide,
#indianCpCarousel video.carousel-slide,
#rpCarousel video.carousel-slide,
#momsonCarousel video.carousel-slide {
    filter: blur(20px);
}

/* Images blur for privacy */
#cpCarousel img.carousel-slide,
#indianCpCarousel img.carousel-slide,
#rpCarousel img.carousel-slide,
#momsonCarousel img.carousel-slide,
#mixedCarousel img.carousel-slide {
    filter: blur(3px);
}

#mixedCarousel video.carousel-slide {
    filter: blur(20px);
}

#cpCarousel::after,
#indianCpCarousel::after,
#rpCarousel::after,
#momsonCarousel::after,
#mixedCarousel::after {
    content: 'THE HUB';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-25deg);
    font-size: 4rem;
    font-weight: 900;
    color: rgba(255, 0, 110, 0.4);
    text-transform: uppercase;
    letter-spacing: 15px;
    pointer-events: none;
    z-index: 5;
    text-shadow: 0 0 30px rgba(255, 0, 110, 0.5);
    white-space: nowrap;
}

.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 0, 110, 0.8);
    color: #fff;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
}

.carousel-nav:hover {
    background: #ff006e;
    transform: translateY(-50%) scale(1.1);
}

.carousel-nav.prev {
    left: 10px;
}

.carousel-nav.next {
    right: 10px;
}

.carousel-indicators {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-dot.active {
    background: #ff006e;
    box-shadow: 0 0 10px #ff006e;
}

.carousel-wrapper {
    cursor: pointer;
}

/* Lightbox Modal */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.lightbox.active {
    display: flex;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    background: none;
    border: none;
    color: #fff;
    font-size: 3rem;
    cursor: pointer;
    z-index: 2001;
    transition: color 0.3s ease;
}

.lightbox-close:hover {
    color: #ff006e;
}

.lightbox-content {
    max-width: 90vw;
    max-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-content img,
.lightbox-content video {
    max-width: 90vw;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 8px;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 0, 110, 0.8);
    color: #fff;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 2001;
}

.lightbox-nav:hover {
    background: #ff006e;
    transform: translateY(-50%) scale(1.1);
}

.lightbox-nav.prev {
    left: 20px;
}

.lightbox-nav.next {
    right: 20px;
}

.lightbox-counter {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    font-size: 1rem;
}

/* Card Info */
.card-info {
    padding: 25px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.card-badge {
    display: inline-block;
    background: linear-gradient(135deg, #ff006e, #a855f7);
    color: #fff;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    width: fit-content;
}

.card-info h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.feature-item {
    font-size: 0.85rem;
    color: #4ade80;
    font-weight: 500;
}

.platforms {
    font-size: 0.8rem;
    color: #aaa;
    line-height: 1.5;
    padding: 10px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    margin: 0;
}

.card-info .btn {
    margin-top: auto;
}

/* ============================================
   CARDS - Glass Morphism with Effects
   ============================================ */
.card, .member-card {
    position: relative;
    background: rgba(20, 20, 20, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 0, 110, 0.3);
    box-shadow: 0 0 20px rgba(255, 0, 110, 0.15), 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.card:hover, .member-card:hover {
    border-color: rgba(255, 0, 110, 0.7);
    box-shadow:
        0 0 40px rgba(255, 0, 110, 0.4),
        0 20px 40px rgba(0, 0, 0, 0.4),
        inset 0 0 30px rgba(255, 0, 110, 0.1);
}

/* Card Shine Effect */
.card-shine {
    position: absolute;
    top: 0;
    left: -150%;
    width: 150%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.1),
        transparent
    );
    transform: skewX(-20deg);
    transition: 0.8s;
    z-index: 10;
    pointer-events: none;
}

.card:hover .card-shine,
.member-card:hover .card-shine {
    left: 150%;
}

/* Card Graphics (replacing images) */
.card-graphic {
    height: 150px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255, 0, 110, 0.15), rgba(168, 85, 247, 0.15));
    border-bottom: 1px solid rgba(255, 0, 110, 0.2);
    position: relative;
    overflow: hidden;
}

.card-graphic::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 0, 110, 0.2) 0%, transparent 60%);
    animation: pulse-bg 4s ease-in-out infinite;
}

@keyframes pulse-bg {
    0%, 100% { transform: scale(1); opacity: 0.6; }
    50% { transform: scale(1.2); opacity: 1; }
}

.card-graphic.popular-graphic {
    background: linear-gradient(135deg, rgba(255, 0, 110, 0.25), rgba(168, 85, 247, 0.25));
}

.graphic-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255, 0, 110, 0.4), rgba(168, 85, 247, 0.4));
    border-radius: 50%;
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
    box-shadow: 0 0 25px rgba(255, 0, 110, 0.4);
}

.graphic-icon svg {
    width: 32px;
    height: 32px;
    stroke: #ff006e;
    filter: drop-shadow(0 0 5px rgba(255, 0, 110, 0.5));
}

.graphic-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: #ff006e;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    z-index: 1;
}

.card .info {
    padding: 20px;
    text-align: center;
}

.card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.card p {
    font-size: 0.9rem;
    color: #aaa;
    margin-bottom: 15px;
    line-height: 1.6;
}

.price {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
    color: #ff006e;
    margin-bottom: 15px;
    text-shadow: 0 0 15px rgba(255, 0, 110, 0.4);
}

.card .btn {
    display: block;
    padding: 12px;
    width: 100%;
}

/* Product Models Text */
.product-models {
    font-size: 0.85rem;
    color: #ffffff;
    line-height: 1.7;
    margin-bottom: 15px;
    padding: 14px;
    background: rgba(255, 0, 110, 0.2);
    border-radius: 8px;
    border-left: 4px solid #ff006e;
    font-weight: 600;
}

/* Product Features List */
.product-features {
    list-style: none;
    text-align: left;
    margin-bottom: 15px;
    padding: 0;
}

.product-features li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    padding: 6px 0;
    font-size: 0.85rem;
    color: #ddd;
    line-height: 1.5;
    font-weight: 500;
}

.product-features li::before {
    content: '✓';
    color: #4ade80;
    font-weight: 700;
}

/* Price Tiers */
.price-tiers {
    margin-bottom: 15px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    padding: 10px;
}

.price-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 12px;
    font-size: 0.9rem;
    color: #ccc;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    font-weight: 500;
}

.price-row:last-child {
    border-bottom: none;
}

.price-row span:last-child {
    color: #ff006e;
    font-weight: 700;
}

.price-row.selectable {
    cursor: pointer;
    border-radius: 8px;
    margin-bottom: 5px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.price-row.selectable:hover {
    background: rgba(255, 0, 110, 0.1);
    border-color: rgba(255, 0, 110, 0.3);
}

.price-row.selectable.selected {
    background: linear-gradient(135deg, rgba(255, 0, 110, 0.3), rgba(168, 85, 247, 0.3));
    border-color: #ff006e;
    box-shadow: 0 0 15px rgba(255, 0, 110, 0.3);
}

.price-row.selectable.selected span {
    color: #fff;
    font-weight: 700;
}

.price-row.selectable.selected span:last-child {
    color: #ff006e;
    text-shadow: 0 0 15px rgba(255, 0, 110, 0.6);
}

/* ============================================
   WHY CHOOSE US SECTION
   ============================================ */
.why-us {
    padding: 80px 0;
    background: rgba(10, 10, 10, 0.5);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.benefit-card {
    background: rgba(15, 15, 15, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 30px 20px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.benefit-card:hover {
    border-color: rgba(255, 0, 110, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255, 0, 110, 0.2), rgba(168, 85, 247, 0.2));
    border-radius: 50%;
}

.benefit-icon svg {
    width: 28px;
    height: 28px;
    stroke: #ff006e;
}

.benefit-card h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #fff;
}

.benefit-card p {
    font-size: 0.85rem;
    color: #888;
    line-height: 1.6;
}

/* ============================================
   HOW IT WORKS SECTION
   ============================================ */
.how-it-works {
    padding: 80px 0;
}

.steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
    max-width: 250px;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ff006e, #a855f7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 20px;
    box-shadow: 0 0 30px rgba(255, 0, 110, 0.4);
}

.step-content h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.step-content p {
    font-size: 0.9rem;
    color: #888;
    line-height: 1.6;
}

.step-connector {
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, #ff006e, #a855f7);
    margin: 0 -20px;
    margin-bottom: 60px;
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.testimonials {
    padding: 80px 0;
    background: rgba(10, 10, 10, 0.5);
}

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

.testimonial-card {
    background: rgba(15, 15, 15, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    border-color: rgba(255, 0, 110, 0.3);
}

.stars {
    margin-bottom: 15px;
}

.stars span {
    color: #ffcc00;
    font-size: 1.2rem;
}

.testimonial-text {
    font-size: 0.95rem;
    color: #ccc;
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #ff006e, #a855f7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
}

.testimonial-author span {
    font-size: 0.9rem;
    color: #888;
}

/* ============================================
   MEMBERSHIP SECTION
   ============================================ */
.membership {
    padding: 80px 0;
}

.membership-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.member-card {
    padding: 40px 30px;
    text-align: center;
}

.member-card.popular {
    border: 2px solid transparent;
    background:
        linear-gradient(rgba(15, 15, 15, 0.9), rgba(15, 15, 15, 0.9)) padding-box,
        linear-gradient(135deg, #ff006e, #a855f7, #60a5fa, #ff006e) border-box;
    background-size: 100% 100%, 300% 300%;
    animation: border-gradient 4s ease infinite;
}

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

.badge {
    background: linear-gradient(135deg, #ff006e, #a855f7);
    color: #fff;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 20px;
    box-shadow: 0 0 20px rgba(255, 0, 110, 0.4);
}

.tag {
    display: inline-block;
    background: linear-gradient(135deg, #ffcc00, #ff9500);
    color: #000;
    padding: 5px 15px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 15px;
    animation: tag-pulse 1.5s ease-in-out infinite;
}

@keyframes tag-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.member-price {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: #ff006e;
    margin-bottom: 10px;
    text-shadow: 0 0 20px rgba(255, 0, 110, 0.5);
}

.savings {
    color: #4ade80;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.feature-list {
    list-style: none;
    text-align: left;
    margin-bottom: 25px;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 0.9rem;
    color: #ccc;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.feature-list li:last-child {
    border-bottom: none;
}

.feature-list svg {
    width: 18px;
    height: 18px;
    stroke: #4ade80;
    flex-shrink: 0;
}

.member-card .btn {
    display: inline-block;
    padding: 14px 35px;
    width: 100%;
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq {
    padding: 80px 0;
    background: rgba(10, 10, 10, 0.5);
}

.faq-list {
    max-width: 700px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 15px;
    border-radius: 12px;
    overflow: hidden;
    background: rgba(15, 15, 15, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: border-color 0.3s ease;
}

.faq-item:hover,
.faq-item.active {
    border-color: rgba(255, 0, 110, 0.3);
}

.faq-question {
    width: 100%;
    padding: 20px 25px;
    background: none;
    border: none;
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: inherit;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: #ff006e;
}

.faq-question svg {
    width: 20px;
    height: 20px;
    stroke: #ff006e;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-question svg {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

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

.faq-answer p {
    padding: 0 25px 20px;
    color: #888;
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ============================================
   FINAL CTA SECTION
   ============================================ */
.final-cta {
    padding: 100px 0;
    text-align: center;
    background: linear-gradient(180deg, transparent, rgba(255, 0, 110, 0.1));
}

.final-cta h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 15px;
    background: linear-gradient(90deg, #fff, #ff006e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.final-cta p {
    font-size: 1.1rem;
    color: #888;
    margin-bottom: 30px;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(20px);
    padding: 50px 0 30px;
    border-top: 1px solid rgba(255, 0, 110, 0.2);
    text-align: center;
}

.footer .logo {
    display: block;
    margin-bottom: 15px;
    font-size: 1.6rem;
}

.tagline-footer {
    font-size: 0.95rem;
    color: #888;
    margin-bottom: 25px;
    line-height: 1.6;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 25px;
}

.footer-links a {
    color: #666;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #ff006e;
}

.copy {
    font-size: 0.8rem;
    color: #444;
}

/* ============================================
   FLOATING TELEGRAM BUTTON
   ============================================ */
.floating-tg {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, #ff006e, #a855f7);
    color: #fff;
    padding: 15px 25px;
    border-radius: 50px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 5px 30px rgba(255, 0, 110, 0.5);
    z-index: 99;
    transition: all 0.3s ease;
}

.floating-tg:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 40px rgba(255, 0, 110, 0.6);
}

.floating-tg svg {
    width: 22px;
    height: 22px;
}

/* ============================================
   SCROLL REVEAL ANIMATIONS
   ============================================ */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered animation for cards */
.grid .reveal:nth-child(1) { transition-delay: 0.1s; }
.grid .reveal:nth-child(2) { transition-delay: 0.2s; }
.grid .reveal:nth-child(3) { transition-delay: 0.3s; }
.grid .reveal:nth-child(4) { transition-delay: 0.4s; }

.benefits-grid .reveal:nth-child(1) { transition-delay: 0.1s; }
.benefits-grid .reveal:nth-child(2) { transition-delay: 0.2s; }
.benefits-grid .reveal:nth-child(3) { transition-delay: 0.3s; }
.benefits-grid .reveal:nth-child(4) { transition-delay: 0.4s; }

.membership-grid .reveal:nth-child(1) { transition-delay: 0.1s; }
.membership-grid .reveal:nth-child(2) { transition-delay: 0.2s; }

.testimonial-slider .reveal:nth-child(1) { transition-delay: 0.1s; }
.testimonial-slider .reveal:nth-child(2) { transition-delay: 0.2s; }
.testimonial-slider .reveal:nth-child(3) { transition-delay: 0.3s; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 900px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonial-slider {
        grid-template-columns: 1fr;
    }

    .steps {
        flex-direction: column;
        gap: 20px;
    }

    .step-connector {
        width: 2px;
        height: 40px;
        margin: 0;
    }

    .nav-links {
        display: none;
    }
}

@media (max-width: 600px) {
    .card-layout {
        grid-template-columns: 1fr;
    }

    .card-carousel {
        height: 280px;
    }

    .card-info {
        padding: 20px;
    }

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

    .grid,
    .membership-grid,
    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .hero h1.glitch {
        font-size: 2.8rem;
    }

    .hero .tagline {
        font-size: 1rem;
    }

    .hero-cta {
        flex-direction: column;
        width: 100%;
        padding: 0 20px;
    }

    .hero-cta .btn {
        width: 100%;
    }

    .title {
        font-size: 1.5rem;
    }

    .final-cta h2 {
        font-size: 1.8rem;
    }

    .floating-tg span {
        display: none;
    }

    .floating-tg {
        padding: 15px;
        border-radius: 50%;
    }

    .orb-1, .orb-2, .orb-3 {
        opacity: 0.2;
    }

    .step {
        max-width: 100%;
    }

    .member-card {
        padding: 30px 20px;
    }

    .exclusive-card-layout {
        grid-template-columns: 1fr !important;
    }

    .exclusive-visual {
        height: 200px !important;
    }

    .exclusive-carousel {
        height: 250px !important;
    }

    .exclusive-watermark {
        font-size: 2rem !important;
        letter-spacing: 8px !important;
    }

    .exclusive-header {
        flex-direction: column;
        gap: 10px;
    }

    .exclusive-ribbon-left,
    .exclusive-ribbon-right {
        width: 60px !important;
    }

    .exclusive-title {
        font-size: 1.3rem !important;
    }

    .mega-tag {
        display: block;
        margin-top: 5px;
    }
}

/* ============================================
   EXCLUSIVE CONTENT SECTION (Mega Links)
   ============================================ */
.exclusive-section {
    padding: 80px 0;
    position: relative;
    background: linear-gradient(180deg,
        rgba(0, 0, 0, 0.9) 0%,
        rgba(255, 215, 0, 0.03) 50%,
        rgba(0, 0, 0, 0.9) 100%);
}

.exclusive-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg,
        transparent,
        #ffd700,
        #ff006e,
        #ffd700,
        transparent);
}

.exclusive-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 15px;
}

.exclusive-ribbon-left,
.exclusive-ribbon-right {
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #ffd700);
    position: relative;
}

.exclusive-ribbon-right {
    background: linear-gradient(90deg, #ffd700, transparent);
}

.exclusive-ribbon-left::after,
.exclusive-ribbon-right::before {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    background: #ffd700;
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    box-shadow: 0 0 10px #ffd700;
}

.exclusive-ribbon-left::after {
    right: 0;
}

.exclusive-ribbon-right::before {
    left: 0;
}

.exclusive-title {
    font-size: 1.8rem;
    font-weight: 800;
    text-align: center;
    background: linear-gradient(135deg, #ffd700, #ffec8b, #ffd700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    letter-spacing: 3px;
    display: flex;
    align-items: center;
    gap: 15px;
    animation: gold-shimmer 3s ease-in-out infinite;
}

@keyframes gold-shimmer {
    0%, 100% { filter: brightness(1); }
    50% { filter: brightness(1.3); }
}

.crown-icon {
    font-size: 1.5rem;
    -webkit-text-fill-color: initial;
    animation: crown-bounce 2s ease-in-out infinite;
}

@keyframes crown-bounce {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-3px) rotate(-5deg); }
    75% { transform: translateY(-3px) rotate(5deg); }
}

.mega-tag {
    font-size: 0.9rem;
    color: #ff006e;
    -webkit-text-fill-color: #ff006e;
    font-weight: 600;
}

.exclusive-subtitle {
    text-align: center;
    color: #aaa;
    font-size: 1rem;
    margin-bottom: 40px;
}

.exclusive-grid {
    max-width: 900px;
    margin: 0 auto;
}

/* Exclusive Card */
.exclusive-card {
    position: relative;
    background: linear-gradient(145deg,
        rgba(30, 25, 15, 0.95),
        rgba(20, 15, 10, 0.98));
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid transparent;
    background-clip: padding-box;
    box-shadow:
        0 0 0 2px rgba(255, 215, 0, 0.3),
        0 0 40px rgba(255, 215, 0, 0.15),
        0 20px 60px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 215, 0, 0.1);
}

.exclusive-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 20px;
    padding: 2px;
    background: linear-gradient(135deg, #ffd700, #ff006e, #ffd700);
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    animation: border-rotate 4s linear infinite;
}

@keyframes border-rotate {
    0% { background: linear-gradient(0deg, #ffd700, #ff006e, #ffd700); }
    25% { background: linear-gradient(90deg, #ffd700, #ff006e, #ffd700); }
    50% { background: linear-gradient(180deg, #ffd700, #ff006e, #ffd700); }
    75% { background: linear-gradient(270deg, #ffd700, #ff006e, #ffd700); }
    100% { background: linear-gradient(360deg, #ffd700, #ff006e, #ffd700); }
}

/* VIP Ribbon */
.exclusive-card-ribbon {
    position: absolute;
    top: 25px;
    right: -35px;
    background: linear-gradient(135deg, #ffd700, #ff9500);
    color: #000;
    padding: 8px 50px;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 2px;
    transform: rotate(45deg);
    z-index: 20;
    box-shadow: 0 3px 15px rgba(255, 215, 0, 0.5);
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.3);
}

.exclusive-card-shine {
    position: absolute;
    top: 0;
    left: -150%;
    width: 150%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 215, 0, 0.15),
        transparent
    );
    transform: skewX(-20deg);
    transition: 0.8s;
    z-index: 10;
    pointer-events: none;
}

.exclusive-card:hover .exclusive-card-shine {
    left: 150%;
}

.exclusive-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.1) 0%, transparent 50%);
    pointer-events: none;
    animation: glow-rotate 10s linear infinite;
}

@keyframes glow-rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.exclusive-card-layout {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    position: relative;
    z-index: 5;
}

/* Exclusive Visual */
.exclusive-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px;
    background: linear-gradient(135deg,
        rgba(255, 215, 0, 0.1) 0%,
        rgba(255, 0, 110, 0.05) 100%);
    border-right: 1px solid rgba(255, 215, 0, 0.2);
}

.mega-icon-wrapper {
    position: relative;
    margin-bottom: 30px;
}

.mega-icon-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 140px;
    height: 140px;
    transform: translate(-50%, -50%);
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 50%;
    animation: ring-pulse 2s ease-in-out infinite;
}

.mega-icon-ring::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border: 1px solid rgba(255, 215, 0, 0.15);
    border-radius: 50%;
}

@keyframes ring-pulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
    50% { transform: translate(-50%, -50%) scale(1.1); opacity: 1; }
}

.mega-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #ffd700, #ff9500);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow:
        0 0 30px rgba(255, 215, 0, 0.5),
        0 0 60px rgba(255, 215, 0, 0.3),
        inset 0 2px 10px rgba(255, 255, 255, 0.3);
    animation: icon-glow 3s ease-in-out infinite;
}

@keyframes icon-glow {
    0%, 100% { box-shadow: 0 0 30px rgba(255, 215, 0, 0.5), 0 0 60px rgba(255, 215, 0, 0.3); }
    50% { box-shadow: 0 0 50px rgba(255, 215, 0, 0.7), 0 0 100px rgba(255, 215, 0, 0.5); }
}

.mega-icon svg {
    width: 45px;
    height: 45px;
    stroke: #000;
    stroke-width: 2.5;
}

.mega-stats {
    display: flex;
    gap: 30px;
}

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

.stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: #ffd700;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.stat-label {
    font-size: 0.8rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Exclusive Card Info */
.exclusive-card-info {
    padding: 35px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.exclusive-badge-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
}

.exclusive-badge {
    display: inline-block;
    background: linear-gradient(135deg, #ffd700, #ff9500);
    color: #000;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 1px;
}

.exclusive-new-tag {
    background: #ff006e;
    color: #fff;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.65rem;
    font-weight: 700;
    animation: new-pulse 1s ease-in-out infinite;
}

@keyframes new-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.exclusive-hot-tag {
    background: linear-gradient(135deg, #ff4500, #ff6b35);
    color: #fff;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.65rem;
    font-weight: 700;
    animation: new-pulse 1s ease-in-out infinite;
}

.exclusive-card-info h3 {
    font-size: 1.6rem;
    font-weight: 700;
    background: linear-gradient(90deg, #fff, #ffd700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.exclusive-description {
    font-size: 0.9rem;
    color: #aaa;
    line-height: 1.6;
}

.exclusive-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding: 15px;
    background: rgba(255, 215, 0, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(255, 215, 0, 0.1);
}

.exclusive-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: #ddd;
}

.feature-icon {
    font-size: 1rem;
}

/* Exclusive Price Box */
.exclusive-price-box {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 12px;
    padding: 15px;
    border: 1px solid rgba(255, 215, 0, 0.15);
}

.exclusive-price-tiers {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.exclusive-price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 15px;
    border-radius: 8px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.03);
}

.exclusive-price-row:hover {
    background: rgba(255, 215, 0, 0.1);
    border-color: rgba(255, 215, 0, 0.3);
}

.exclusive-price-row.selected {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2), rgba(255, 0, 110, 0.15));
    border-color: #ffd700;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.2);
}

.exclusive-price-row span {
    font-size: 0.9rem;
    color: #ccc;
}

.exclusive-price-row span:last-child {
    font-weight: 700;
    color: #ffd700;
    font-size: 1rem;
}

.exclusive-price-row.selected span {
    color: #fff;
}

.exclusive-price-row.selected span:last-child {
    color: #ffd700;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.popular-choice {
    background: #ff006e;
    color: #fff !important;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.7rem !important;
    font-weight: 700;
    margin-right: 10px;
}

/* Exclusive Button */
.btn-exclusive {
    background: linear-gradient(135deg, #ffd700, #ff9500) !important;
    color: #000 !important;
    border: none !important;
    padding: 14px 25px !important;
    font-weight: 700 !important;
    font-size: 0.95rem !important;
    box-shadow: 0 5px 25px rgba(255, 215, 0, 0.4);
    margin-top: 10px;
}

.btn-exclusive:hover {
    background: linear-gradient(135deg, #ffec8b, #ffd700) !important;
    box-shadow: 0 10px 40px rgba(255, 215, 0, 0.6) !important;
    transform: translateY(-3px);
}

.btn-icon {
    margin-right: 8px;
}

/* Exclusive Carousel */
.exclusive-carousel {
    position: relative;
    height: 400px;
    overflow: hidden;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.exclusive-carousel .carousel-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
}

.exclusive-carousel .carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.exclusive-carousel .carousel-slide.active {
    opacity: 1;
}

.exclusive-carousel .carousel-wrapper {
    cursor: pointer;
}

.exclusive-watermark {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-25deg);
    font-size: 3.5rem;
    font-weight: 900;
    color: rgba(255, 215, 0, 0.4);
    text-transform: uppercase;
    letter-spacing: 15px;
    pointer-events: none;
    z-index: 5;
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.5);
    white-space: nowrap;
}

/* Exclusive Price Display */
.exclusive-price-display {
    text-align: center;
    padding: 20px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.15), rgba(255, 0, 110, 0.1));
    border-radius: 12px;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.exclusive-price {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffd700;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.exclusive-price-label {
    font-size: 0.85rem;
    color: #aaa;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ============================================
   PAYMENT MODAL
   ============================================ */
.payment-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 3000;
    align-items: center;
    justify-content: center;
    padding: 20px;
    overflow-y: auto;
}

.payment-modal.active {
    display: flex;
}

.payment-modal-content {
    background: linear-gradient(145deg, rgba(25, 25, 25, 0.98), rgba(15, 15, 15, 0.98));
    border-radius: 20px;
    max-width: 380px;
    width: 100%;
    padding: 25px;
    position: relative;
    border: 2px solid rgba(255, 0, 110, 0.3);
    box-shadow: 0 0 50px rgba(255, 0, 110, 0.2), 0 20px 60px rgba(0, 0, 0, 0.5);
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.payment-modal-close {
    position: absolute;
    top: 10px;
    right: 15px;
    background: none;
    border: none;
    color: #888;
    font-size: 1.8rem;
    cursor: pointer;
    transition: color 0.3s ease;
    z-index: 10;
}

.payment-modal-close:hover {
    color: #ff006e;
}

.payment-modal-header {
    text-align: center;
    margin-bottom: 20px;
}

.payment-modal-header h2 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}

.payment-modal-header h2 span {
    color: #4ade80;
    text-shadow: 0 0 15px rgba(74, 222, 128, 0.4);
}

.payment-product-name {
    font-size: 0.85rem;
    color: #aaa;
    font-weight: 500;
}

.payment-qr-section {
    margin-bottom: 20px;
}

/* QR Carousel */
.qr-carousel {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.qr-slide-container {
    width: 250px;
    height: 250px;
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    background: #fff;
}

.qr-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.3s ease;
    padding: 10px;
}

.qr-slide.active {
    opacity: 1;
}

.qr-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 8px;
}

.qr-nav {
    background: rgba(255, 0, 110, 0.8);
    color: #fff;
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.qr-nav:hover {
    background: #ff006e;
    transform: scale(1.1);
}

.qr-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 12px;
}

.qr-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.qr-dot.active {
    background: #ff006e;
    box-shadow: 0 0 10px #ff006e;
}

.btn-payment {
    width: 100%;
    padding: 14px 20px !important;
    font-size: 0.95rem !important;
    justify-content: center;
    gap: 10px;
}

.btn-payment svg {
    flex-shrink: 0;
}

/* ============================================
   ULTIMATE EVERYTHING PACK BANNER
   ============================================ */
.ultimate-banner {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg,
        rgba(20, 10, 30, 0.98) 0%,
        rgba(50, 20, 60, 0.95) 50%,
        rgba(20, 10, 30, 0.98) 100%);
}

.ultimate-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #ffd700, #ff006e, #ffd700, transparent);
}

.ultimate-banner::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #ff006e, #ffd700, #ff006e, transparent);
}

.ultimate-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 0, 110, 0.2) 0%, rgba(255, 215, 0, 0.1) 30%, transparent 70%);
    pointer-events: none;
    animation: ultimate-glow-pulse 4s ease-in-out infinite;
}

@keyframes ultimate-glow-pulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
    50% { transform: translate(-50%, -50%) scale(1.2); opacity: 0.8; }
}

.ultimate-content {
    text-align: center;
    position: relative;
    z-index: 5;
}

.ultimate-badge-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.ultimate-badge {
    background: linear-gradient(135deg, #ffd700, #ff9500);
    color: #000;
    padding: 10px 25px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 800;
    letter-spacing: 2px;
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.5);
}

.ultimate-limited {
    background: #ff006e;
    color: #fff;
    padding: 8px 20px;
    border-radius: 5px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    animation: pulse-scale 1s ease-in-out infinite;
}

@keyframes pulse-scale {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.ultimate-title {
    font-size: 3rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 5px;
}

.ultimate-title span {
    background: linear-gradient(135deg, #ffd700, #ff006e, #ffd700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% auto;
    animation: gradient-shift 3s ease infinite;
}

.ultimate-subtitle {
    font-size: 1.1rem;
    color: #aaa;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.ultimate-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 700px;
    margin: 0 auto 40px;
}

.ultimate-feature {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.05);
    padding: 15px 20px;
    border-radius: 10px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: all 0.3s ease;
}

.ultimate-feature:hover {
    background: rgba(255, 215, 0, 0.1);
    border-color: rgba(255, 215, 0, 0.4);
    transform: translateY(-3px);
}

.uf-icon {
    font-size: 1.3rem;
}

.ultimate-feature span:last-child {
    font-size: 0.9rem;
    font-weight: 600;
    color: #ddd;
}

.ultimate-price-section {
    margin-bottom: 30px;
}

.ultimate-old-price {
    font-size: 1rem;
    color: #888;
    text-decoration: line-through;
    margin-bottom: 5px;
}

.ultimate-price {
    font-size: 4rem;
    font-weight: 900;
    background: linear-gradient(135deg, #ffd700, #ffec8b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
    filter: drop-shadow(0 0 30px rgba(255, 215, 0, 0.5));
    line-height: 1;
    margin-bottom: 10px;
}

.ultimate-save {
    font-size: 0.95rem;
    color: #4ade80;
    font-weight: 600;
}

.btn-ultimate {
    background: linear-gradient(135deg, #ffd700, #ff9500) !important;
    color: #000 !important;
    border: none !important;
    padding: 18px 50px !important;
    font-size: 1.1rem !important;
    font-weight: 700 !important;
    border-radius: 50px !important;
    box-shadow: 0 10px 40px rgba(255, 215, 0, 0.4);
    transition: all 0.3s ease;
}

.btn-ultimate:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 50px rgba(255, 215, 0, 0.6) !important;
    background: linear-gradient(135deg, #ffec8b, #ffd700) !important;
}

@media (max-width: 768px) {
    .ultimate-title {
        font-size: 2rem;
        letter-spacing: 2px;
    }

    .ultimate-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .ultimate-feature {
        padding: 12px 15px;
    }

    .ultimate-price {
        font-size: 3rem;
    }

    .btn-ultimate {
        padding: 15px 35px !important;
        font-size: 1rem !important;
    }
}

@media (max-width: 500px) {
    .ultimate-features {
        grid-template-columns: 1fr 1fr;
    }

    .ultimate-feature span:last-child {
        font-size: 0.8rem;
    }

    .ultimate-badge-row {
        flex-direction: column;
        gap: 10px;
    }
}

/* Product Highlight Animation (for deep linking) */
.product-highlight {
    animation: highlight-pulse 0.5s ease-in-out 3;
}

@keyframes highlight-pulse {
    0%, 100% {
        box-shadow: 0 0 20px rgba(255, 0, 110, 0.15), 0 10px 30px rgba(0, 0, 0, 0.3);
    }
    50% {
        box-shadow: 0 0 40px rgba(255, 0, 110, 0.6), 0 0 80px rgba(255, 0, 110, 0.4), 0 10px 30px rgba(0, 0, 0, 0.3);
    }
}

.exclusive-card.product-highlight {
    animation: highlight-pulse-gold 0.5s ease-in-out 3;
}

@keyframes highlight-pulse-gold {
    0%, 100% {
        box-shadow: 0 0 0 2px rgba(255, 215, 0, 0.3), 0 0 40px rgba(255, 215, 0, 0.15);
    }
    50% {
        box-shadow: 0 0 0 4px rgba(255, 215, 0, 0.8), 0 0 60px rgba(255, 215, 0, 0.5), 0 0 100px rgba(255, 215, 0, 0.3);
    }
}

@media (max-width: 400px) {
    .payment-modal-content {
        padding: 20px 15px;
    }

    .qr-slide-container {
        width: 200px;
        height: 200px;
    }

    .qr-nav {
        width: 30px;
        height: 30px;
        font-size: 0.85rem;
    }
}

/* ============================================
   BUDGET PLAN SECTION
   ============================================ */
.budget-section {
    padding: 80px 0;
    position: relative;
    background: linear-gradient(180deg, rgba(0, 150, 100, 0.05) 0%, transparent 50%, rgba(0, 150, 100, 0.05) 100%);
}

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

.budget-title {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #00d97e, #00b36b, #00ff99);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.budget-icon {
    font-size: 2.5rem;
    -webkit-text-fill-color: initial;
}

.budget-tag {
    background: linear-gradient(135deg, #00d97e, #00ff99);
    -webkit-background-clip: initial;
    -webkit-text-fill-color: initial;
    background-clip: initial;
    color: #000;
    font-size: 0.9rem;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 700;
}

.budget-subtitle {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.2rem;
    margin-top: 10px;
}

.budget-card {
    background: rgba(0, 200, 100, 0.08);
    border: 2px solid rgba(0, 217, 126, 0.3);
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    transition: all 0.4s ease;
}

.budget-card:hover {
    border-color: rgba(0, 217, 126, 0.6);
    box-shadow: 0 0 50px rgba(0, 217, 126, 0.2);
}

.budget-card-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 217, 126, 0.1), transparent);
    animation: budget-shine 4s ease-in-out infinite;
    pointer-events: none;
}

@keyframes budget-shine {
    0%, 100% { left: -100%; }
    50% { left: 100%; }
}

.budget-ribbon {
    position: absolute;
    top: 20px;
    right: -35px;
    background: linear-gradient(135deg, #00d97e, #00ff99);
    color: #000;
    padding: 8px 50px;
    font-size: 0.75rem;
    font-weight: 800;
    transform: rotate(45deg);
    z-index: 10;
    letter-spacing: 1px;
    box-shadow: 0 5px 20px rgba(0, 217, 126, 0.4);
}

.budget-card-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 30px;
    padding: 30px;
}

.budget-carousel {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 16/9;
    background: #111;
}

.budget-carousel .carousel-wrapper {
    height: 100%;
}

.budget-carousel .carousel-slide {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.budget-card-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.budget-badge-wrapper {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.budget-badge {
    background: rgba(0, 217, 126, 0.2);
    border: 1px solid rgba(0, 217, 126, 0.5);
    color: #00ff99;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.budget-deal-tag {
    background: linear-gradient(135deg, #00d97e, #00ff99);
    color: #000;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.7rem;
    font-weight: 800;
    animation: pulse-green 2s ease-in-out infinite;
}

@keyframes pulse-green {
    0%, 100% { box-shadow: 0 0 10px rgba(0, 217, 126, 0.5); }
    50% { box-shadow: 0 0 25px rgba(0, 217, 126, 0.8); }
}

.budget-card-info h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}

.budget-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.budget-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 20px;
}

.budget-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
}

.budget-feature .feature-icon {
    font-size: 1rem;
}

.budget-price-box {
    margin-bottom: 20px;
}

.budget-price-display {
    display: flex;
    align-items: baseline;
    gap: 10px;
}

.budget-price {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #00d97e, #00ff99);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.budget-price-label {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.btn-budget {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, #00d97e, #00b36b) !important;
    color: #000 !important;
    border: none !important;
    padding: 15px 35px;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-decoration: none;
}

.btn-budget:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 217, 126, 0.4);
    background: linear-gradient(135deg, #00ff99, #00d97e) !important;
}

.btn-budget .btn-icon {
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .budget-card-layout {
        grid-template-columns: 1fr;
        padding: 20px;
    }

    .budget-carousel {
        aspect-ratio: 16/9;
    }

    .budget-title {
        font-size: 1.8rem;
    }

    .budget-ribbon {
        right: -40px;
        top: 15px;
        font-size: 0.65rem;
    }
}

@media (max-width: 500px) {
    .budget-features {
        grid-template-columns: 1fr;
    }

    .budget-price {
        font-size: 2rem;
    }
}

.budget-card.product-highlight {
    animation: highlight-pulse-green 0.5s ease-in-out 3;
}

@keyframes highlight-pulse-green {
    0%, 100% {
        box-shadow: 0 0 0 2px rgba(0, 217, 126, 0.3), 0 0 40px rgba(0, 217, 126, 0.15);
    }
    50% {
        box-shadow: 0 0 0 4px rgba(0, 217, 126, 0.8), 0 0 60px rgba(0, 217, 126, 0.5), 0 0 100px rgba(0, 217, 126, 0.3);
    }
}
