:root {
    --primary: #00f3ff;
    --secondary: #ff00ff;
    --bg-dark: #050505;
    --bg-card: #121212;
    --text-light: #ffffff;
    --text-gray: #b3b3b3;
    --accent-gradient: linear-gradient(135deg, #00f3ff 0%, #ff00ff 100%);
    --font-heading: 'Orbitron', sans-serif;
    --font-body: 'Inter', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
    padding-bottom: 80px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 15px;
}

.highlight {
    color: var(--primary);
    text-shadow: 0 0 10px rgba(0, 243, 255, 0.5);
}

/* Hero Section */
.hero {
    position: relative;
    padding: 30px 0 40px;
    background: radial-gradient(circle at center, #1a1a1a 0%, #000000 100%);
    overflow: hidden;
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        linear-gradient(45deg, transparent 48%, rgba(0, 243, 255, 0.05) 50%, transparent 52%),
        linear-gradient(-45deg, transparent 48%, rgba(255, 0, 255, 0.05) 50%, transparent 52%);
    background-size: 40px 40px;
    z-index: 0;
}

.hero .container {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.hero-content {
    width: 100%;
    margin-bottom: 20px;
}

.hero h1 {
    font-size: 1.8rem;
    line-height: 1.2;
    margin-bottom: 15px;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero h2 {
    font-size: 1rem;
    color: var(--text-gray);
    margin-bottom: 15px;
    font-weight: 400;
}

.sub-headline {
    font-size: 0.9rem;
    color: var(--text-gray);
    margin-bottom: 20px;
}

.hero-image {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
}

.floating-img {
    max-width: 100%;
    border-radius: 15px;
    box-shadow: 0 0 30px rgba(0, 243, 255, 0.3);
}

/* CTA Button */
.cta-button {
    display: inline-block;
    background: var(--accent-gradient);
    color: #000;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 900;
    text-decoration: none;
    text-transform: uppercase;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    box-shadow: 0 0 20px rgba(255, 0, 255, 0.5);
    transition: transform 0.3s, box-shadow 0.3s;
}

.cta-button:active {
    transform: scale(0.95);
}

.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 0, 255, 0.7);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(255, 0, 255, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 0, 255, 0);
    }
}

/* Countdown Section */
.countdown-section {
    background: linear-gradient(135deg, rgba(255, 0, 255, 0.1) 0%, rgba(0, 243, 255, 0.1) 100%);
    padding: 25px 0 !important;
}

.countdown-box {
    text-align: center;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 20px;
    border: 2px solid transparent;
    background-image:
        linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)),
        linear-gradient(135deg, var(--secondary), var(--primary));
    background-origin: border-box;
    background-clip: padding-box, border-box;
    box-shadow: 0 10px 40px rgba(255, 0, 255, 0.3);
}

.countdown-box h3 {
    font-size: 1.2rem;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
    font-weight: 900;
    filter: drop-shadow(0 0 10px rgba(255, 0, 255, 0.5));
}

.countdown-timer {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin: 15px 0;
}

.time-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.time-value {
    font-size: 2.5rem;
    font-weight: 900;
    font-family: var(--font-heading);
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    filter: drop-shadow(0 0 15px rgba(0, 243, 255, 0.6));
}

.time-label {
    font-size: 0.7rem;
    color: var(--text-gray);
    text-transform: uppercase;
    margin-top: 5px;
    font-weight: 600;
}

.time-separator {
    font-size: 2rem;
    color: var(--primary);
    font-weight: 900;
    animation: blink 1s infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.3;
    }
}

.urgency-text {
    color: var(--secondary);
    font-size: 0.9rem;
    font-weight: 700;
    margin-top: 10px;
}

/* Sections */
section {
    padding: 30px 0;
}

.section-title {
    font-size: 1.8rem;
    margin-bottom: 25px;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: left;
    padding-left: 15px;
    border-left: 4px solid var(--secondary);
    font-weight: 900;
    filter: drop-shadow(0 0 15px rgba(255, 0, 255, 0.4));
}

