:root {
    --primary-color: #3B82F6;
    /* Electric Blue */
    --primary-dark: #2563EB;
    --secondary-color: #10B981;
    /* Emerald Green Accent */
    --secondary-dark: #059669;
    --bg-color: #0F172A;
    /* Dark Slate/Black */
    --bg-light: #1E293B;
    /* Slightly lighter dark */
    --text-color: #F8FAFC;
    /* White-ish */
    --text-light: #94A3B8;
    /* Light Gray */
    --border-color: #334155;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.5), 0 2px 4px -1px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.5), 0 4px 6px -2px rgba(0, 0, 0, 0.3);
    --font-family: 'Outfit', sans-serif;
    --radius-md: 0.5rem;
    --radius-lg: 1rem;
    --radius-full: 9999px;
    --gradient-primary: linear-gradient(135deg, #3B82F6 0%, #06B6D4 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    color: var(--text-color);
    background-color: var(--bg-color);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.2s;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.text-center {
    text-align: center;
}

.section {
    padding: 5rem 0;
}

.bg-light {
    background-color: var(--bg-light);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 0 15px rgba(59, 130, 246, 0.5);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 25px rgba(59, 130, 246, 0.7);
}

.btn-secondary {
    background-color: var(--bg-light);
    color: white;
    border: 1px solid var(--border-color);
}

.btn-secondary:hover {
    background-color: var(--border-color);
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-outline:hover {
    background-color: rgba(59, 130, 246, 0.1);
    box-shadow: 0 0 15px rgba(59, 130, 246, 0.3);
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(15, 23, 42, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    padding: 1rem 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--text-color);
}

.logo-icon {
    color: var(--primary-color);
    font-size: 1.5rem;
    text-shadow: 0 0 10px rgba(59, 130, 246, 0.5);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links a:not(.btn) {
    color: var(--text-light);
    font-weight: 500;
}

.nav-links a:not(.btn):hover {
    color: white;
}

/* Hero Section */
.hero {
    padding-top: 10rem;
    padding-bottom: 6rem;
    overflow: hidden;
    background: radial-gradient(circle at top right, rgba(59, 130, 246, 0.15), transparent 40%),
        radial-gradient(circle at bottom left, rgba(16, 185, 129, 0.1), transparent 40%);
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background-color: rgba(59, 130, 246, 0.1);
    color: var(--primary-color);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.hero h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    font-weight: 700;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    background: linear-gradient(to right, #fff, #94a3b8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-sub {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    max-width: 540px;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.hero-trust {
    display: flex;
    gap: 1.5rem;
    font-size: 0.875rem;
    color: var(--text-light);
}

.hero-trust span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.hero-trust i {
    color: var(--secondary-color);
}

.browser-mockup {
    background: #1e293b;
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 50px -12px rgba(0, 0, 0, 0.8);
    border: 1px solid var(--border-color);
    overflow: hidden;
    transform: perspective(1000px) rotateY(-5deg) rotateX(2deg);
    transition: transform 0.5s ease;
}

.browser-mockup:hover {
    transform: perspective(1000px) rotateY(0) rotateX(0);
}

.browser-header {
    background: #0f172a;
    padding: 0.75rem 1rem;
    display: flex;
    gap: 0.5rem;
    border-bottom: 1px solid var(--border-color);
}

.dot {
    width: 0.75rem;
    height: 0.75rem;
    border-radius: 50%;
}

.dot.red {
    background: #EF4444;
}

.dot.yellow {
    background: #F59E0B;
}

.dot.green {
    background: #10B981;
}

.browser-content {
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #1e293b;
}

/* Section Headers */
.section-header {
    max-width: 700px;
    margin: 0 auto 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.section-header p {
    font-size: 1.25rem;
    color: var(--text-light);
}

/* How It Works */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.step-card {
    text-align: center;
    padding: 2rem;
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    transition: transform 0.3s ease;
}

.step-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.step-icon {
    width: 4rem;
    height: 4rem;
    background: rgba(59, 130, 246, 0.1);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1.5rem;
}

.step-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: white;
}

.step-card p {
    color: var(--text-light);
}

/* Features */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    padding: 2rem;
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    transition: all 0.3s ease;
}

.feature-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.1);
}

.feature-icon {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: white;
}

.feature-card p {
    color: var(--text-light);
}

/* Why Use It */
.row {
    display: flex;
    gap: 4rem;
    align-items: center;
}

.col-text {
    flex: 1;
}

.col-image {
    flex: 1;
}

.col-text h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: white;
}

.benefit-list li {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.benefit-list i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-top: 0.25rem;
}

.benefit-list h4 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    color: white;
}

