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

body {
    font-family: 'Arial Black', 'Arial', sans-serif;
    overflow-x: hidden;
    background: #000;
    color: #fff;
    padding-top: 80px;
}

/* Navigation Styles */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    padding: 15px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 10000;
    border-bottom: 3px solid #FFE600;
    box-shadow: 0 4px 20px rgba(255, 230, 0, 0.3);
}

.logo {
    font-size: 1.8rem;
    font-weight: 900;
    color: #FFE600;
    text-shadow: 2px 2px 0px #FF0000;
    text-decoration: none;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
}

.logo-image {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s;
    padding: 10px 20px;
    border: 2px solid transparent;
}

.nav-links a:hover,
.nav-links a.active {
    color: #FFE600;
    border: 2px solid #FFE600;
    box-shadow: 0 0 20px rgba(255, 230, 0, 0.5);
}

.mobile-menu-toggle {
    display: none;
    background: #FFE600;
    color: #000;
    border: none;
    padding: 10px 20px;
    font-size: 1.5rem;
    font-weight: 900;
    cursor: pointer;
}

.flash-border {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 9999;
    border: 8px solid transparent;
    animation: borderFlash 1.5s infinite;
}

@keyframes borderFlash {
    0%, 100% { border-color: #FF0000; box-shadow: inset 0 0 50px rgba(255,0,0,0.5); }
    25% { border-color: #FFE600; box-shadow: inset 0 0 50px rgba(255,230,0,0.5); }
    50% { border-color: #FF6B00; box-shadow: inset 0 0 50px rgba(255,107,0,0.5); }
    75% { border-color: #00FF00; box-shadow: inset 0 0 50px rgba(0,255,0,0.5); }
}

.hero {
    background: linear-gradient(135deg, #FF0000 0%, #FF6B00 50%, #FFE600 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    animation: bgPulse 3s infinite;
}

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

.hero::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: 
        repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(255,255,255,0.03) 2px, rgba(255,255,255,0.03) 4px),
        repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(255,255,255,0.03) 2px, rgba(255,255,255,0.03) 4px);
    animation: scanlines 8s linear infinite;
}

@keyframes scanlines {
    0% { transform: translateY(0); }
    100% { transform: translateY(50px); }
}

.hero::after {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, transparent 70%);
    animation: spotlight 4s ease-in-out infinite;
}

@keyframes spotlight {
    0%, 100% { transform: translate(-50%, -50%); opacity: 0.3; }
    50% { transform: translate(-30%, -30%); opacity: 0.6; }
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 40px 20px;
    max-width: 1400px;
}

.badge {
    background: #FF0000;
    padding: 15px 35px;
    border-radius: 0;
    display: inline-block;
    margin-bottom: 30px;
    font-weight: 900;
    font-size: 1.2rem;
    letter-spacing: 3px;
    animation: badgePulse 1s infinite;
    box-shadow: 0 0 30px rgba(255,0,0,0.8), 0 0 60px rgba(255,0,0,0.5);
    border: 3px solid #fff;
    transform: rotate(-2deg);
}

@keyframes badgePulse {
    0%, 100% { transform: rotate(-2deg) scale(1); }
    50% { transform: rotate(-2deg) scale(1.05); }
}

.icon {
    display: inline-block;
    width: 40px;
    height: 40px;
    margin-right: 10px;
    vertical-align: middle;
}

h1 {
    font-size: clamp(2rem, 10vw, 6rem);
    font-weight: 900;
    margin-bottom: 20px;
    text-shadow: 
        4px 4px 0px #000,
        8px 8px 0px rgba(255,0,0,0.5),
        12px 12px 20px rgba(255,230,0,0.3);
    line-height: 1.1;
    letter-spacing: -2px;
    animation: titleShake 0.5s infinite;
}

@keyframes titleShake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-1px) rotate(-0.2deg); }
    75% { transform: translateX(1px) rotate(0.2deg); }
}

.highlight {
    color: #FFE600;
    text-shadow: 
        0 0 10px #FFE600,
        0 0 20px #FFE600,
        0 0 30px #FFE600,
        0 0 40px #FF6B00,
        4px 4px 0px #000;
    animation: textGlow 1s infinite;
}

