/* NeuraEdits Website Styles */
:root {
    /* Primary Colors - matching app theme */
    --primary-color: #1E90FF;      /* Electric Blue */
    --secondary-color: #00F0FF;    /* Aqua Neon */
    --accent-color: #00F0FF;       /* Aqua Neon */
    
    /* Theme Colors */
    --theme-transition: all 0.3s ease;
}

/* Light Theme Variables */
[data-theme="light"] {
    /* Background Colors */
    --bg-primary: #F8F8F8;         /* Light grey background */
    --bg-secondary: #FFFFFF;       /* White surface */
    --bg-card: #FFFFFF;            /* White cards */
    
    /* Text Colors */
    --text-primary: #1a1a1a;
    --text-secondary: #4a5568;
    --text-tertiary: #718096;
    --text-inverse: #FFFFFF;       /* White text on dark backgrounds */
    
    /* Border Colors */
    --border-color: #e2e8f0;
    --divider-color: #e2e8f0;      /* Dividers */
    
    /* Shadows */
    --shadow-light: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 4px 20px rgba(0, 0, 0, 0.15);
    --shadow-heavy: 0 8px 30px rgba(0, 0, 0, 0.2);
    --shadow-card: 0 4px 6px rgba(0, 0, 0, 0.05);
    --shadow-hover: 0 8px 25px rgba(0, 0, 0, 0.1);
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    --gradient-bg: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
    
    /* Glows */
    --glow-primary: 0 0 20px rgba(30, 144, 255, 0.2);
    --glow-secondary: 0 0 20px rgba(0, 240, 255, 0.2);
}

/* Dark Theme Variables */
[data-theme="dark"] {
    /* Background Colors */
    --bg-primary: #121212;         /* Carbon Black */
    --bg-secondary: #1A1A1A;       /* Deep Graphite */
    --bg-card: #1A1A1A;            /* Deep Graphite for cards */
    --bg-elevated: #2A2A2A;        /* Elevated surfaces */
    
    /* Text Colors */
    --text-primary: #F5F5F5;       /* Soft Snow White */
    --text-secondary: #B0B0B0;     /* Light grey text */
    --text-tertiary: #808080;      /* Medium grey text */
    --text-inverse: #212121;       /* Dark text on light backgrounds */
    
    /* Border Colors */
    --border-color: #333333;       /* Dark borders */
    --divider-color: #333333;      /* Dark dividers */
    
    /* Shadows */
    --shadow-light: 0 2px 10px rgba(0, 0, 0, 0.3);
    --shadow-medium: 0 4px 20px rgba(0, 0, 0, 0.4);
    --shadow-heavy: 0 8px 30px rgba(0, 0, 0, 0.5);
    --shadow-card: 0 4px 12px rgba(0, 0, 0, 0.3);
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    --gradient-bg: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
    
    /* Glows */
    --glow-primary: 0 0 20px rgba(30, 144, 255, 0.4);
    --glow-secondary: 0 0 20px rgba(0, 240, 255, 0.4);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--bg-primary);
    overflow-x: hidden;
    transition: var(--theme-transition);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(var(--bg-secondary-rgb, 26, 26, 26), 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: var(--theme-transition);
    border-bottom: 1px solid var(--border-color);
}

[data-theme="light"] .navbar {
    background: rgba(255, 255, 255, 0.95);
}

[data-theme="dark"] .navbar {
    background: rgba(26, 26, 26, 0.95);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    text-decoration: none;
    transition: var(--theme-transition);
}

.nav-logo i {
    color: var(--primary-color);
    margin-right: 0.5rem;
    font-size: 1.8rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: var(--theme-transition);
    position: relative;
    cursor: pointer;
    pointer-events: auto;
    display: inline-block;
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* Navigation Controls */
.nav-controls {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.theme-toggle {
    background: none;
    border: 2px solid var(--border-color);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--theme-transition);
    color: var(--text-secondary);
}

.theme-toggle:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: scale(1.05);
}

