/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Fira Code', 'Roboto Mono', monospace;
    background: #0a0a0a;
    color: #00ff41;
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Matrix Canvas Background */
#matrix-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.1;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #00ff41;
    z-index: 1000;
    padding: 1rem 0;
}

.nav {
    display: flex;
    justify-content: center;
    align-items: center;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 600;
    color: #00ff41;
}

.nav-brand i {
    font-size: 2rem;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 80px;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(0, 255, 65, 0.1) 0%, transparent 70%);
    z-index: -1;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 0 0 20px rgba(0, 255, 65, 0.5);
}

.highlight {
    color: #ff0040;
    text-shadow: 0 0 20px rgba(255, 0, 64, 0.5);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    margin-bottom: 2.5rem;
    color: #cccccc;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    margin-top: 2rem;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(45deg, #00ff41, #00cc33);
    color: #000;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 255, 65, 0.3);
    border: 2px solid transparent;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 255, 65, 0.5);
    background: linear-gradient(45deg, #00cc33, #00ff41);
}

.cta-button.large {
    padding: 20px 40px;
    font-size: 1.2rem;
}

.cta-button i {
    font-size: 1.3rem;
}

/* Malware Section */
.malware-section {
    padding: 80px 0;
    background: #111111;
    border-top: 1px solid #333;
    border-bottom: 1px solid #333;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    text-align: center;
    margin-bottom: 1rem;
    color: #ff0040;
    text-shadow: 0 0 15px rgba(255, 0, 64, 0.3);
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #cccccc;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* --- Fix for Clickable Malware Cards Layout --- */
.malware-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    align-items: stretch;
}
.malware-card-link {
    display: block;
    height: 100%;
    text-decoration: none;
    color: inherit;
    transition: transform 0.2s;
}
.malware-card-link:hover .malware-card {
    box-shadow: 0 0 32px 0 rgba(0,255,65,0.18), 0 8px 32px 0 rgba(255,0,64,0.08);
    border-color: #ff0040;
    transform: translateY(-5px) scale(1.02);
}
.malware-card {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    background: linear-gradient(145deg, #1a1a1a, #0f0f0f);
    border: 1px solid #333;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    min-height: 340px;
}
@media (max-width: 768px) {
    .malware-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .malware-card {
        min-height: 0;
        padding: 1.5rem;
    }
}
/* --- End Fix --- */

.malware-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 65, 0.1), transparent);
    transition: left 0.5s ease;
}

.malware-card:hover::before {
    left: 100%;
}

.malware-card:hover {
    transform: translateY(-5px);
    border-color: #00ff41;
    box-shadow: 0 10px 30px rgba(0, 255, 65, 0.2);
}

.card-icon {
    font-size: 3rem;
    color: #ff0040;
    margin-bottom: 1rem;
}

.malware-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #00ff41;
}

.malware-card p {
    color: #cccccc;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.threat-level {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 1rem;
}

.threat-label {
    color: #cccccc;
    font-size: 0.9rem;
}

.threat-critical {
    background: #ff0040;
    color: #000;
    padding: 5px 10px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.8rem;
}

.threat-high {
    background: #ff6600;
    color: #000;
    padding: 5px 10px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.8rem;
}

/* Trust Section */
.trust-section {
    padding: 80px 0;
    background: #0a0a0a;
}

.trust-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.trust-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.stat {
    text-align: center;
    padding: 1.5rem;
    background: linear-gradient(145deg, #1a1a1a, #0f0f0f);
    border-radius: 10px;
    border: 1px solid #333;
}

.stat i {
    font-size: 2rem;
    color: #00ff41;
    margin-bottom: 1rem;
}

.stat h3 {
    font-size: 2rem;
    color: #00ff41;
    margin-bottom: 0.5rem;
}

.stat p {
    color: #cccccc;
    font-size: 0.9rem;
}

.testimonials h3 {
    font-size: 1.5rem;
    color: #00ff41;
    margin-bottom: 1.5rem;
}

.testimonial {
    background: linear-gradient(145deg, #1a1a1a, #0f0f0f);
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid #00ff41;
}

.testimonial p {
    color: #cccccc;
    margin-bottom: 1rem;
    font-style: italic;
}

.testimonial cite {
    color: #00ff41;
    font-weight: 500;
}

/* Final CTA Section */
.final-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #111111 0%, #0a0a0a 100%);
    text-align: center;
    border-top: 1px solid #333;
}

.final-cta h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
    color: #00ff41;
}

