:root {
    --dark-grey: #2c2c2c;
    --light-grey: #3a3a3a;
    --black: #000000;
    --white: #ffffff;
    --primary-color: #3498db;
    --box-shadow: 4px 4px 0 0 rgba(0, 0, 0, 1);
    --hover-box-shadow: 6px 6px 0 0 rgba(0, 0, 0, 1);
    --border-radius: 12px;
    --font-family: 'Poppins', sans-serif;
    --transition: all 0.3s ease;
    --hover-transform: translateY(-3px);
    
    /* Dark theme colors from extension */
    --bg-color: #1a1a1a;
    --card-bg: #2a2a2a;
    --text-color: #e0e0e0;
    --border-color: #000;
    --secondary-text: #a0a0a0;
}

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

body {
    padding: 0;
    background: var(--bg-color);
    font-family: var(--font-family);
    color: var(--text-color);
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

/* Layout */
main {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Common styles for sections */
.hero, .app-preview, .features, nav, .features-showcase, .data-points, .faq, .cta-bottom, .footer-nav, .how-it-works {
    background: var(--card-bg);
    border-radius: var(--border-radius);
    border: 2px solid var(--border-color);
    box-shadow: var(--box-shadow);
    padding: 2rem;
    margin-bottom: 1.5rem;
    width: 100%;
    width: 100%;
    color: var(--text-color);
}

/* Center Section Headings */
section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--text-color);
}

/* Navigation */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    padding: 1.5rem;
    margin: 1rem;
    width: calc(100% - 2rem);
}

.logo {
    min-width: 170px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    background: var(--primary-color); /* Match extension logo bg */
}

.logo-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
}

.social-links a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--border-color);
    border-radius: 50%;
    box-shadow: var(--box-shadow);
    background: var(--card-bg);
    text-decoration: none;
    transition: var(--transition);
}

.social-links i {
    font-size: 20px;
    color: var(--text-color);
    transition: var(--transition);
}

.social-links a:hover {
    transform: var(--hover-transform);
    box-shadow: var(--hover-box-shadow);
    background: var(--card-bg);
}

.social-links a:hover i {
    color: var(--primary-color);
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 4rem 2rem;
}

.hero h1 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.hero .subtitle {
    font-size: 1.5rem;
    color: var(--secondary-text);
    margin-bottom: 2.5rem;
}