@keyframes textGlow {
    0%, 100% { text-shadow: 0 0 10px #FFE600, 0 0 20px #FFE600, 0 0 30px #FFE600, 4px 4px 0px #000; }
    50% { text-shadow: 0 0 20px #FFE600, 0 0 40px #FFE600, 0 0 60px #FFE600, 0 0 80px #FF6B00, 4px 4px 0px #000; }
}

.subtitle {
    font-size: clamp(1.2rem, 3vw, 2.5rem);
    margin-bottom: 40px;
    text-shadow: 3px 3px 0px #000;
    font-weight: 700;
    animation: subtitleFlash 2s infinite;
}

@keyframes subtitleFlash {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; color: #FFE600; }
}

.cta-container {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.cta-button {
    background: linear-gradient(45deg, #FFE600, #FFF000);
    color: #000;
    padding: 25px 60px;
    font-size: 1.8rem;
    font-weight: 900;
    border: 5px solid #000;
    cursor: pointer;
    transition: all 0.2s;
    box-shadow: 
        0 0 20px rgba(255,230,0,0.6),
        0 0 40px rgba(255,230,0,0.4),
        0 10px 0 #CC8800,
        0 15px 30px rgba(0,0,0,0.5);
    text-decoration: none;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 2px;
    animation: buttonPulse 1.5s infinite;
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.8), transparent);
    animation: buttonShine 3s infinite;
}

@keyframes buttonShine {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

@keyframes buttonPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.02); box-shadow: 0 0 30px rgba(255,230,0,0.8), 0 0 60px rgba(255,230,0,0.6), 0 10px 0 #CC8800; }
}

.cta-button:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 
        0 0 40px rgba(255,230,0,1),
        0 0 80px rgba(255,230,0,0.8),
        0 15px 0 #CC8800,
        0 20px 40px rgba(0,0,0,0.7);
}

.cta-secondary {
    background: linear-gradient(45deg, #FF0000, #FF4400);
    color: #fff;
    border: 5px solid #fff;
    box-shadow: 
        0 0 20px rgba(255,0,0,0.6),
        0 0 40px rgba(255,0,0,0.4),
        0 10px 0 #880000,
        0 15px 30px rgba(0,0,0,0.5);
}

.stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.stat-card {
    background: rgba(0,0,0,0.7);
    padding: 30px;
    border: 5px solid #FFE600;
    position: relative;
    transition: all 0.3s;
    box-shadow: 0 0 20px rgba(255,230,0,0.5);
    animation: statFloat 3s ease-in-out infinite;
}

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

.stat-card:nth-child(2) { animation-delay: 0.5s; }
.stat-card:nth-child(3) { animation-delay: 1s; }
.stat-card:nth-child(4) { animation-delay: 1.5s; }

.stat-card::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: linear-gradient(45deg, #FF0000, #FFE600, #00FF00, #0000FF);
    z-index: -1;
    animation: borderRotate 3s linear infinite;
    opacity: 0.5;
}

@keyframes borderRotate {
    0% { filter: hue-rotate(0deg); }
    100% { filter: hue-rotate(360deg); }
}

.stat-card:hover {
    transform: scale(1.1) translateY(-15px);
    box-shadow: 0 0 40px rgba(255,230,0,1);
}

.stat-number {
    font-size: 4rem;
    font-weight: 900;
    color: #FFE600;
    margin-bottom: 10px;
    text-shadow: 
        0 0 10px #FFE600,
        3px 3px 0px #000;
    animation: numberGlow 2s infinite;
}

@keyframes numberGlow {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); color: #FFF; }
}

.problem-section {
    background: #000;
    padding: 100px 20px;
    position: relative;
}

.problem-section::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: 
        repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(255,0,0,0.05) 10px, rgba(255,0,0,0.05) 20px);
    animation: diagonalMove 20s linear infinite;
}

@keyframes diagonalMove {
    0% { transform: translateX(0) translateY(0); }
    100% { transform: translateX(20px) translateY(20px); }
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

h2 {
    font-size: clamp(2rem, 6vw, 4.5rem);
    text-align: center;
    margin-bottom: 60px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #fff;
    text-shadow: 
        3px 3px 0px #FF0000,
        6px 6px 0px #FFE600,
        9px 9px 20px rgba(0,0,0,0.5);
    animation: headingShake 0.3s infinite;
}

@keyframes headingShake {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-0.3deg); }
    75% { transform: rotate(0.3deg); }
}

.problems-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.problem-card {
    background: linear-gradient(135deg, #1a1a1a, #000);
    padding: 40px;
    border: 5px solid #FF0000;
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 0 20px rgba(255,0,0,0.5),
        inset 0 0 50px rgba(255,0,0,0.1);
    animation: cardPulse 2s infinite;
}

@keyframes cardPulse {
    0%, 100% { box-shadow: 0 0 20px rgba(255,0,0,0.5), inset 0 0 50px rgba(255,0,0,0.1); }
    50% { box-shadow: 0 0 40px rgba(255,0,0,0.8), inset 0 0 80px rgba(255,0,0,0.2); }
}

.problem-card::before {
    content: '!';
    position: absolute;
    top: -50px;
    right: -50px;
    font-size: 15rem;
    opacity: 0.1;
    color: #FF0000;
    font-weight: 900;
    animation: warningRotate 4s linear infinite;
}

@keyframes warningRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.problem-card h3 {
    color: #FFE600;
    font-size: 2rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    text-shadow: 2px 2px 0px #000;
}

.solution-section {
    background: linear-gradient(180deg, #1a1a1a 0%, #000 100%);
    padding: 100px 20px;
    position: relative;
    overflow: hidden;
}

.solution-section::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(255,230,0,0.1) 0%, transparent 50%);
    animation: radialPulse 5s ease-in-out infinite;
}

