/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a3e 100%);
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

/* Animated Background */
.bg-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(0, 255, 255, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(0, 255, 136, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(0, 255, 255, 0.04) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(15, 15, 35, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 255, 255, 0.2);
    z-index: 1000;
    padding: 20px 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Orbitron', monospace;
    font-size: 24px;
    font-weight: 900;
    background: linear-gradient(90deg, #00ffff, #00ff88, #00ffff);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient 3s ease infinite;
}

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

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

.nav-links a {
    color: #8892b0;
    text-decoration: none;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a:hover {
    color: #00ffff;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #00ffff, #00ff88);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 20px 80px;
    position: relative;
    z-index: 1;
}

.hero-content {
    text-align: center;
    max-width: 900px;
}

.hero-title {
    font-family: 'Orbitron', monospace;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ffffff, #00ffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 80px rgba(0, 255, 255, 0.5);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #8892b0;
    margin-bottom: 40px;
    line-height: 1.8;
}

/* Buttons */
.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.btn {
    padding: 16px 32px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: linear-gradient(135deg, #00ffff, #00ff88);
    color: #0a0a1e;
    box-shadow: 0 4px 20px rgba(0, 255, 255, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 255, 255, 0.5);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: #00ffff;
    border: 1px solid rgba(0, 255, 255, 0.5);
}

.btn-secondary:hover {
    background: rgba(0, 255, 255, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 255, 255, 0.3);
}

.btn-large {
    padding: 20px 40px;
    font-size: 18px;
}

.icon {
    width: 20px;
    height: 20px;
}

/* Stats */
.stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 60px;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    font-weight: 700;
    color: #00ffff;
    text-shadow: 0 0 20px rgba(0, 255, 255, 0.5);
}

.stat-label {
    display: block;
    color: #8892b0;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 5px;
}

/* Section Styles */
section {
    padding: 80px 0;
    position: relative;
    z-index: 1;
}

.section-title {
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 60px;
    background: linear-gradient(90deg, #00ffff, #00ff88);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Video Demo Section */
.demo-section {
    background: rgba(255, 255, 255, 0.02);
    border-top: 1px solid rgba(0, 255, 255, 0.1);
    border-bottom: 1px solid rgba(0, 255, 255, 0.1);
}

.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(0, 255, 255, 0.3);
    background: #000;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 20px;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.feature-card:hover {
    background: rgba(0, 255, 255, 0.05);
    border-color: #00ffff;
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 255, 255, 0.2);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-family: 'Orbitron', monospace;
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #00ffff;
}

.feature-card p {
    color: #8892b0;
    line-height: 1.6;
}

/* How It Works */
.how-it-works {
    background: rgba(255, 255, 255, 0.02);
}

.steps {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.step {
    text-align: center;
    flex: 1;
    min-width: 200px;
}

.step-number {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #00ffff, #00ff88);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Orbitron', monospace;
    font-size: 2rem;
    font-weight: 700;
    color: #0a0a1e;
    box-shadow: 0 10px 30px rgba(0, 255, 255, 0.3);
}

.step h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
    color: #00ffff;
}

.step p {
    color: #8892b0;
}

.step-arrow {
    font-size: 2rem;
    color: #00ffff;
    opacity: 0.5;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.1), rgba(0, 255, 136, 0.1));
    text-align: center;
    padding: 100px 20px;
    border-top: 1px solid rgba(0, 255, 255, 0.3);
}

.cta-section h2 {
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-section p {
    color: #8892b0;
    font-size: 1.25rem;
    margin-bottom: 40px;
}

/* Footer */
.footer {
    background: rgba(10, 10, 30, 0.95);
    border-top: 1px solid rgba(0, 255, 255, 0.2);
    padding: 60px 0 30px;
}

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

.footer-section h4 {
    color: #00ffff;
    margin-bottom: 20px;
    font-family: 'Orbitron', monospace;
}

.footer-section a {
    display: block;
    color: #8892b0;
    text-decoration: none;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #00ffff;
}

.footer-section p {
    color: #8892b0;
    margin-top: 10px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(0, 255, 255, 0.1);
    color: #8892b0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .stats {
        gap: 30px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .steps {
        flex-direction: column;
    }
    
    .step-arrow {
        transform: rotate(90deg);
    }
}
/* How It Works Section */
.how-it-works {
    background: transparent;
    padding: 100px 0;
    position: relative;
}

/* Blocking Methods List */
.blocking-methods-list {
    max-width: 800px;
    margin: 60px auto 80px;
}

.method-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 35px;
    position: relative;
    padding-left: 15px;
}

.method-item::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 45px;
    bottom: -35px;
    width: 1px;
    background: linear-gradient(180deg, rgba(0, 255, 255, 0.3), transparent);
    opacity: 0.3;
}