.theme-toggle:active {
    transform: scale(0.95);
}

.theme-toggle i {
    font-size: 1.1rem;
    transition: var(--theme-transition);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    margin: 3px 0;
    transition: var(--theme-transition);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    background: var(--gradient-bg);
    position: relative;
    overflow: hidden;
}

.hero-gallery-container {
    position: relative;
    max-width: 250px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-heavy);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-gallery-container:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.hero-gallery-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
}

.hero-image-overlay {
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    display: flex;
    justify-content: center;
    pointer-events: none;
}

.hero-badge {
    background: rgba(30, 144, 255, 0.9);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(30, 144, 255, 0.3);
}

.hero-badge i {
    font-size: 16px;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    transition: var(--theme-transition);
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.6;
    transition: var(--theme-transition);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--theme-transition);
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--glow-primary);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--glow-primary), var(--shadow-medium);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
}

.hero-stats {
    display: flex;
    gap: 2rem;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.stat-label {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Phone Mockup */
.phone-mockup {
    position: relative;
    width: 300px;
    height: 600px;
    margin: 0 auto;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(145deg, #2a2a2a, #1a1a1a);
    border-radius: 30px;
    padding: 20px;
    box-shadow: var(--shadow-heavy);
    border: 3px solid #333;
}

.app-preview {
    width: 100%;
    height: 100%;
    background: var(--bg-dark);
    border-radius: 20px;
    padding: 20px;
    display: flex;
    flex-direction: column;
}

.app-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #333;
}

.app-logo {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.app-header h3 {
    color: var(--text-white);
    font-size: 1.2rem;
}

.editing-interface {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.tool-panel {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.tool-item {
    aspect-ratio: 1;
    background: rgba(30, 144, 255, 0.1);
    border: 2px solid var(--primary-color);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.tool-item.active {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--glow-primary);
}

/* Background Animation */
.hero-bg-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.floating-element {
    position: absolute;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, var(--primary-color), transparent);
    border-radius: 50%;
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}

.floating-element:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.floating-element:nth-child(2) {
    top: 60%;
    right: 10%;
    animation-delay: 2s;
}

.floating-element:nth-child(3) {
    bottom: 20%;
    left: 50%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) scale(1); }
    50% { transform: translateY(-20px) scale(1.1); }
}

/* Features Section */
.features {
    padding: 100px 0;
    background: var(--bg-secondary);
    transition: var(--theme-transition);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
    transition: var(--theme-transition);
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    transition: var(--theme-transition);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--border-color);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08), 0 3px 8px rgba(0, 0, 0, 0.04);
}

.feature-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px rgba(30, 144, 255, 0.15), 0 10px 25px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
    box-shadow: var(--glow-primary);
}

.feature-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
    transition: var(--theme-transition);
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    transition: var(--theme-transition);
}

/* Screenshots Section */
.screenshots {
    padding: 100px 0;
    background: var(--gradient-bg);
    transition: var(--theme-transition);
}

.screenshots-carousel {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-bottom: 2rem;
}

/* App Screenshots Section */
.app-screenshots {
    padding: 80px 0;
    background: var(--bg-primary);
}

.screenshots-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.screenshot-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.3s ease;
}

.screenshot-item:hover {
    transform: translateY(-5px);
}

.screenshot-box {
    position: relative;
    width: 250px;
    height: auto;
    margin: 0 auto 1rem auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-heavy);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.screenshot-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.screenshot-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
}

.screenshot-item h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.screenshot-item p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.4;
    margin: 0;
}

.premium-badge {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #000;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 600;
    margin-left: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 4px rgba(255, 215, 0, 0.3);
}

/* Responsive Design for Screenshots Grid */
/* Large tablets and small desktops */
@media (max-width: 1024px) {
    .screenshots-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
        max-width: 800px;
    }
    
    .screenshot-box {
        width: 220px;
    }
}