@keyframes radialPulse {
    0%, 100% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.5); opacity: 0.6; }
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 1;
}

.feature-card {
    background: linear-gradient(135deg, #FF6B00, #FF8C00);
    padding: 40px;
    text-align: center;
    transition: all 0.3s;
    cursor: pointer;
    border: 5px solid #000;
    position: relative;
    box-shadow: 0 10px 30px rgba(255,107,0,0.4);
}

.feature-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.3) 50%, transparent 70%);
    animation: cardShine 3s infinite;
}

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

.feature-card:hover {
    transform: scale(1.1) rotate(2deg);
    box-shadow: 
        0 20px 60px rgba(255,107,0,0.8),
        0 0 40px rgba(255,230,0,0.6);
    border-color: #FFE600;
}

.feature-icon {
    font-size: 5rem;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 10px rgba(0,0,0,0.5));
}

.feature-card h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    text-transform: uppercase;
    text-shadow: 2px 2px 0px #000;
}

.pricing-section {
    background: #000;
    padding: 100px 20px;
    position: relative;
}

.pricing-section::before {
    content: 'LIMITED TIME OFFER';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
    font-size: 10rem;
    opacity: 0.03;
    font-weight: 900;
    white-space: nowrap;
    animation: watermarkPulse 3s infinite;
}