.method-item:last-child::before {
    display: none;
}

.method-num {
    font-family: 'Orbitron', monospace;
    font-size: 1.5rem;
    font-weight: 700;
    color: rgba(0, 255, 255, 0.4);
    min-width: 30px;
    margin-right: 30px;
    position: relative;
    z-index: 2;
}

.method-details {
    flex: 1;
    padding-top: 2px;
}

.method-details h3 {
    font-family: 'Orbitron', monospace;
    font-size: 1.25rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}

.method-details p {
    color: #8892b0;
    line-height: 1.7;
    font-size: 0.95rem;
    max-width: 600px;
}

.method-item:hover .method-num {
    color: #00ffff;
    text-shadow: 0 0 20px rgba(0, 255, 255, 0.5);
}

.method-item:hover .method-details h3 {
    color: #00ffff;
    transition: color 0.3s ease;
}

@media (max-width: 768px) {
    .method-item {
        padding-left: 0;
    }
    
    .method-num {
        font-size: 1.2rem;
        min-width: 25px;
        margin-right: 20px;
    }
    
    .method-details h3 {
        font-size: 1.1rem;
    }
    
    .method-item::before {
        left: 12px;
    }
}

/* FAQ Section */
.faq-section {
    background: rgba(255, 255, 255, 0.02);
    border-top: 1px solid rgba(0, 255, 255, 0.1);
    border-bottom: 1px solid rgba(0, 255, 255, 0.1);
    padding: 80px 0;
    position: relative;
}

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

.faq-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: 16px;
    padding: 40px 30px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.faq-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.02), rgba(0, 255, 136, 0.02));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}

.faq-item:hover {
    border-color: rgba(0, 255, 255, 0.4);
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 255, 255, 0.1);
}

.faq-item:hover::before {
    opacity: 1;
}

.faq-item h3 {
    color: #00ffff;
    font-family: 'Orbitron', monospace;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.4;
    position: relative;
    z-index: 1;
}

.faq-answer {
    color: #8892b0;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

.faq-answer p {
    margin-bottom: 15px;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

.faq-answer ul {
    margin: 15px 0;
    padding-left: 20px;
}

.faq-answer li {
    margin-bottom: 8px;
    position: relative;
}

.faq-answer li::marker {
    color: rgba(0, 255, 255, 0.6);
}

.faq-answer code {
    background: rgba(0, 255, 255, 0.1);
    color: #00ffff;
    padding: 3px 8px;
    border-radius: 6px;
    font-family: 'Consolas', 'Monaco', monospace;
    font-size: 0.9em;
    border: 1px solid rgba(0, 255, 255, 0.2);
    font-weight: 600;
}

.faq-answer strong {
    color: #ffffff;
}

/* Pattern Guide Section */
.pattern-guide {
    padding: 80px 0;
    background: transparent;
}

.pattern-examples {
    margin-top: 60px;
    display: grid;
    gap: 40px;
}

.pattern-category {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: 16px;
    padding: 40px;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.pattern-category:hover {
    border-color: rgba(0, 255, 255, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(0, 255, 255, 0.05);
}

.pattern-category::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 255, 0.6), transparent);
}

.pattern-category h3 {
    color: #00ffff;
    font-family: 'Orbitron', monospace;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 15px;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
}

.example-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.example {
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(0, 255, 255, 0.15);
    border-radius: 12px;
    padding: 25px;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.example:hover {
    border-color: rgba(0, 255, 255, 0.4);
    background: rgba(0, 0, 0, 0.3);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 255, 255, 0.1);
}

.example code {
    display: block;
    background: rgba(0, 255, 255, 0.1);
    color: #00ffff;
    padding: 12px 16px;
    border-radius: 8px;
    font-family: 'Consolas', 'Monaco', monospace;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 15px;
    border: 1px solid rgba(0, 255, 255, 0.3);
    text-align: center;
    letter-spacing: 0.5px;
}

.example p {
    color: #8892b0;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
    text-align: center;
}

.pattern-tips {
    margin-top: 40px;
    background: rgba(0, 255, 136, 0.05);
    border: 1px solid rgba(0, 255, 136, 0.3);
    border-radius: 16px;
    padding: 40px;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.pattern-tips::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 136, 0.6), transparent);
}