/* Tablets */
@media (max-width: 768px) {
    .screenshots-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.2rem;
        max-width: 500px;
        margin-top: 2rem;
    }
    
    .screenshot-box {
        width: 200px;
    }
    
    .app-screenshots {
        padding: 60px 0;
    }
    
    .screenshot-item h3 {
        font-size: 1rem;
    }
    
    .screenshot-item p {
        font-size: 0.85rem;
    }
}

/* Large phones */
@media (max-width: 640px) {
    .screenshots-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        max-width: 400px;
    }
    
    .screenshot-box {
        width: 180px;
    }
}

/* Small phones */
@media (max-width: 480px) {
    .screenshots-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        max-width: 280px;
        margin-top: 1.5rem;
    }
    
    .screenshot-box {
        width: 240px;
        margin-bottom: 0.8rem;
    }
    
    .app-screenshots {
        padding: 50px 0;
    }
    
    .screenshot-item h3 {
        font-size: 0.95rem;
        margin-bottom: 0.3rem;
    }
    
    .screenshot-item p {
        font-size: 0.8rem;
    }
}

/* Extra small phones */
@media (max-width: 360px) {
    .screenshots-grid {
        max-width: 250px;
        gap: 1.2rem;
    }
    
    .screenshot-box {
        width: 220px;
    }
    
    .container {
        padding: 0 10px;
    }
}

/* Comprehensive Responsive Design */
@media (max-width: 1024px) {
    .hero-container {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .tools-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .download-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 80px 0 60px;
        min-height: auto;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
        padding: 0 15px;
    }
    
    .hero-content {
        order: 1;
    }
    
    .hero-image {
        order: 2;
    }
    
    .hero h1,
    .hero-title {
        font-size: 2rem;
        line-height: 1.2;
        margin-bottom: 1rem;
        color: var(--text-primary);
        display: block;
        visibility: visible;
    }
    
    .hero p,
    .hero-description {
        font-size: 1rem;
        line-height: 1.5;
        margin-bottom: 1.5rem;
        color: var(--text-secondary);
        display: block;
        visibility: visible;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .tools-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .download-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .navbar {
        padding: 0.5rem 0;
    }
    
    .nav-container {
        padding: 0 15px;
    }
    
    .nav-logo {
        font-size: 1.2rem;
    }
    
    .nav-logo i {
        font-size: 1.4rem;
        margin-right: 0.3rem;
    }
    
    .theme-toggle {
        width: 32px;
        height: 32px;
    }
    
    .hero {
        padding: 80px 0 50px;
    }
    
    .hero-container {
        padding: 0 10px;
        gap: 1.5rem;
    }
    
    .hero h1,
    .hero-title {
        font-size: 1.75rem;
        line-height: 1.1;
        margin-bottom: 0.8rem;
        color: var(--text-primary);
        display: block;
        visibility: visible;
    }
    
    .hero p,
    .hero-description {
        font-size: 0.9rem;
        line-height: 1.4;
        margin-bottom: 1.2rem;
        color: var(--text-secondary);
        display: block;
        visibility: visible;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 0.8rem;
        margin-bottom: 2rem;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .feature-card {
        padding: 1.5rem;
    }
    
    .screenshot-container {
        max-width: 200px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-section {
        padding: 0 1rem;
    }
    
    .footer-section:first-child {
        order: 1;
        margin-bottom: 1rem;
    }
    
    .footer-section h4 {
        font-size: 1rem;
        margin-bottom: 1rem;
        color: var(--primary-color);
    }
    
    .footer-section ul {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .footer-section ul li {
        margin-bottom: 0;
    }
    
    .footer-section ul li a {
        font-size: 0.9rem;
        padding: 0.3rem 0.8rem;
        border-radius: 15px;
        background: rgba(30, 144, 255, 0.1);
        border: 1px solid transparent;
        transition: all 0.3s ease;
    }
    
    .footer-section ul li a:hover {
        border-color: var(--primary-color);
        background: rgba(30, 144, 255, 0.2);
    }
    
    .footer-logo {
        margin-bottom: 1rem;
        justify-content: center;
    }
    
    .footer-logo span {
        font-size: 1.3rem;
    }
    
    .footer-logo i {
        font-size: 1.5rem;
    }
    
    .footer-section p {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
        max-width: 280px;
        margin-left: auto;
        margin-right: auto;
        line-height: 1.5;
    }
    
    .social-links {
        gap: 1rem;
        justify-content: center;
        margin-bottom: 1rem;
    }
    
    .social-links a {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }
    
    /* Mobile Navigation */
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--bg-secondary);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
        z-index: 1000;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-toggle {
        display: block;
        cursor: pointer;
    }
    
    .nav-toggle .bar {
        width: 25px;
        height: 3px;
        margin: 3px 0;
        transition: 0.3s;
        background-color: var(--text-primary);
        border-radius: 3px;
        display: block;
    }
    
    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
}

.screenshot-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 0.6;
    transition: all 0.3s ease;
    transform: scale(0.9);
}

.screenshot-item.active {
    opacity: 1;
    transform: scale(1);
}

.screenshot-phone {
    width: 250px;
    height: 500px;
    background: linear-gradient(145deg, var(--bg-elevated), var(--bg-card));
    border-radius: 25px;
    padding: 15px;
    box-shadow: var(--shadow-heavy);
    border: 2px solid var(--border-color);
    margin-bottom: 1rem;
    transition: var(--theme-transition);
}

.screenshot-content {
    width: 100%;
    height: 100%;
    border-radius: 15px;
    overflow: hidden;
}

.mock-screen {
    width: 100%;
    height: 100%;
    background: var(--bg-primary);
    padding: 20px;
    display: flex;
    flex-direction: column;
    transition: var(--theme-transition);
}

/* Screenshot Container Styles */
.screenshot-container {
    position: relative;
    max-width: 240px;
    margin: 0 auto;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12), 0 4px 10px rgba(0, 0, 0, 0.06);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: var(--bg-card);
}

.screenshot-container:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(30, 144, 255, 0.12), 0 8px 20px rgba(0, 0, 0, 0.15);
}

