:root {
    /* Colors */
    --bg-color: #0d0d0d;
    --surface-color: #161616;
    --surface-color-hover: #1f1f1f;
    --primary-color: #F72585;
    --secondary-color: #7209B7;
    --tertiary-color: #4CC9F0;
    --text-main: #FFFFFF;
    --text-muted: #B3B3B3;
    --text-highlight: #F72585;
    --success-color: #00b894;

    /* Gradients */
    --gradient-main: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    --gradient-surface: linear-gradient(145deg, #1a1a1a, #111111);

    /* Spacing */
    --container-width: 1200px;
    --section-padding: 80px 20px;

    /* Effects */
    --glow: 0 0 20px rgba(247, 37, 133, 0.5);
    --shadow-card: 0 10px 30px rgba(0, 0, 0, 0.5);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-color);
    color: var(--text-main);
    font-family: 'Outfit', 'Inter', sans-serif;
    overflow-x: hidden;
    line-height: 1.6;
}

h1,
h2,
h3,
h4 {
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 10px 30px rgba(247, 37, 133, 0.3);
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    text-align: center;
}

p {
    color: var(--text-muted);
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.section {
    padding: var(--section-padding);
    position: relative;
}

/* Animations */
@keyframes coin-pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(247, 37, 133, 0.7);
    }

    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 15px rgba(247, 37, 133, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(247, 37, 133, 0);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

/* UI Elements */
.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-main);
    color: white;
    font-weight: 700;
    padding: 20px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.25rem;
    text-transform: uppercase;
    transition: all 0.3s ease;
    box-shadow: var(--glow);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 10;
    animation: coin-pulse 2s infinite;
}

.cta-button:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 0 40px rgba(247, 37, 133, 0.7);
}

.cta-button i {
    margin-left: 10px;
}

.highlight-text {
    color: var(--primary-color);
}

.highlight-green {
    color: var(--success-color);
    font-weight: 700;
}

.security-badge {
    font-size: 0.9rem;
    margin-top: 15px;
    font-weight: 600;
    color: #FFD700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.2);
}

.cta-wrapper {
    margin-top: 30px;
    width: 100%;
}

/* HERO SECTION */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at top right, rgba(114, 9, 183, 0.2), transparent 40%),
        radial-gradient(circle at bottom left, rgba(247, 37, 133, 0.1), transparent 40%);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(rgba(13, 13, 13, 0.8), rgba(13, 13, 13, 0.8));
    z-index: 1;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-text {
    text-align: left;
}

.hero-visuals {
    position: relative;
    perspective: 1000px;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-card {
    position: absolute;
    width: 280px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
    transition: transform 0.1s ease-out;
    border: 2px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.hero-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 18px;
    display: block;
}

.hero-card:nth-child(1) {
    transform: translateZ(50px) translateX(-120px) rotateY(-15deg);
    z-index: 1;
}

.hero-card:nth-child(2) {
    transform: translateZ(100px) rotateY(0deg);
    z-index: 3;
    box-shadow: 0 0 50px rgba(247, 37, 133, 0.4);
}

.hero-card:nth-child(3) {
    transform: translateZ(50px) translateX(120px) rotateY(15deg);
    z-index: 1;
}

.countdown-box {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin: 30px 0;
    max-width: fit-content;
    backdrop-filter: blur(5px);
}

.timer {
    font-size: 2rem;
    font-weight: 800;
    font-variant-numeric: tabular-nums;
    color: var(--primary-color);
    text-shadow: 0 0 10px rgba(247, 37, 133, 0.8);
}

/* CARDS 3D GRID */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.glass-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    padding: 40px 30px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    transform-style: preserve-3d;
}

.glass-card h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.glass-card i {
    font-size: 3rem;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
    display: block;
    transition: transform 0.4s ease, filter 0.4s ease;
    filter: drop-shadow(0 5px 15px rgba(247, 37, 133, 0.2));
}

.glass-card:hover i {
    transform: translateZ(20px) scale(1.1);
    filter: drop-shadow(0 15px 25px rgba(247, 37, 133, 0.4));
}

.glass-card:hover {
    transform: translateY(-10px) rotateX(5deg);
    background: rgba(255, 255, 255, 0.06);
    border-color: var(--primary-color);
    box-shadow: 0 20px 40px rgba(247, 37, 133, 0.2);
}

/* OFFER SECTION */
.offer-section {
    background: linear-gradient(to bottom, var(--bg-color), #220214);
}

.pricing-container {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 60px;
    perspective: 1000px;
}

.pricing-card {
    background: var(--surface-color);
    width: 350px;
    border-radius: 30px;
    padding: 40px;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.5s ease;
}

.pricing-card.premium {
    background: linear-gradient(145deg, #1f0110, #161616);
    border: 2px solid var(--primary-color);
    transform: scale(1.1);
    z-index: 10;
    box-shadow: 0 0 60px rgba(247, 37, 133, 0.2);
}

.pricing-card:not(.premium):hover {
    transform: translateY(-10px);
}

.price {
    font-size: 3.5rem;
    font-weight: 800;
    margin: 20px 0;
    color: white;
}

.price span {
    font-size: 1rem;
    color: var(--text-muted);
}

.features-list {
    list-style: none;
    margin: 30px 0;
    text-align: left;
}

.features-list li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    gap: 10px;
}

.features-list li i {
    color: var(--tertiary-color);
}

.badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-main);
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    box-shadow: var(--glow);
}