.pattern-tips h3 {
    color: #00ff88;
    font-family: 'Orbitron', monospace;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 15px;
    text-shadow: 0 0 10px rgba(0, 255, 136, 0.3);
}

.pattern-tips ul {
    list-style: none;
    padding: 0;
}

.pattern-tips li {
    color: #8892b0;
    margin-bottom: 15px;
    padding-left: 25px;
    position: relative;
    line-height: 1.7;
    font-size: 0.95rem;
}

.pattern-tips li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: rgba(0, 255, 136, 0.8);
    font-weight: bold;
    font-size: 1.1rem;
}

.pattern-tips strong {
    color: #ffffff;
    font-weight: 600;
}

.pattern-tips code {
    background: rgba(0, 255, 136, 0.1);
    color: #00ff88;
    padding: 3px 8px;
    border-radius: 6px;
    font-family: 'Consolas', 'Monaco', monospace;
    font-size: 0.9em;
    font-weight: 600;
    border: 1px solid rgba(0, 255, 136, 0.2);
}

/* Responsive Design for New Sections */
@media (max-width: 768px) {
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .faq-item {
        padding: 30px 25px;
    }
    
    .pattern-category {
        padding: 30px 25px;
    }
    
    .example-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .pattern-tips {
        padding: 30px 25px;
    }
    
    .faq-item h3 {
        font-size: 1.1rem;
    }
    
    .pattern-category h3 {
        font-size: 1.3rem;
    }
    
    .pattern-tips h3 {
        font-size: 1.2rem;
    }
}

/* Simplified Features Layout */
.primary-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.feature-card.primary {
    background: rgba(0, 255, 136, 0.03);
    border: 2px solid rgba(0, 255, 136, 0.2);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: left;
}

.feature-card.primary .feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.feature-card.primary h3 {
    color: #00ff88;
    font-size: 1.5rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.feature-card.primary ul {
    list-style: none;
    margin: 15px 0;
    padding: 0;
}

.feature-card.primary ul li {
    color: #8892b0;
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    font-size: 0.95rem;
}

.feature-card.primary ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #00ff88;
    font-weight: bold;
}

.feature-card.primary p:last-child {
    margin-top: 20px;
    color: #64ffda;
    font-style: italic;
    font-size: 0.9rem;
    padding: 15px;
    background: rgba(0, 255, 255, 0.05);
    border-radius: 8px;
    border-left: 4px solid rgba(0, 255, 255, 0.3);
}

.additional-features {
    text-align: center;
    margin-top: 80px;
    padding-top: 60px;
    border-top: 1px solid rgba(0, 255, 136, 0.2);
}

.additional-features h3 {
    color: #ffffff;
    font-size: 1.8rem;
    margin-bottom: 40px;
    font-weight: 500;
}

.bonus-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.bonus-feature {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 20px;
    background: rgba(0, 255, 255, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(0, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.bonus-feature:hover {
    background: rgba(0, 255, 255, 0.1);
    border-color: rgba(0, 255, 255, 0.3);
    transform: translateY(-3px);
}

.bonus-icon {
    font-size: 1.5rem;
}

.bonus-feature span:last-child {
    color: #8892b0;
    font-size: 0.95rem;
    font-weight: 500;
}

/* Responsive adjustments for simplified features */
@media (max-width: 768px) {
    .primary-features {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .feature-card.primary {
        padding: 30px 25px;
    }
    
    .bonus-features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .bonus-feature {
        padding: 15px;
    }
    
    .additional-features h3 {
        font-size: 1.5rem;
    }
}