.screenshot-image {
    width: 100%;
    height: auto;
    max-height: 320px;
    object-fit: cover;
    display: block;
    border-radius: 15px;
}

.screenshot-overlay {
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    display: flex;
    justify-content: center;
    pointer-events: none;
}

.screenshot-badge {
    background: rgba(30, 144, 255, 0.9);
    color: white;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(30, 144, 255, 0.3);
}

.premium-badge {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #1a1a1a;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-left: 8px;
    box-shadow: 0 2px 8px rgba(255, 215, 0, 0.3);
    display: inline-block;
}

/* Placeholder Styling */
.placeholder-container {
    background: var(--bg-card);
    border: 2px dashed var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 200px;
    transition: var(--theme-transition);
}

.placeholder-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-tertiary);
    transition: var(--theme-transition);
}

.placeholder-content i {
    font-size: 2rem;
    color: var(--text-tertiary);
    opacity: 0.5;
}

.placeholder-content span {
    font-size: 0.9rem;
    font-weight: 500;
    opacity: 0.7;
}

.workflow-item.placeholder:hover .placeholder-container {
    border-color: var(--primary-color);
    background: rgba(30, 144, 255, 0.05);
}

.workflow-item.placeholder:hover .placeholder-content {
    color: var(--primary-color);
}

.workflow-item.placeholder:hover .placeholder-content i {
    color: var(--primary-color);
    opacity: 0.8;
}

/* Community Logo Styles */
.logo-showcase {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
}