/* Buttons */
.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.download-btn, .tutorial-btn {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: var(--border-radius);
    border: 2px solid var(--border-color);
    box-shadow: var(--box-shadow);
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.download-btn {
    background: var(--primary-color);
    color: var(--white);
}

.tutorial-btn {
    background: var(--card-bg);
    color: var(--text-color);
}

.download-btn:hover,
.tutorial-btn:hover {
    transform: var(--hover-transform);
    box-shadow: var(--hover-box-shadow);
    opacity: 0.9;
}

.tutorial-btn svg {
    stroke: var(--text-color);
}

.tutorial-btn:hover svg {
    stroke: var(--primary-color);
}

/* Features Grid */
.features, .features-grid, .testimonials-grid, .data-grid, .faq-grid, .tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.feature-card, .testimonial-card, .data-card, .faq-item, .tool-card {
    background: var(--card-bg);
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 2rem;
    transition: var(--transition);
    text-align: center;
}

.feature-card:hover, .testimonial-card:hover, .data-card:hover, .faq-item:hover, .tool-card:hover {
    transform: var(--hover-transform);
    box-shadow: var(--hover-box-shadow);
}

.feature-card h3, .data-card h3, .faq-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.feature-card p, .faq-item p {
    color: var(--secondary-text);
    line-height: 1.6;
}

/* Data Points */
.data-card ul {
    list-style: none;
    text-align: left;
    padding-left: 1rem;
}

.data-card li {
    margin-bottom: 0.5rem;
    color: var(--secondary-text);
    position: relative;
}

.data-card li::before {
    content: "•";
    color: var(--primary-color);
    position: absolute;
    left: -1rem;
}

/* Other Tools */
.tool-card {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 150px;
    padding: 1rem;
}

.tool-card img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* Support Section */
.support-section {
    text-align: center;
    margin: 3rem 0;
}

.support-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.coffee-btn, .subscribe-btn {
    padding: 1rem 2rem;
    border-radius: var(--border-radius);
    border: 2px solid var(--border-color);
    box-shadow: var(--box-shadow);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.coffee-btn {
    background: #FFDD00;
    color: var(--black);
}

.subscribe-btn {
    background: #FF0000;
    color: var(--white);
}

.coffee-btn:hover, .subscribe-btn:hover {
    transform: var(--hover-transform);
    box-shadow: var(--hover-box-shadow);
}

/* Footer */
footer {
    padding: 0.5rem 1rem;
    margin: 0.5rem;
}

.footer-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    padding: 1rem;
    margin: 0;
}

.footer-logo p {
    color: var(--text-color);
    font-size: 1.1rem;
    font-weight: 600;
}

.footer-credit span {
    color: var(--primary-color);
    font-weight: 700;
}

/* Video Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal.show {
    display: flex;
    opacity: 1;
    align-items: center;
    justify-content: center;
}

.modal-content {
    position: relative;
    background: var(--card-bg);
    padding: 20px;
    border-radius: var(--border-radius);
    max-width: 1000px;
    width: 90%;
    transform: scale(0.7);
    transition: transform 0.3s ease;
    border: 2px solid var(--border-color);
    box-shadow: var(--box-shadow);
}

.modal.show .modal-content {
    transform: scale(1);
}

.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    border-radius: var(--border-radius);
}

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

.close-modal {
    position: absolute;
    right: -40px;
    top: -40px;
    width: 40px;
    height: 40px;
    border: 2px solid var(--border-color);
    background: var(--card-bg);
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-color);
    transition: var(--transition);
    box-shadow: var(--box-shadow);
}

.close-modal:hover {
    transform: scale(1.1);
    background: var(--primary-color);
    color: var(--white);
}

/* Custom Cursor */
.cursor-container {
    pointer-events: none;
}

.circle {
    height: 20px;
    width: 20px;
    border-radius: 50%;
    background-color: var(--primary-color);
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 99999999;
    opacity: 0.5;
    mix-blend-mode: screen; /* Changed for dark theme */
    will-change: transform;
    transition: transform 0.05s ease;
}

/* Hide default cursor when hovering over clickable elements */
a, button, [role="button"], .feature-card, .tool-card {
    cursor: none !important;
}

/* Show custom cursor on hover */
a:hover ~ .circle,
button:hover ~ .circle,
[role="button"]:hover ~ .circle,
.feature-card:hover ~ .circle {
    transform: scale(1.5);
    background-color: var(--white);
}

/* Slider Styles */
.slider-container {
    position: relative;
    width: 100%;
    max-width: 1000px;
    margin: 3rem auto 0;
    border-radius: var(--border-radius);
    border: 2px solid var(--border-color);
    box-shadow: var(--box-shadow);
    overflow: hidden;
    background: var(--card-bg);
}

.slider-wrapper {
    display: flex;
    transition: transform 0.5s ease-in-out;
    height: auto;
}

.slide {
    min-width: 100%;
    display: none; /* Hidden by default */
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.slide.active {
    display: block;
    opacity: 1;
}

.slide img {
    width: 100%;
    height: auto;
    display: block;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 1rem;
    cursor: pointer;
    font-size: 1.5rem;
    transition: background 0.3s ease;
    z-index: 10;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-btn:hover {
    background: rgba(0, 0, 0, 0.8);
}

.prev-btn {
    left: 1rem;
}

.next-btn {
    right: 1rem;
}

.slider-dots {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    z-index: 10;
}

.dot {
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s ease;
}

.dot.active {
    background: white;
}

/* Hero Improvements */
.hero-content {
    max-width: 1200px;
    margin: 0 auto;
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.trust-badges span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--secondary-text);
    font-size: 0.9rem;
}

.trust-badges i {
    color: #2ecc71; /* Green checkmark */
}

/* How It Works Section */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.step-card {
    position: relative;
    padding: 2rem;
    background: var(--bg-color); /* Slightly different bg for contrast */
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
    text-align: center;
}

.step-number {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    margin: 0 auto 1.5rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.step-card h3 {
    margin-bottom: 1rem;
    color: var(--text-color);
}

.step-card p {
    color: var(--secondary-text);
    font-size: 0.95rem;
}

/* Feature Card Icons */
.icon-wrapper {
    width: 60px;
    height: 60px;
    background: rgba(52, 152, 219, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.feature-card i {
    margin-bottom: 0; /* Override previous style */
    font-size: 1.8rem;
}

/* Pro Link Button */
.pro-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-color);
    text-decoration: none;
    font-weight: 600;
    padding: 1rem 2rem;
    border-radius: var(--border-radius);
    border: 2px solid var(--border-color); /* Match other buttons */
    transition: var(--transition);
}

.pro-link:hover {
    color: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content {
    animation: fadeInUp 0.8s ease-out;
}

.slider-container {
    animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

.feature-card {
    animation: fadeInUp 0.8s ease-out 0.4s backwards;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero .subtitle {
        font-size: 1.2rem;
    }
    
    .stats {
        gap: 2rem;
    }
    
    .close-modal {
        right: 0;
        top: -50px;
    }
    
    nav {
        justify-content: center;
    }
    
    .logo {
        margin-bottom: 1rem;
    }
    
    .slider-btn {
        padding: 0.5rem;
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .trust-badges {
        flex-direction: column;
        gap: 0.5rem;
        align-items: center;
    }

    .footer-nav {
        justify-content: center;
        text-align: center;
        flex-direction: column;
        gap: 0.5rem;
    }

    .footer-logo, .footer-credit {
        width: 100%;
        text-align: center;
    }
}

/* CTA Bottom Section */
.cta-bottom {
    text-align: center;
    padding: 4rem 2rem;
    background: var(--card-bg) ;
    position: relative;
    overflow: hidden;
}



.cta-bottom h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--text-color);
    position: relative;
    z-index: 1;
}

.cta-bottom p {
    font-size: 1.2rem;
    color: var(--secondary-text);
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}