/* Problem & Solution */
.grid-2 {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.card {
    background: var(--bg-card);
    padding: 20px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.problem-card h3 {
    color: #ff4444;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.solution-card h3 {
    color: var(--primary);
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.card ul {
    list-style: none;
}

.card li {
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.9rem;
}

.problem-card i {
    color: #ff4444;
    margin-top: 3px;
    font-size: 1rem;
}

.solution-card i {
    color: var(--primary);
    margin-top: 3px;
    font-size: 1rem;
}

/* Details */
.grid-3 {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.feature-box {
    display: flex;
    align-items: center;
    text-align: left;
    padding: 15px;
    gap: 15px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(0, 243, 255, 0.2);
    backdrop-filter: blur(5px);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-3px);
    border-color: var(--primary);
    box-shadow: 0 5px 20px rgba(0, 243, 255, 0.3);
}

.feature-box i {
    font-size: 2.5rem;
    margin-bottom: 0;
    min-width: 40px;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: pulse-icon 2s infinite;
}

@keyframes pulse-icon {

    0%,
    100% {
        transform: scale(1);
        filter: drop-shadow(0 0 5px rgba(0, 243, 255, 0.5));
    }

    50% {
        transform: scale(1.1);
        filter: drop-shadow(0 0 15px rgba(255, 0, 255, 0.8));
    }
}

.feature-box h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    filter: drop-shadow(0 0 8px rgba(0, 243, 255, 0.4));
}

.feature-box p {
    font-size: 0.9rem;
    line-height: 1.3;
    margin: 0;
    color: var(--text-light);
    font-weight: 500;
}

/* Mid CTA Button */
.mid-cta {
    text-align: center;
    margin: 30px 0;
    padding: 20px 0;
}

.mid-cta .cta-button {
    font-size: 1.1rem;
    padding: 16px 35px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

/* Phone Mockup */
.css-phone {
    width: 180px;
    height: 320px;
    background: #000;
    border: 2px solid var(--primary);
    border-radius: 18px;
    margin: 20px auto 0;
    position: relative;
    box-shadow: 0 0 30px rgba(0, 243, 255, 0.3);
    overflow: hidden;
}

.phone-screen {
    background: linear-gradient(180deg, #1a1a1a 0%, #000 100%);
    height: 100%;
    padding: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.screen-header {
    font-family: var(--font-heading);
    color: var(--primary);
    margin-bottom: 15px;
    font-size: 0.7rem;
    letter-spacing: 1px;
}

.bar-chart {
    display: flex;
    align-items: flex-end;
    gap: 8px;
    height: 80px;
    margin-bottom: 15px;
}

.bar {
    width: 12px;
    background: var(--secondary);
    border-radius: 3px 3px 0 0;
    animation: grow 2s infinite alternate;
}

@keyframes grow {
    0% {
        transform: scaleY(0.8);
    }

    100% {
        transform: scaleY(1.2);
    }
}

.check-list {
    text-align: left;
    width: 100%;
    font-size: 0.7rem;
}

.check-list span {
    display: block;
    margin-bottom: 5px;
    color: #fff;
}

.check-list i {
    color: var(--primary);
    margin-right: 5px;
}

/* Authority & Testimonials */
.authority {
    background: #0f0f0f;
}

.auth-content {
    text-align: center;
}

.testimonials-grid {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin: 20px 0;
}

.testimonial-card {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px;
    background: var(--bg-card);
    border-radius: 10px;
    border: 1px solid rgba(255, 0, 255, 0.2);
}

.avatar {
    width: 50px;
    height: 50px;
    min-width: 50px;
    border-radius: 50%;
    background-color: #333;
    background-size: cover;
    background-position: center;
    border: 2px solid var(--primary);
}

.testimonial-card p {
    font-size: 0.9rem;
    margin-bottom: 8px;
    line-height: 1.4;
}

.testimonial-card span {
    font-size: 0.8rem;
    color: var(--primary);
    font-weight: bold;
}

/* Guarantee */
.guarantee-box {
    background: rgba(0, 243, 255, 0.1);
    padding: 20px;
    border-radius: 12px;
    border: 1px solid var(--primary);
    text-align: center;
    margin-top: 20px;
}

.guarantee-box i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 15px;
}

/* Bonus */
.bonus-card {
    background: linear-gradient(135deg, rgba(255, 0, 255, 0.1) 0%, rgba(0, 243, 255, 0.05) 100%);
    padding: 20px;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
    background-image:
        linear-gradient(#000, #000),
        linear-gradient(135deg, var(--secondary), var(--primary));
    background-origin: border-box;
    background-clip: padding-box, border-box;
    margin-bottom: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 25px rgba(255, 0, 255, 0.2);
}

.bonus-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(255, 0, 255, 0.4), 0 0 30px rgba(0, 243, 255, 0.3);
}

.bonus-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 0, 255, 0.1), transparent);
    transform: rotate(45deg);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }

    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

.bonus-card h4 {
    font-size: 1.3rem;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 10px;
    filter: drop-shadow(0 0 10px rgba(255, 0, 255, 0.5));
    position: relative;
    z-index: 1;
}

.bonus-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    font-weight: 500;
    position: relative;
    z-index: 1;
}

.bonus-tag {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--accent-gradient);
    color: #000;
    padding: 6px 12px;
    font-size: 0.75rem;
    border-radius: 20px;
    font-weight: 900;
    font-family: var(--font-heading);
    box-shadow: 0 0 15px rgba(255, 0, 255, 0.6);
    animation: pulse-tag 2s infinite;
    z-index: 2;
}

@keyframes pulse-tag {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 0 15px rgba(255, 0, 255, 0.6);
    }

    50% {
        transform: scale(1.05);
        box-shadow: 0 0 25px rgba(255, 0, 255, 0.9);
    }
}

/* Closing */
.closing {
    background: radial-gradient(circle at center, #2a002a 0%, #000000 100%);
    text-align: center;
}

.closing-box {
    padding: 25px;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid var(--secondary);
}

.big-price {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary);
    text-shadow: 0 0 20px rgba(0, 243, 255, 0.5);
    margin: 15px 0;
}

.big-cta {
    font-size: 1rem;
    padding: 15px 30px;
}

.old-price {
    text-decoration: line-through;
    color: #ff4444;
}

.payment-methods {
    margin-top: 20px;
    font-size: 1.5rem;
    color: var(--text-gray);
    display: flex;
    justify-content: center;
    gap: 15px;
}

/* Footer */
footer {
    padding: 30px 0;
    text-align: center;
    color: var(--text-gray);
    font-size: 0.85rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Sticky CTA Mobile */
.sticky-cta-mobile {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(5, 5, 5, 0.98);
    backdrop-filter: blur(10px);
    border-top: 2px solid var(--primary);
    padding: 12px 15px;
    z-index: 9999;
    display: flex;
    justify-content: center;
    box-shadow: 0 -5px 20px rgba(0, 243, 255, 0.3);
}

.sticky-cta-mobile .cta-button {
    width: 100%;
    max-width: 400px;
    padding: 14px;
    font-size: 1rem;
    text-align: center;
}

@media (min-width: 768px) {
    body {
        padding-bottom: 0;
    }

    .sticky-cta-mobile {
        display: none;
    }
}