.community-logo {
    max-width: 200px;
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: var(--shadow-medium);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.community-logo:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-heavy);
}

.screenshot-info {
    text-align: center;
    margin-top: 20px;
    padding: 0 10px;
}

.screenshot-info h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.screenshot-info p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.4;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--primary-color);
    box-shadow: var(--glow-primary);
}

/* Download Section */
.download {
    padding: 100px 0;
    background: var(--bg-dark);
}

.download-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.download-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-white);
}

.download-text p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.download-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.download-btn {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: rgba(26, 26, 26, 0.8);
    border: 2px solid var(--primary-color);
    border-radius: 15px;
    text-decoration: none;
    color: var(--text-white);
    transition: all 0.3s ease;
}

.download-btn:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: var(--glow-primary);
}

.download-btn i {
    font-size: 2rem;
}

.download-btn div {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.download-btn span {
    font-size: 0.8rem;
    color: var(--text-light);
}

.download-btn strong {
    font-size: 1rem;
    color: var(--text-white);
}

.download-note {
    font-size: 0.9rem;
    color: var(--text-light);
}

.phone-showcase {
    display: flex;
    justify-content: center;
}

.phone-device {
    width: 300px;
    height: 600px;
    background: linear-gradient(145deg, #2a2a2a, #1a1a1a);
    border-radius: 30px;
    padding: 20px;
    box-shadow: var(--shadow-heavy);
    border: 3px solid #333;
}

.phone-screen-showcase {
    width: 100%;
    height: 100%;
    background: var(--bg-dark);
    border-radius: 20px;
    padding: 20px;
    display: flex;
    flex-direction: column;
}

.showcase-app {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.showcase-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #333;
}

.showcase-header i {
    color: var(--primary-color);
    font-size: 1.5rem;
}

.showcase-header span {
    color: var(--text-white);
    font-weight: 600;
}

.showcase-content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-highlight {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 20px;
    background: rgba(30, 144, 255, 0.1);
    border: 2px solid var(--primary-color);
    border-radius: 25px;
    color: var(--primary-color);
    font-weight: 500;
}

.feature-highlight i {
    animation: sparkle 2s ease-in-out infinite;
}

@keyframes sparkle {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

/* Footer */
.footer {
    background: var(--bg-secondary);
    padding: 60px 0 20px;
    border-top: 1px solid var(--border-color);
    transition: var(--theme-transition);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    color: var(--text-primary);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    transition: var(--theme-transition);
}

.footer-logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
    transition: var(--theme-transition);
}

.footer-logo i {
    color: var(--primary-color);
    margin-right: 0.5rem;
    font-size: 1.8rem;
}

.footer-section p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    transition: var(--theme-transition);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(30, 144, 255, 0.1);
    border: 1px solid var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--theme-transition);
}

.footer-section ul li a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.footer-bottom p {
    color: var(--text-secondary);
    transition: var(--theme-transition);
}

/* Powered by NeuraCreations Branding */
.powered-by {
    font-size: 0.9rem;
    color: var(--text-tertiary) !important;
    font-style: italic;
    margin-top: 0.5rem;
    opacity: 0.8;
    transition: var(--theme-transition);
}

.footer-bottom .powered-by {
    margin-top: 0.5rem;
    font-size: 0.85rem;
}

.powered-by:hover {
    opacity: 1;
    color: var(--primary-color) !important;
}

/* Legal Pages Styling */
.legal-content {
    padding: 120px 0 60px;
    background: var(--bg-primary);
    transition: var(--theme-transition);
}

.legal-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.legal-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    transition: var(--theme-transition);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

[data-theme="light"] .legal-header h1 {
    color: #1a1a1a;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.legal-meta {
    margin-bottom: 1.5rem;
}

.legal-meta p {
    color: var(--text-secondary);
    margin: 0.5rem 0;
    transition: var(--theme-transition);
}

.intro-text {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
    transition: var(--theme-transition);
}