.final-cta p {
    font-size: 1.2rem;
    color: #cccccc;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Footer */
.footer {
    background: #000000;
    padding: 40px 0;
    border-top: 1px solid #333;
}

.footer-content {
    text-align: center;
}

.footer-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 1.2rem;
    font-weight: 600;
    color: #00ff41;
    margin-bottom: 1rem;
}

.footer-disclaimer {
    color: #888888;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.footer-copyright {
    color: #666666;
    font-size: 0.8rem;
}

/* Floating WhatsApp Button */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.floating-whatsapp a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: #25d366;
    color: #ffffff;
    border-radius: 50%;
    text-decoration: none;
    font-size: 1.5rem;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    animation: bounce 2s infinite;
}

.floating-whatsapp a:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding-top: 100px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .cta-button {
        padding: 12px 25px;
        font-size: 1rem;
    }
    
    .cta-button.large {
        padding: 15px 30px;
        font-size: 1.1rem;
    }
    
    .malware-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .malware-card {
        padding: 1.5rem;
    }
    
    .trust-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .trust-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .floating-whatsapp {
        bottom: 20px;
        right: 20px;
    }
    
    .floating-whatsapp a {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .final-cta h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
    }
    
    .malware-section,
    .trust-section,
    .final-cta {
        padding: 60px 0;
    }
    
    .malware-card {
        padding: 1rem;
    }
    
    .card-icon {
        font-size: 2rem;
    }
    
    .malware-card h3 {
        font-size: 1.2rem;
    }
}

/* Matrix Rain Animation */
@keyframes matrix-rain {
    0% { transform: translateY(-100vh); }
    100% { transform: translateY(100vh); }
}