.benefit-list p {
    color: var(--text-light);
}

.illustration-placeholder {
    background: var(--bg-light);
    height: 400px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    color: var(--primary-color);
    border: 1px solid var(--border-color);
}

/* Screenshots */
.screenshots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.screenshot-item {
    text-align: center;
}

.screenshot-frame {
    background: var(--bg-light);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    margin-bottom: 1rem;
    border: 1px solid var(--border-color);
    aspect-ratio: 16/9;
    display: flex;
    align-items: center;
    justify-content: center;
}

.caption {
    color: var(--text-light);
    font-weight: 500;
}

/* About Creator */
.creator-card {
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 3rem;
    display: flex;
    align-items: center;
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.creator-avatar {
    width: 5rem;
    height: 5rem;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2.5rem;
    flex-shrink: 0;
}

.creator-info h3 {
    margin-bottom: 0.5rem;
    color: white;
}

.creator-info p {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
    font-weight: 500;
}

.social-links a:hover {
    color: var(--primary-color);
}

/* Download Section */
.download-section {
    background: linear-gradient(180deg, var(--bg-color) 0%, #1e293b 100%);
}

.download-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: white;
}

.download-section p {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

.download-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.support-text {
    font-size: 1rem !important;
    color: var(--text-light);
}

.support-text a {
    color: var(--primary-color);
    font-weight: 500;
}

/* Footer */
.footer {
    padding: 2rem 0;
    border-top: 1px solid var(--border-color);
    background-color: var(--bg-color);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer p {
    color: var(--text-light);
}

.footer-socials {
    display: flex;
    gap: 1.5rem;
}

.footer-socials a {
    color: var(--text-light);
    font-size: 1.25rem;
}

.footer-socials a:hover {
    color: var(--primary-color);
}

/* Video Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    align-items: center;
    justify-content: center;
}

.modal-content {
    background-color: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    width: 90%;
    max-width: 900px;
    position: relative;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    overflow: hidden;
}

.close-modal {
    position: absolute;
    top: 10px;
    right: 20px;
    color: var(--text-light);
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    z-index: 10;
}

.close-modal:hover {
    color: white;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
    text-align: center;
}

.overlay-content {
    padding: 2rem;
}

.overlay-content i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.overlay-content h3 {
    font-size: 1.5rem;
    color: white;
    margin-bottom: 0.5rem;
}

.overlay-content p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-trust {
        justify-content: center;
    }

    .row {
        flex-direction: column;
    }

    .creator-card {
        flex-direction: column;
        text-align: center;
        padding: 2rem;
    }

    .social-links a:hover {
        color: var(--primary-color);
    }

    /* Download Section */
    .download-section {
        background: linear-gradient(180deg, var(--bg-color) 0%, #1e293b 100%);
    }

    .download-section h2 {
        font-size: 2.5rem;
        margin-bottom: 1rem;
        color: white;
    }

    .download-section p {
        font-size: 1.25rem;
        color: var(--text-light);
        margin-bottom: 3rem;
    }

    .download-buttons {
        display: flex;
        justify-content: center;
        gap: 1rem;
        margin-bottom: 2rem;
    }

    .support-text {
        font-size: 1rem !important;
        color: var(--text-light);
    }

    .support-text a {
        color: var(--primary-color);
        font-weight: 500;
    }

    /* Footer */
    .footer {
        padding: 2rem 0;
        border-top: 1px solid var(--border-color);
        background-color: var(--bg-color);
    }

    .footer-content {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .footer p {
        color: var(--text-light);
    }

    .footer-socials {
        display: flex;
        gap: 1.5rem;
    }

    .footer-socials a {
        color: var(--text-light);
        font-size: 1.25rem;
    }

    .footer-socials a:hover {
        color: var(--primary-color);
    }

    /* Video Modal */
    .modal {
        display: none;
        position: fixed;
        z-index: 2000;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.8);
        backdrop-filter: blur(5px);
        align-items: center;
        justify-content: center;
    }

    .modal-content {
        background-color: var(--bg-light);
        border: 1px solid var(--border-color);
        border-radius: var(--radius-lg);
        width: 90%;
        max-width: 900px;
        position: relative;
        box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
        overflow: hidden;
    }

    .close-modal {
        position: absolute;
        top: 10px;
        right: 20px;
        color: var(--text-light);
        font-size: 2rem;
        font-weight: bold;
        cursor: pointer;
        z-index: 10;
    }

    .close-modal:hover {
        color: white;
    }

    .video-wrapper {
        position: relative;
        padding-bottom: 56.25%;
        /* 16:9 Aspect Ratio */
        height: 0;
        overflow: hidden;
    }

    .video-wrapper iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }

    .video-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(15, 23, 42, 0.9);
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 5;
        text-align: center;
    }

    .overlay-content {
        padding: 2rem;
    }

    .overlay-content i {
        font-size: 3rem;
        color: var(--primary-color);
        margin-bottom: 1rem;
    }

    .overlay-content h3 {
        font-size: 1.5rem;
        color: white;
        margin-bottom: 0.5rem;
    }

    .overlay-content p {
        color: var(--text-light);
        margin-bottom: 1.5rem;
    }

    /* Responsive */
    @media (max-width: 768px) {
        .nav-links {
            display: none;
        }

        .hero-container {
            grid-template-columns: 1fr;
            text-align: center;
            gap: 3rem;
        }

        .hero h1 {
            font-size: 2.5rem;
        }

        .hero-actions {
            justify-content: center;
        }

        .hero-trust {
            justify-content: center;
        }

        .row {
            flex-direction: column;
        }

        .creator-card {
            flex-direction: column;
            text-align: center;
            padding: 2rem;
        }

        .download-buttons {
            flex-direction: column;
        }

        .footer-content {
            flex-direction: column;
            gap: 1rem;
        }
    }

    /* Trendy Background Effects */
    body::before,
    body::after {
        content: '';
        position: fixed;
        width: 600px;
        height: 600px;
        border-radius: 50%;
        filter: blur(100px);
        z-index: -1;
        opacity: 0.4;
        animation: float 10s infinite alternate;
        pointer-events: none;
    }

    body::before {
        background: radial-gradient(circle, #3B82F6, transparent 70%);
        top: -100px;
        left: -100px;
    }

    body::after {
        background: radial-gradient(circle, #10B981, transparent 70%);
        bottom: -100px;
        right: -100px;
        animation-delay: -5s;
    }

    @keyframes float {
        0% {
            transform: translate(0, 0);
        }

        100% {
            transform: translate(50px, 50px);
        }
    }

    /* Browser Mockup Enhancements */
    .browser-address-bar {
        background: rgba(255, 255, 255, 0.05);
        color: var(--text-light);
        padding: 0.25rem 1rem;
        border-radius: var(--radius-full);
        font-size: 0.75rem;
        flex: 1;
        text-align: center;
        margin-left: 1rem;
        border: 1px solid var(--border-color);
    }

    .play-button-overlay {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        font-size: 5rem;
        color: white;
        opacity: 0.8;
        transition: all 0.3s ease;
        cursor: pointer;
        filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.5));
        z-index: 10;
    }

    .browser-content {
        position: relative;
        /* Ensure overlay is positioned relative to this */
    }

    .browser-content:hover .play-button-overlay {
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 1;
        color: var(--primary-color);
    }

    /* How It Works Section Spacing */
    .how-it-works {
        padding-top: 4rem;
        padding-bottom: 4rem;
    }