.legal-body {
    max-width: 800px;
    margin: 0 auto;
}

.legal-section {
    margin-bottom: 2.5rem;
    padding: 1.5rem;
    background: var(--bg-card);
    border-radius: 12px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-card);
    transition: var(--theme-transition);
}

.legal-section h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
    transition: var(--theme-transition);
}

.legal-section h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 1.5rem 0 0.75rem;
    transition: var(--theme-transition);
}

.legal-section p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1rem;
    transition: var(--theme-transition);
}

.legal-section ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 1rem;
}

.legal-section ul li {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
    transition: var(--theme-transition);
}

.legal-section ul li::before {
    content: '•';
    color: var(--primary-color);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.contact-info {
    background: var(--bg-elevated);
    padding: 0.75rem 1rem;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
    margin: 1rem 0;
    transition: var(--theme-transition);
}

.contact-info a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--theme-transition);
}

.contact-info a:hover {
    text-decoration: underline;
}

/* Featured Tools Section */
.featured-tools {
    padding: 80px 0;
    background: var(--bg-secondary);
    transition: var(--theme-transition);
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
    justify-items: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.tool-item {
    text-align: center;
    padding: 0.75rem 0.5rem;
    background: var(--bg-card);
    border-radius: 12px;
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08), 0 2px 6px rgba(0, 0, 0, 0.04);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    min-height: 80px;
    max-height: 120px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0.3rem;
}

.tool-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(30, 144, 255, 0.15), 0 6px 15px rgba(0, 0, 0, 0.1);
    border-color: rgba(30, 144, 255, 0.3);
}

.tool-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 0;
    transition: var(--theme-transition);
}

.tool-item h3 {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
    transition: var(--theme-transition);
    line-height: 1.1;
}

/* Get the App Text Styling */
.get-app-text {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 1.5rem 0 1rem;
    transition: var(--theme-transition);
}

.release-date {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    padding: 0.5rem 1rem;
    background: rgba(30, 144, 255, 0.1);
    border-radius: 8px;
    border-left: 3px solid var(--primary-color);
    transition: var(--theme-transition);
    display: inline-block;
}

/* Light Theme Specific Overrides */
[data-theme="light"] .navbar {
    background: rgba(255, 255, 255, 0.95) !important;
    border-bottom: 1px solid #e2e8f0;
    backdrop-filter: blur(10px);
}

/* Force dark text for all navbar links in light theme */
[data-theme="light"] .nav-link,
[data-theme="light"] .nav-menu a,
[data-theme="light"] .navbar .nav-link,
[data-theme="light"] .navbar a[class*="nav-link"] {
    color: #000000 !important;
    font-weight: 600 !important;
    text-shadow: none !important;
    opacity: 1 !important;
}

[data-theme="light"] .nav-link:hover,
[data-theme="light"] .nav-menu a:hover,
[data-theme="light"] .navbar .nav-link:hover,
[data-theme="light"] .navbar a[class*="nav-link"]:hover {
    color: #1E90FF !important;
    font-weight: 600 !important;
}

/* Ensure text-secondary variable is dark in light theme */
[data-theme="light"] {
    --text-secondary: #000000;
}

/* Dark Theme Navbar Specific Overrides */
[data-theme="dark"] .nav-link,
[data-theme="dark"] .nav-menu a,
[data-theme="dark"] .navbar .nav-link,
[data-theme="dark"] .navbar a[class*="nav-link"] {
    color: #F5F5F5 !important;
    font-weight: 600 !important;
    text-shadow: none !important;
    opacity: 1 !important;
}

[data-theme="dark"] .nav-link:hover,
[data-theme="dark"] .nav-menu a:hover,
[data-theme="dark"] .navbar .nav-link:hover,
[data-theme="dark"] .navbar a[class*="nav-link"]:hover {
    color: #1E90FF !important;
    font-weight: 600 !important;
}