/* CAROUSEL */
.carousel-wrapper {
    overflow-x: auto;
    display: flex;
    gap: 30px;
    padding: 40px 20px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
}

.carousel-wrapper::-webkit-scrollbar {
    display: none;
}

.carousel-item {
    min-width: 300px;
    max-width: 350px;
    scroll-snap-align: center;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    transition: transform 0.3s ease;
}

.carousel-item img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.carousel-item:hover {
    transform: scale(1.05);
}

/* MOBILE */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 15px;
        /* Reduced from 30px */
    }

    .section {
        padding: 40px 20px;
    }

    .hero {
        min-height: auto;
        /* Allow content to dictate height on mobile */
        padding-top: 60px;
        /* Slight buffer from top */
        padding-bottom: 60px;
    }

    .hero-text {
        text-align: center;
        padding-top: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        /* Force center alignment for flex children */
    }

    .hero-text h1 {
        font-size: 1.8rem;
        line-height: 1.2;
        margin-bottom: 20px;
    }

    .hero-text p {
        font-size: 0.95rem;
        line-height: 1.5;
        max-width: 95%;
        margin-bottom: 20px;
        /* Reduced from 25px */
    }

    .countdown-box {
        margin: 15px auto;
        /* Reduced from 20px */
        width: fit-content;
    }

    .cta-wrapper {
        margin-top: 10px;
        /* Reduced from 30px */
    }

    .security-badge {
        margin-top: 8px;
        /* Reduced from 15px */
    }

    .hero-visuals {
        height: 380px;
        /* Reduced from 400px */
        transform: scale(0.75);
        /* Slackly smaller to take less vertical space */
        margin: -20px auto 0;
        /* Pulled up toward CTA */
        width: 100%;
        max-width: 400px;
    }

    .grid-3 {
        grid-template-columns: 1fr;
    }

    .pricing-card.premium {
        transform: scale(1);
    }

    .cta-button {
        width: 100%;
    }

    .carousel-wrapper {
        padding: 20px 0;
        /* Full width swipe area */
        gap: 15px;
        scroll-padding: 0 5vw;
        /* Centers the snap */
    }

    .carousel-item {
        min-width: 85vw;
        /* Responsive width */
        max-width: 85vw;
        margin-left: 5vw;
        /* Visual offset for first item if needed, mainly relying on scroll-padding */
    }

    .carousel-item:last-child {
        margin-right: 5vw;
    }

    /* REVIEWS CAROUSEL ON MOBILE */
    .reviews-section .grid-3 {
        display: flex;
        overflow-x: auto;
        gap: 15px;
        padding-bottom: 20px;
        scroll-snap-type: x mandatory;
        grid-template-columns: none;
        scrollbar-width: none;
        /* Firefox */
    }

    .reviews-section .grid-3::-webkit-scrollbar {
        display: none;
        /* Chrome/Safari */
    }

    .reviews-section .glass-card {
        min-width: 85vw;
        max-width: 85vw;
        scroll-snap-align: center;
        margin-left: 5vw;
        /* Optional centering adjustment */
    }

    .reviews-section .glass-card:last-child {
        margin-right: 5vw;
    }

    /* FIX FOR STARS ON MOBILE & DESKTOP */
    .reviews-section .glass-card .stars i {
        display: inline-block;
        font-size: 0.9rem;
        background: none;
        -webkit-background-clip: border-box;
        background-clip: border-box;
        -webkit-text-fill-color: #FFD700;
        color: #FFD700;
        margin-bottom: 0;
    }
}

/* SALES NOTIFICATION */
.sales-notification {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: rgba(22, 22, 22, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-left: 4px solid var(--primary-color);
    padding: 15px 20px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    z-index: 1000;
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    max-width: 90%;
    width: 320px;
}

.sales-notification.active {
    transform: translateY(0);
    opacity: 1;
}

.sales-notification img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.sales-notification div {
    display: flex;
    flex-direction: column;
}

.sales-notification strong {
    font-size: 0.9rem;
    color: white;
}

.sales-notification span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.sales-notification .time {
    font-size: 0.75rem;
    color: #2ecc71;
    font-weight: 700;
}

/* PRICING CTA OVERRIDES */
.pricing-card .cta-button {
    background: #FFD700;
    color: #000;
    font-size: 0.78rem;
    padding: 16px 15px;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
    animation: coin-pulse-yellow 2s infinite;
    letter-spacing: -0.01em;
    font-weight: 800;
}

.pricing-card .cta-button:hover {
    background: #ffcc00;
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.5);
    transform: translateY(-3px) scale(1.02);
    color: #000;
}

@keyframes coin-pulse-green {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 184, 148, 0.4);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(0, 184, 148, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(0, 184, 148, 0);
    }
}