/* Variables */
:root {
    --dark-bg: #ffffff;
    --dark-card: #f8f9fa;
    --neon-green: #000000;
    --electric-blue: #000000;
    --text-primary: #000000;
    --text-secondary: rgba(0, 0, 0, 0.7);
    --border-color: rgba(0, 0, 0, 0.2);
}

/* Force white background for all pages using main.css */
html,
body,
body.page-template-template-support,
.site,
.site-content,
#primary,
main.site-main,
article.container,
.container {
    background-color: #ffffff !important;
    background: #ffffff !important;
}

body,
body.page-template-template-support {
    color: #000000 !important;
}

h1, h2, h3, h4, h5, h6 {
    color: #000000 !important;
}

/* Base Styles */
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-primary);
    line-height: 1.6;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    color: var(--text-primary);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    background: linear-gradient(180deg, var(--dark-bg) 0%, #0F0F0F 100%);
    overflow: hidden;
    padding: 80px 0;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(0, 255, 161, 0.1) 0%, rgba(57, 138, 255, 0.05) 50%, transparent 100%);
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero h1 {
    font-size: 72px;
    margin-bottom: 30px;
    line-height: 1.1;
    background: linear-gradient(135deg, var(--neon-green) 0%, var(--electric-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientFlow 8s ease infinite;
}

.hero p {
    font-size: 24px;
    margin-bottom: 40px;
    color: var(--text-secondary);
}

.hero-image {
    margin-top: 60px;
    position: relative;
}

.hero-image::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--neon-green) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    opacity: 0.1;
    filter: blur(40px);
    z-index: -1;
}

.hero-image img {
    position: relative;
    z-index: 1;
}

.download-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 40px;
    flex-wrap: wrap;
}

.download-buttons .btn {
    padding: 0;
    background: transparent;
    border: none;
}

.download-buttons .btn img {
    transition: transform 0.3s ease;
}

.download-buttons .btn:hover img {
    transform: translateY(-2px);
}

.download-buttons .btn-secondary:last-child {
    display: inline-flex;
    align-items: center;
    padding: 12px 24px;
    border: 2px solid var(--neon-green);
    color: var(--neon-green);
}

/* Coming Soon Badge */
.extension-button-wrapper {
    position: relative;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
}

.badge-coming-soon {
    position: absolute;
    top: -10px;
    right: -10px;
    background: rgba(0, 255, 161, 0.1);
    border: 1px solid var(--neon-green);
    color: var(--neon-green);
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
    backdrop-filter: blur(4px);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 500;
    font-size: 16px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-primary {
    background: #000000;
    color: #ffffff;
}

.btn-primary:hover {
    background: #333333;
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    border: 2px solid #000000;
    color: #000000;
}

.btn-secondary:hover {
    background: #000000;
    color: #ffffff;
    transform: translateY(-2px);
}

/* Why Choose Section */
.why-choose {
    padding: 80px 0;
    background: var(--dark-bg);
}

.why-choose h2 {
    font-size: 48px;
    text-align: center;
    margin-bottom: 60px;
    color: #000000 !important;
}

/* Comparison Table */
.comparison-section {
    margin: 40px auto;
    max-width: 1200px;
    padding: 0 20px;
}

.comparison-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: rgba(20, 24, 32, 0.95);
    border-radius: 16px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.comparison-table thead {
    background: rgba(13, 16, 21, 0.95);
}

.comparison-table th {
    padding: 20px 24px;
    text-align: left;
    color: var(--neon-green);
    font-weight: 500;
    font-size: 16px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}

.comparison-table td {
    padding: 20px 24px;
    text-align: left;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
    color: var(--text-secondary);
    font-size: 16px;
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

.comparison-table tr:hover {
    background: rgba(0, 0, 0, 0.05);
}

/* Feature Names */
.comparison-table td:first-child {
    color: var(--text-secondary);
    font-weight: 500;
}

/* Check/Cross Icons */
.check, .cross {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    margin-right: 12px;
    font-weight: normal;
}

.check {
    color: var(--neon-green);
}

.check::before {
    content: "✓";
    font-size: 18px;
}

.cross {
    color: #FF4444;
}

.cross::before {
    content: "×";
    font-size: 24px;
}

/* Feature Text */
.feature-text {
    color: var(--text-secondary);
    margin-left: 36px;
}

/* Features Section */
.features {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--dark-bg) 0%, var(--dark-card) 100%);
}

.features h2 {
    font-size: 48px;
    text-align: center;
    margin-bottom: 60px;
    color: #000000 !important;
}

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

.feature-card {
    background: var(--dark-card);
    padding: 40px;
    border-radius: 20px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--neon-green), var(--electric-blue));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card .coming-soon {
    background: linear-gradient(135deg, var(--neon-green), var(--electric-blue));
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 14px;
    margin-bottom: 20px;
    display: inline-block;
}

.feature-card .emoji {
    font-size: 32px;
    margin-bottom: 20px;
    display: block;
}

.feature-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.feature-card p {
    color: var(--text-secondary);
    margin: 0;
}

/* Learn Section */
.learn-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.learn-card {
    background: var(--dark-card);
    padding: 40px;
    border-radius: 20px;
    transition: all 0.3s ease;
    text-decoration: none;
    color: var(--text-primary);
}

.learn-card:hover {
    transform: translateY(-5px);
    background: rgba(0, 255, 161, 0.1);
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.testimonial-card {
    background: var(--dark-card);
    padding: 40px;
    border-radius: 20px;
    position: relative;
}

.testimonial-card p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.testimonial-card cite {
    color: var(--text-secondary);
    font-style: normal;
}

/* FAQ Section */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.faq-item {
    background: var(--dark-card);
    padding: 30px;
    border-radius: 20px;
}

.faq-item h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--neon-green);
}

.faq-item p {
    color: var(--text-secondary);
    margin: 0;
}

/* CTA Section */
.cta {
    text-align: center;
    padding: 100px 0;
}

.cta h2 {
    margin-bottom: 20px;
}

.cta p {
    color: var(--text-secondary);
    margin-bottom: 40px;
}

/* Section Spacing */
section {
    padding: 100px 0;
}

section h2 {
    font-size: 48px;
    text-align: center;
    margin-bottom: 20px;
    color: #000000 !important;
}

/* Animations */
@keyframes gradientFlow {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 40px;
    }
    
    .hero p {
        font-size: 18px;
    }

    .download-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .features-grid,
    .learn-grid,
    .testimonials-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .comparison-table {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 16px;
        font-size: 14px;
    }

    .check, .cross {
        width: 20px;
        height: 20px;
        margin-right: 8px;
    }

    .feature-text {
        margin-left: 28px;
    }

    section {
        padding: 60px 0;
    }

    section h2 {
        font-size: 36px;
    }
}

/* Footer Styles */
footer {
    background: var(--dark-card);
    padding: 60px 0 30px;
    margin-top: 80px;
}

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

.footer-links h4 {
    color: var(--text-primary);
    font-size: 18px;
    margin-bottom: 20px;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links ul li a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links ul li a:hover {
    color: var(--neon-green);
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding-top: 30px;
    text-align: center;
}

.footer-bottom p {
    color: var(--text-secondary);
    font-size: 14px;
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-links {
        text-align: center;
    }
    
    .footer-bottom {
        margin-top: 30px;
    }
} 