/* Ensure text-secondary variable is light in dark theme */
[data-theme="dark"] {
    --text-secondary: #F5F5F5;
}

[data-theme="light"] .nav-logo span {
    color: #1a1a1a !important;
    font-weight: 700;
}

[data-theme="light"] .nav-logo i {
    color: var(--primary-color) !important;
}

[data-theme="light"] .theme-toggle {
    background: #f7fafc;
    border: 1px solid #e2e8f0;
    color: #4a5568;
}

[data-theme="light"] .theme-toggle:hover {
    background: #edf2f7;
    border-color: var(--primary-color);
}

/* Light theme download section */
[data-theme="light"] .download {
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
}

[data-theme="light"] .download-text h2 {
    color: #1a1a1a !important;
    font-weight: 700;
}

[data-theme="light"] .download-text p {
    color: #4a5568 !important;
}

[data-theme="light"] .get-app-text {
    color: #2d3748 !important;
    font-weight: 600;
}

[data-theme="light"] .download-note {
    color: #718096 !important;
}

[data-theme="light"] .powered-by {
    color: #718096 !important;
}

/* Light theme button improvements */
[data-theme="light"] .download-btn {
    background: #ffffff;
    border: 2px solid #e2e8f0;
    color: #2d3748 !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

[data-theme="light"] .download-btn:hover {
    background: #f7fafc;
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(30, 144, 255, 0.2);
}

[data-theme="light"] .download-btn i {
    color: var(--primary-color) !important;
}

[data-theme="light"] .download-btn strong {
    color: #1a1a1a !important;
}

[data-theme="light"] .download-btn span {
    color: #4a5568 !important;
}

/* Launch Animation Overlay */
.launch-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 1;
    transition: opacity 0.5s ease-out;
}

.launch-overlay.fade-out {
    opacity: 0;
    pointer-events: none;
}

.launch-content {
    text-align: center;
    animation: launchFadeIn 2s ease-out;
}

.launch-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    animation: logoZoom 1.5s ease-out;
}

.launch-logo i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-right: 0.5rem;
    animation: iconSpin 2s ease-out;
}

.launch-text {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.launch-branding {
    animation: brandingFadeIn 1s ease-out 1.5s both;
}

.powered-by-launch {
    font-size: 1rem;
    color: var(--text-secondary);
    font-style: italic;
    opacity: 0.8;
}

/* Launch Animation Keyframes */
@keyframes launchFadeIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes logoZoom {
    0% {
        transform: scale(0.8);
        opacity: 0;
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes iconSpin {
    0% {
        transform: rotate(0deg) scale(0.8);
        opacity: 0;
    }
    50% {
        transform: rotate(180deg) scale(1.1);
    }
    100% {
        transform: rotate(360deg) scale(1);
        opacity: 1;
    }
}

@keyframes brandingFadeIn {
    0% {
        opacity: 0;
        transform: translateY(10px);
    }
    100% {
        opacity: 0.8;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-controls {
        gap: 0.5rem;
    }
    
    .hero-gallery-container {
        max-width: 200px;
    }
    
    .screenshot-container {
        max-width: 200px;
    }
    
    .screenshot-image {
        max-height: 280px;
    }
    
    .screenshot-info {
        margin-top: 15px;
        padding: 0 5px;
    }
    
    .community-logo {
        max-width: 160px;
    }
    
    .theme-toggle {
        width: 35px;
        height: 35px;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--bg-secondary);
        width: 100%;
        text-align: center;
        transition: var(--theme-transition);
        padding: 2rem 0;
        backdrop-filter: blur(10px);
        border-top: 1px solid var(--border-color);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .screenshots-carousel {
        flex-direction: column;
        align-items: center;
    }

    .download-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .download-buttons {
        flex-direction: column;
        align-items: center;
    }

    .phone-mockup,
    .phone-device {
        width: 250px;
        height: 500px;
    }
}