@keyframes watermarkPulse {
    0%, 100% { opacity: 0.03; }
    50% { opacity: 0.08; }
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.pricing-card {
    background: linear-gradient(135deg, #2a2a2a, #1a1a1a);
    padding: 50px 40px;
    border: 5px solid #FFE600;
    text-align: center;
    position: relative;
    transition: all 0.3s;
    box-shadow: 0 0 30px rgba(255,230,0,0.3);
}

.pricing-card.featured {
    transform: scale(1.1);
    box-shadow: 
        0 0 50px rgba(255,230,0,0.6),
        0 0 100px rgba(255,0,0,0.4);
    animation: featuredGlow 2s infinite;
    border-width: 8px;
}

@keyframes featuredGlow {
    0%, 100% { box-shadow: 0 0 50px rgba(255,230,0,0.6), 0 0 100px rgba(255,0,0,0.4); }
    50% { box-shadow: 0 0 70px rgba(255,230,0,0.9), 0 0 140px rgba(255,0,0,0.6); }
}

.pricing-badge {
    position: absolute;
    top: -20px;
    right: -20px;
    background: #FF0000;
    color: #fff;
    padding: 15px 30px;
    font-weight: 900;
    font-size: 1.1rem;
    border: 5px solid #FFE600;
    transform: rotate(15deg);
    box-shadow: 0 0 20px rgba(255,0,0,0.8);
    animation: badgeWiggle 1s infinite;
    letter-spacing: 2px;
}

@keyframes badgeWiggle {
    0%, 100% { transform: rotate(15deg); }
    25% { transform: rotate(12deg); }
    75% { transform: rotate(18deg); }
}

.price {
    font-size: 5rem;
    font-weight: 900;
    color: #FFE600;
    margin: 20px 0;
    text-shadow: 
        0 0 20px #FFE600,
        3px 3px 0px #000;
    animation: priceFlash 1.5s infinite;
}

@keyframes priceFlash {
    0%, 100% { color: #FFE600; }
    50% { color: #FFF; transform: scale(1.05); }
}

.price-small {
    font-size: 1.5rem;
    opacity: 0.9;
}

.features-list {
    list-style: none;
    margin: 30px 0;
    text-align: left;
}

.features-list li {
    padding: 15px 0;
    border-bottom: 2px solid #333;
    font-size: 1.1rem;
    font-weight: 700;
}

.features-list li::before {
    content: '✓';
    color: #00FF00;
    font-weight: 900;
    margin-right: 15px;
    font-size: 1.5rem;
    text-shadow: 0 0 10px #00FF00;
}

.urgency-banner {
    background: linear-gradient(90deg, #FF0000, #FFE600, #FF0000);
    background-size: 200% 100%;
    padding: 40px;
    text-align: center;
    font-size: 2rem;
    font-weight: 900;
    animation: urgencySlide 3s linear infinite;
    border-top: 5px solid #000;
    border-bottom: 5px solid #000;
    letter-spacing: 3px;
    text-transform: uppercase;
    box-shadow: 
        inset 0 0 30px rgba(0,0,0,0.5),
        0 0 40px rgba(255,0,0,0.5);
}

@keyframes urgencySlide {
    0% { background-position: 0% 50%; }
    100% { background-position: 200% 50%; }
}

.testimonials {
    background: linear-gradient(180deg, #1a1a1a 0%, #000 100%);
    padding: 100px 20px;
}

.testimonial-card {
    background: linear-gradient(135deg, #2a2a2a, #1a1a1a);
    padding: 40px;
    margin: 30px 0;
    border-left: 10px solid #FFE600;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -30px;
    left: 20px;
    font-size: 15rem;
    opacity: 0.1;
    color: #FFE600;
    font-family: Georgia, serif;
}

.testimonial-text {
    font-size: 1.3rem;
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.8;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    color: #FFE600;
    font-weight: 900;
    font-size: 1.2rem;
    text-transform: uppercase;
}

.final-cta {
    background: linear-gradient(135deg, #FF0000 0%, #FF6B00 50%, #FFE600 100%);
    padding: 100px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: 
        repeating-linear-gradient(45deg, transparent, transparent 20px, rgba(0,0,0,0.1) 20px, rgba(0,0,0,0.1) 40px);
    animation: stripesMove 20s linear infinite;
}

@keyframes stripesMove {
    0% { transform: translateX(0) translateY(0); }
    100% { transform: translateX(40px) translateY(40px); }
}

.guarantee {
    background: rgba(0,0,0,0.8);
    padding: 40px;
    margin: 40px auto;
    max-width: 700px;
    border: 8px dashed #FFE600;
    position: relative;
    z-index: 1;
    box-shadow: 0 0 40px rgba(255,230,0,0.5);
    animation: guaranteePulse 2s infinite;
}

@keyframes guaranteePulse {
    0%, 100% { border-color: #FFE600; }
    50% { border-color: #FFF; box-shadow: 0 0 60px rgba(255,230,0,0.8); }
}

footer {
    background: #000;
    padding: 40px 20px;
    text-align: center;
    border-top: 5px solid #FFE600;
}

.strobe {
    animation: strobeEffect 0.1s infinite;
}

@keyframes strobeEffect {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.countdown {
    font-size: 3rem;
    color: #FF0000;
    font-weight: 900;
    text-shadow: 0 0 20px #FF0000;
    animation: countdownPulse 1s infinite;
}

@keyframes countdownPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    nav {
        padding: 15px 20px;
    }

    .logo {
        font-size: 1.3rem;
    }

    .logo-image {
        height: 35px;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 65px;
        left: -100%;
        flex-direction: column;
        background: rgba(0, 0, 0, 0.98);
        width: 100%;
        padding: 20px;
        gap: 10px;
        transition: left 0.3s;
        border-bottom: 3px solid #FFE600;
    }

    .nav-links.active {
        left: 0;
    }

    .nav-links a {
        width: 100%;
        text-align: center;
    }

    h1 {
font-size: clamp(1.5rem, 8vw, 3rem) !important;
letter-spacing: -1px;
    }

    .subtitle {
font-size: clamp(1rem, 4vw, 1.5rem) !important;
    }

    .cta-button {
padding: 20px 40px;
font-size: 1.3rem;
width: 100%;
margin: 10px 0;
    }

    .badge {
font-size: 0.9rem;
padding: 10px 20px;
    }

    .stats {
grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
gap: 15px;
    }

    .stat-number {
font-size: 2.5rem;
    }

    .problems-grid,
    .features-grid,
    .pricing-cards {
grid-template-columns: 1fr;
gap: 20px;
    }

    .problem-card,
    .feature-card,
    .pricing-card {
padding: 30px 20px;
    }

    h2 {
font-size: clamp(1.5rem, 5vw, 2.5rem) !important;
    }

    .urgency-banner {
font-size: 1.2rem;
padding: 20px;
    }

    .countdown {
font-size: 1.8rem;
    }

    .price {
font-size: 3rem;
    }

    .pricing-card.featured {
transform: scale(1);
    }

    .hero-content {
padding: 20px 15px;
    }

    .container {
padding: 0 15px;
    }

    .flash-border {
border-width: 4px;
    }
}

@media (max-width: 480px) {
    .cta-button {
font-size: 1.1rem;
padding: 15px 30px;
    }

    .stat-card {
padding: 20px;
    }

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

    .problem-card h3,
    .feature-card h3 {
font-size: 1.3rem;
    }
}