/* Loading Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content,
.malware-card,
.stat,
.testimonial {
    animation: fadeInUp 0.8s ease-out;
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #1a1a1a;
}

::-webkit-scrollbar-thumb {
    background: #00ff41;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #00cc33;
}

/* Feature Sections (CraxRat, G700, Tools) */
.feature-section {
    padding: 70px 0;
    background: #101014;
    border-bottom: 1px solid #222;
}
.feature-section:nth-of-type(even) {
    background: #18181c;
}
.feature-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    padding: 2rem 1rem;
    border-radius: 18px;
    box-shadow: 0 4px 32px rgba(0,255,65,0.04);
    background: linear-gradient(135deg, #18181c 60%, #0a0a0a 100%);
    border: 1px solid #222;
}
.feature-icon {
    font-size: 3.5rem;
    color: #ff0040;
    margin-bottom: 1.2rem;
    text-shadow: 0 0 18px rgba(255,0,64,0.3);
}
.feature-content h2 {
    color: #00ff41;
    font-size: 2.2rem;
    margin-bottom: 1rem;
    font-family: 'Fira Code', 'Roboto Mono', monospace;
}
.feature-desc {
    color: #cccccc;
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
}
.feature-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}
.feature-list li {
    color: #00ff41;
    font-size: 1rem;
    margin: 0.5rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.feature-list i {
    color: #ff0040;
    font-size: 1.1rem;
}

/* Conversion Section */
.conversion-section {
    background: #18181c;
    padding: 60px 0 40px 0;
    border-bottom: 1px solid #222;
}
.urgency-banner {
    background: linear-gradient(90deg, #ff0040 0%, #00ff41 100%);
    color: #000;
    font-weight: 700;
    font-size: 1.1rem;
    padding: 1rem 2rem;
    border-radius: 10px;
    margin-bottom: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    box-shadow: 0 2px 12px rgba(255,0,64,0.08);
}
.urgency-banner i {
    color: #ff0040;
    font-size: 1.3rem;
}
.benefits-list {
    margin-bottom: 2.5rem;
    text-align: center;
}
.benefits-list h3 {
    color: #00ff41;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}
.benefits-list ul {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    max-width: 400px;
}
.benefits-list li {
    color: #cccccc;
    font-size: 1rem;
    margin: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
}
.benefits-list i {
    color: #00ff41;
    font-size: 1.1rem;
}
.faq-section {
    background: #101014;
    border-radius: 12px;
    padding: 2rem 1rem;
    box-shadow: 0 2px 12px rgba(0,255,65,0.04);
    max-width: 700px;
    margin: 0 auto;
}
.faq-section h3 {
    color: #00ff41;
    margin-bottom: 1.2rem;
    font-size: 1.2rem;
}
.faq-item {
    margin-bottom: 1.2rem;
    text-align: left;
}
.faq-item strong {
    color: #ff0040;
    font-size: 1.05rem;
}
.faq-item p {
    color: #cccccc;
    margin: 0.3rem 0 0 0.5rem;
    font-size: 0.98rem;
}

/* Responsive for new sections */
@media (max-width: 768px) {
    .feature-content, .faq-section {
        padding: 1.2rem 0.5rem;
    }
    .feature-section {
        padding: 40px 0;
    }
    .conversion-section {
        padding: 30px 0 20px 0;
    }
    .urgency-banner {
        font-size: 1rem;
        padding: 0.7rem 1rem;
    }
}

/* --- Enhanced Styles for Higher Conversion --- */

/* Top Disclaimer Enhancement */
.top-disclaimer {
    background: linear-gradient(90deg, #fff3cd 60%, #ffeeba 100%);
    color: #856404;
    font-weight: 600;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(255, 244, 205, 0.15);
}

/* WhatsApp Button in Malware Cards */
.malware-whatsapp .cta-button {
    background: linear-gradient(45deg, #25d366, #128c7e);
    color: #fff;
    border: none;
    font-size: 1rem;
    font-weight: 600;
    padding: 12px 24px;
    border-radius: 30px;
    margin-top: 10px;
    box-shadow: 0 2px 10px rgba(37, 211, 102, 0.15);
    transition: background 0.3s, transform 0.2s;
}
.malware-whatsapp .cta-button:hover {
    background: linear-gradient(45deg, #128c7e, #25d366);
    color: #fff;
    transform: translateY(-2px) scale(1.04);
    box-shadow: 0 4px 18px rgba(37, 211, 102, 0.25);
}

/* Card Glow on Hover */
.malware-card:hover, .feature-content:hover, .stat:hover {
    box-shadow: 0 0 32px 0 rgba(0,255,65,0.18), 0 8px 32px 0 rgba(255,0,64,0.08);
    border-color: #ff0040;
}

/* Section Fade-in Animation */
@keyframes fadeInSection {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}
.hero-content, .malware-section, .feature-section, .trust-section, .final-cta, .conversion-section {
    animation: fadeInSection 1s ease-in;
}

/* Gradient Accent for Section Titles */
.section-title, .feature-content h2, .final-cta h2 {
    background: linear-gradient(90deg, #ff0040 30%, #00ff41 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

/* Enhanced CTA Button */
.cta-button, .cta-button.large {
    box-shadow: 0 6px 24px rgba(0,255,65,0.12);
    letter-spacing: 0.5px;
    font-family: 'Fira Code', 'Roboto Mono', monospace;
}

/* Testimonials Card Animation */
.testimonial {
    transition: box-shadow 0.3s, transform 0.2s;
}
.testimonial:hover {
    box-shadow: 0 8px 32px rgba(0,255,65,0.18);
    transform: translateY(-4px) scale(1.03);
}

/* Footer Disclaimer Highlight */
.footer-disclaimer {
    background: linear-gradient(90deg, #fff3cd 60%, #ffeeba 100%);
    color: #856404 !important;
    font-weight: 600;
    border-radius: 8px;
    padding: 10px 0;
    margin-bottom: 16px;
    box-shadow: 0 2px 8px rgba(255, 244, 205, 0.15);
}

/* --- End Enhanced Styles --- */