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

@keyframes glitch {
    0% { text-shadow: 2px 2px #DC2626, -2px -2px #00ff00; }
    50% { text-shadow: -2px 2px #DC2626, 2px -2px #00ff00; }
    100% { text-shadow: 2px 2px #DC2626, -2px -2px #00ff00; }
}

@keyframes flicker {
    0%, 18%, 22%, 25%, 54%, 56%, 100% { opacity: 1; }
    20%, 24%, 55% { opacity: 0; }
}

@keyframes pulse-scary {
    0%, 100% { box-shadow: 0 0 5px #DC2626, inset 0 0 5px rgba(220,38,38,0.1); }
    50% { box-shadow: 0 0 20px #DC2626, inset 0 0 20px rgba(220,38,38,0.2); }
}

body {
    font-family: 'Courier New', monospace;
    line-height: 1.6;
    color: #00ff00;
    background: #0a0a0a;
    overflow-x: hidden;
}

/* Scanlines effect */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        0deg,
        rgba(0, 0, 0, 0.1),
        rgba(0, 0, 0, 0.1) 1px,
        transparent 1px,
        transparent 2px
    );
    pointer-events: none;
    z-index: 999;
}

/* Navigation */
nav {
    background: #1a0000;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 3px solid #DC2626;
    box-shadow: 0 0 20px rgba(220,38,38,0.3);
}

.logo {
    font-size: 2rem;
    font-weight: bold;
    color: #DC2626;
    animation: glitch 2s infinite;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: #00ff00;
    transition: all 0.3s;
    font-size: 0.9rem;
}

.nav-links a:hover {
    color: #DC2626;
    text-shadow: 0 0 10px #DC2626;
}

.cta-button {
    background: #DC2626;
    color: #000;
    padding: 0.7rem 1.5rem;
    border: 2px solid #00ff00;
    border-radius: 0;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.3s;
    text-decoration: none;
    font-weight: bold;
    animation: pulse-scary 2s infinite;
}

.cta-button:hover {
    background: #00ff00;
    color: #000;
    box-shadow: 0 0 20px #00ff00;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #1a0000 0%, #2d0000 50%, #1a0000 100%);
    color: #00ff00;
    padding: 8rem 2rem;
    text-align: center;
    border-bottom: 5px dashed #DC2626;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '⚠️ WARNING: DOWNTIME DETECTED ⚠️';
    position: absolute;
    top: -30px;
    left: 0;
    right: 0;
    font-size: 1.2rem;
    color: #DC2626;
    animation: flicker 2s infinite;
    text-shadow: 0 0 10px #DC2626;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: #DC2626;
    text-shadow: 0 0 20px #DC2626;
    animation: glitch 2s infinite;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    color: #00ff00;
}

.subtext {
    font-size: 1rem;
    color: #ff6666;
    margin-bottom: 3rem;
    font-style: italic;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    background: #00ff00;
    color: #000;
    padding: 1rem 2rem;
    border: 2px solid #DC2626;
    border-radius: 0;
    cursor: pointer;
    border-radius: 0;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
    font-family: 'Courier New', monospace;
    text-transform: uppercase;
    animation: pulse-scary 2s infinite;
}

.btn-primary:hover {
    background: #DC2626;
    color: #00ff00;
    box-shadow: 0 0 30px #00ff00;
}

.btn-secondary {
    background: transparent;
    color: #DC2626;
    border: 2px dashed #DC2626;
    padding: 0.9rem 2rem;
    border-radius: 0;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
    font-family: 'Courier New', monospace;
    text-transform: uppercase;
}

.btn-secondary:hover {
    background: rgba(220,38,38,0.2);
    box-shadow: 0 0 15px #DC2626;
}

/* Horrible Stats */
.horror-stats {
    background: #1a0000;
    color: #DC2626;
    padding: 3rem 2rem;
    border: 3px solid #DC2626;
    margin: 3rem 2rem;
    text-align: center;
}

.horror-stats h2 {
    color: #00ff00;
    margin-bottom: 2rem;
    font-size: 1.8rem;
    text-transform: uppercase;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.stat-horror {
    padding: 1.5rem;
    border-left: 4px solid #DC2626;
    background: rgba(220,38,38,0.05);
}

.stat-horror .number {
    font-size: 2rem;
    color: #00ff00;
    font-weight: bold;
}

.stat-horror .label {
    color: #ff6666;
    font-size: 0.9rem;
    margin-top: 0.5rem;
    text-transform: uppercase;
}

/* Features as "Nightmares Prevented" */
.nightmares {
    padding: 4rem 2rem;
    background: #0a0a0a;
}

.nightmares h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #DC2626;
    text-transform: uppercase;
    text-shadow: 0 0 20px #DC2626;
    animation: glitch 3s infinite;
}

.nightmares-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.nightmare-card {
    background: #1a0000;
    padding: 2rem;
    border: 2px solid #DC2626;
    border-radius: 0;
    box-shadow: inset 0 0 20px rgba(220,38,38,0.2);
    transition: all 0.3s;
}

.nightmare-card:hover {
    box-shadow: 0 0 30px #DC2626, inset 0 0 20px rgba(220,38,38,0.2);
    background: rgba(220,38,38,0.1);
}

.nightmare-card .emoji {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.nightmare-card h3 {
    color: #00ff00;
    margin-bottom: 0.8rem;
    font-size: 1.3rem;
    text-transform: uppercase;
}

.nightmare-card p {
    color: #ff6666;
    line-height: 1.7;
}

/* Testimonials from the dead */
.dead-sites {
    background: #1a0000;
    color: #00ff00;
    padding: 4rem 2rem;
    border-top: 5px solid #DC2626;
    border-bottom: 5px solid #DC2626;
}

.dead-sites h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #DC2626;
    text-transform: uppercase;
}

.testimonials {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial {
    background: #0a0a0a;
    padding: 2rem;
    border-left: 4px solid #DC2626;
    opacity: 0.7;
}

.testimonial.saved {
    opacity: 1;
    border-left: 4px solid #00ff00;
    background: rgba(0, 255, 0, 0.05);
}

.testimonial-text {
    font-size: 0.95rem;
    margin-bottom: 1rem;
    font-style: italic;
}

.testimonial-author {
    color: #DC2626;
    font-weight: bold;
    font-size: 0.9rem;
}

.status {
    color: #ff6666;
    font-size: 0.8rem;
    margin-top: 0.5rem;
}

.saved .status {
    color: #00ff00;
}

/* Pricing - The only sensible section */
.pricing {
    padding: 4rem 2rem;
    background: #0a0a0a;
}

.pricing h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #00ff00;
    text-transform: uppercase;
}

.pricing-subtitle {
    text-align: center;
    color: #DC2626;
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-card {
    border: 2px solid #DC2626;
    border-radius: 0;
    padding: 2rem;
    text-align: center;
    background: #1a0000;
    transition: all 0.3s;
    position: relative;
}

.pricing-card.featured {
    border: 3px solid #00ff00;
    box-shadow: 0 0 30px rgba(0,255,0,0.3);
    transform: scale(1.05);
    background: rgba(0,255,0,0.05);
}

.pricing-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #00ff00;
    text-transform: uppercase;
}

.price {
    font-size: 2.5rem;
    color: #DC2626;
    margin-bottom: 0.5rem;
    font-weight: bold;
}

.price-period {
    color: #ff6666;
    margin-bottom: 1.5rem;
}

.features-list {
    text-align: left;
    margin-bottom: 2rem;
    color: #00ff00;
}

.features-list li {
    padding: 0.5rem 0;
    list-style: none;
}

.features-list li:before {
    content: "✓ ";
    color: #00ff00;
    font-weight: bold;
    margin-right: 0.5rem;
}

.pricing-card button {
    width: 100%;
    padding: 1rem;
    background: #DC2626;
    color: #00ff00;
    border: 2px solid #00ff00;
    border-radius: 0;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Courier New', monospace;
    text-transform: uppercase;
}

.pricing-card button:hover {
    background: #00ff00;
    color: #DC2626;
    box-shadow: 0 0 20px #00ff00;
}

/* Final CTA - Dramatic */
.final-warning {
    background: linear-gradient(135deg, #2d0000 0%, #1a0000 50%, #2d0000 100%);
    color: #00ff00;
    padding: 5rem 2rem;
    text-align: center;
    border: 5px dashed #DC2626;
    margin: 3rem 2rem;
}

.final-warning h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #DC2626;
    text-transform: uppercase;
    text-shadow: 0 0 20px #DC2626;
    animation: flicker 2s infinite;
}

.final-warning p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.countdown {
    color: #ff6666;
    font-size: 1.3rem;
    margin-bottom: 2rem;
    font-weight: bold;
}

/* Footer */
footer {
    background: #000;
    color: #00ff00;
    padding: 2rem;
    text-align: center;
    border-top: 3px solid #DC2626;
    font-size: 0.9rem;
}

footer a {
    color: #DC2626;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

.footer-warning {
    color: #ff6666;
    margin-top: 1rem;
    font-size: 0.8rem;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    background: none;
    border: 2px solid #00ff00;
    color: #00ff00;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem 1rem;
    min-width: 50px;
    height: 50px;
    align-items: center;
    justify-content: center;
}

.menu-toggle:hover {
    box-shadow: 0 0 10px #00ff00;
}

.menu-toggle .hamburger,
.menu-toggle .close-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: bold;
}

/* Tablet and Mobile Responsive */
@media (max-width: 1024px) {
    nav {
        padding: 1rem;
    }

    .logo {
        font-size: 1.5rem;
    }

    .nav-links {
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    /* Navigation */
    .menu-toggle {
        display: block;
    }

    nav {
        flex-wrap: wrap;
        gap: 1rem;
    }

    .nav-links {
        display: none;
        width: 100%;
        flex-direction: column;
        gap: 0.5rem;
        background: #1a0000;
        padding: 1rem;
        border-top: 2px solid #DC2626;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links a {
        padding: 0.7rem;
        border-left: 3px solid #DC2626;
        padding-left: 1rem;
    }

    .logo {
        font-size: 1.2rem;
        letter-spacing: 1px;
    }

    /* Hero Section */
    .hero {
        padding: 4rem 1rem 5rem;
    }

    .hero h1 {
        font-size: 1.8rem;
        margin-bottom: 0.5rem;
        letter-spacing: 1px;
    }

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

    .subtext {
        font-size: 0.9rem;
    }

    .hero-buttons {
        gap: 0.5rem;
    }

    .btn-primary, .btn-secondary {
        padding: 0.8rem 1.2rem;
        font-size: 0.9rem;
    }

    /* Horror Stats */
    .horror-stats {
        margin: 2rem 1rem;
        padding: 2rem 1rem;
    }

    .horror-stats h2 {
        font-size: 1.4rem;
        margin-bottom: 1.5rem;
    }

    .stats-grid {
        gap: 1rem;
    }

    .stat-horror {
        padding: 1rem;
    }

    .stat-horror .number {
        font-size: 1.8rem;
    }

    /* Nightmares Section */
    .nightmares {
        padding: 2rem 1rem;
    }

    .nightmares h2 {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }

    .nightmares-grid {
        gap: 1.5rem;
    }

    .nightmare-card {
        padding: 1.5rem;
    }

    .nightmare-card .emoji {
        font-size: 2rem;
        margin-bottom: 0.8rem;
    }

    .nightmare-card h3 {
        font-size: 1.1rem;
    }

    .nightmare-card p {
        font-size: 0.95rem;
    }

    /* Testimonials */
    .dead-sites {
        padding: 2rem 1rem;
    }

    .dead-sites h2 {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }

    .testimonials {
        gap: 1rem;
    }

    .testimonial {
        padding: 1.5rem;
    }

    .testimonial-text {
        font-size: 0.9rem;
    }

    /* Pricing */
    .pricing {
        padding: 2rem 1rem;
    }

    .pricing h2 {
        font-size: 1.8rem;
        margin-bottom: 0.8rem;
    }

    .pricing-subtitle {
        font-size: 0.95rem;
        margin-bottom: 2rem;
    }

    .pricing-grid {
        gap: 1.5rem;
    }

    .pricing-card {
        padding: 1.5rem;
    }

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

    .pricing-card h3 {
        font-size: 1.2rem;
    }

    .price {
        font-size: 2rem;
    }

    .features-list {
        font-size: 0.9rem;
    }

    .pricing-card button {
        padding: 0.8rem;
        font-size: 0.9rem;
    }

    /* Final Warning */
    .final-warning {
        margin: 2rem 1rem;
        padding: 2rem 1rem;
    }

    .final-warning h2 {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }

    .final-warning p {
        font-size: 1rem;
    }

    .countdown {
        font-size: 1.1rem;
    }

    /* Footer */
    footer {
        padding: 1.5rem 1rem;
        font-size: 0.85rem;
    }

    footer p {
        margin-bottom: 0.5rem;
    }

    .footer-warning {
        font-size: 0.75rem;
        margin-top: 0.8rem;
    }
}

@media (max-width: 480px) {
    /* Extra small screens */
    .hero h1 {
        font-size: 1.4rem;
        letter-spacing: 0.5px;
    }

    .hero p {
        font-size: 0.9rem;
    }

    .subtext {
        font-size: 0.8rem;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn-primary, .btn-secondary {
        width: 100%;
    }

    .nav-links {
        gap: 0;
    }

    .nightmares h2, .pricing h2, .dead-sites h2 {
        font-size: 1.5rem;
    }

    .stat-horror .number {
        font-size: 1.5rem;
    }

    .nightmare-card .emoji {
        font-size: 1.8rem;
    }

    .price {
        font-size: 1.8rem;
    }

    .final-warning h2 {
        font-size: 1.5rem;
    }

    /* Modal Responsive */
    .modal-dialog.modal-xl {
        max-width: 95%;
        margin: 1rem auto;
    }

    .modal-content {
        margin: 0.5rem;
    }

    .modal-body {
        padding: 1rem !important;
    }

    .row.g-3.align-items-center .col-md-8,
    .row.g-3.align-items-center .col-md-4 {
        margin-bottom: 0.5rem;
    }

    .modal-body .form-control {
        margin-bottom: 0.5rem;
    }

    .row.g-3.mb-4 .col-md-3 {
        margin-bottom: 1rem;
    }

    .row.g-3.mb-4 .col-md-6 {
        margin-bottom: 1rem;
    }
}
