:root {
    /* Palette from reference theme */
    --primary-color: #e91e63;
    --primary-hover: #c2185b;
    --primary-gradient: linear-gradient(135deg, #e91e63, #ff4081);
    --primary-light: #fce4ec;
    --accent-color: #f97316; /* Vibrant Orange */
    --accent-gradient: linear-gradient(135deg, #f97316, #fb923c);

    --text-dark: #1e293b; /* Slate 800 */
    --text-gray: #475569; /* Slate 600 */
    --text-muted: #94a3b8;

    --bg-body: #fff5f8; /* Soft pink tint background */
    --bg-white: #ffffff;
    --bg-card: rgba(255, 255, 255, 0.9);
    --bg-dark-terminal: #1a0910; /* Very Dark Deep Pink/Black */

    --border-radius-lg: 24px;
    --border-radius-md: 16px;
    --border-radius-sm: 10px;

    --shadow-card: 0 10px 30px -5px rgba(233, 30, 99, 0.08);
    --shadow-hover: 0 20px 40px -5px rgba(233, 30, 99, 0.18);
    --shadow-btn: 0 8px 24px -4px rgba(233, 30, 99, 0.35);

    --font-family: 'Inter', sans-serif;
    --font-mono: 'JetBrains Mono', monospace;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--font-family);
}

body {
    background-color: var(--bg-body);
    background-image: 
        radial-gradient(at 0% 0%, rgba(233, 30, 99, 0.08) 0px, transparent 50%),
        radial-gradient(at 100% 100%, rgba(249, 115, 22, 0.08) 0px, transparent 50%);
    color: var(--text-dark);
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
}

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

.text-center { text-align: center; }

/* Header / Navbar */
.app-header {
    padding: 20px 0;
    position: relative;
    z-index: 100;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo-icon {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: var(--primary-gradient);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    box-shadow: 0 6px 18px rgba(233, 30, 99, 0.3);
}

.logo-text {
    font-size: 1.6rem;
    font-weight: 900;
    font-style: italic;
    letter-spacing: -1px;
}

.brand-clone { color: var(--primary-color); }
.brand-my { color: var(--text-dark); }
.brand-web { color: var(--primary-color); }
.pro-tag {
    font-size: 0.72rem;
    font-style: normal;
    font-weight: 800;
    background: var(--accent-gradient);
    color: #fff;
    padding: 2px 8px;
    border-radius: 20px;
    margin-left: 6px;
    vertical-align: middle;
}

/* Nav Links Pill */
.nav-links {
    display: flex;
    gap: 28px;
    font-size: 14px;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.85);
    padding: 10px 28px;
    border-radius: 50px;
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.9);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.nav-links a {
    color: var(--text-gray);
    text-decoration: none;
    transition: all 0.25s ease;
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-links a:hover, .nav-links a.active {
    color: var(--primary-color);
}

/* Status Badge */
.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 0.82rem;
    font-weight: 600;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.25);
    color: #059669;
}

.status-badge .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #10b981;
    box-shadow: 0 0 10px #10b981;
}

/* Header Right & Mobile Menu Button */
.header-right {
    display: flex;
    align-items: center;
    gap: 10px;
}

.mobile-menu-toggle {
    display: none;
    background: var(--bg-white);
    border: 1px solid rgba(233, 30, 99, 0.15);
    color: var(--primary-color);
    width: 42px;
    height: 42px;
    border-radius: 12px;
    font-size: 1.2rem;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(233, 30, 99, 0.08);
    transition: all 0.25s ease;
}

.mobile-menu-toggle:hover {
    background: var(--primary-light);
}

/* Hero Section */
.hero-section {
    padding: 3rem 0 2rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    border-radius: 30px;
    background: var(--primary-light);
    color: var(--primary-color);
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
}

.hero-title {
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--text-dark);
    letter-spacing: -1px;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.gradient-text {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-gray);
    max-width: 680px;
    margin: 0 auto 2.5rem;
}

/* Downloader Card */
.downloader-card {
    background: var(--bg-white);
    border-radius: var(--border-radius-lg);
    padding: 2.2rem;
    box-shadow: var(--shadow-hover);
    border: 1px solid rgba(233, 30, 99, 0.1);
    max-width: 860px;
    margin: 0 auto;
}

.url-input-container {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
}

.input-icon {
    position: absolute;
    left: 20px;
    font-size: 1.2rem;
    color: var(--primary-color);
}

.url-input-container input {
    flex: 1;
    background: var(--bg-body);
    border: 2px solid transparent;
    border-radius: 50px;
    padding: 1.1rem 1.4rem 1.1rem 3.4rem;
    font-size: 1rem;
    color: var(--text-dark);
    transition: all 0.3s ease;
}

.url-input-container input:focus {
    outline: none;
    background: #fff;
    border-color: var(--primary-color);
    box-shadow: 0 0 25px rgba(233, 30, 99, 0.2);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 1.1rem 2.2rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-primary {
    background: var(--primary-gradient);
    color: #fff;
    box-shadow: var(--shadow-btn);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(233, 30, 99, 0.45);
}

.btn-success {
    background: linear-gradient(135deg, #10b981, #059669);
    color: #fff;
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.35);
}

.btn-success:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(16, 185, 129, 0.45);
}

.btn-secondary {
    background: #f1f5f9;
    color: var(--text-dark);
    border: 1px solid #cbd5e1;
}

.btn-secondary:hover {
    background: #e2e8f0;
}

.btn-sm {
    padding: 8px 16px;
    font-size: 0.85rem;
    border-radius: 20px;
}

.btn-lg {
    padding: 1.2rem 2.5rem;
    font-size: 1.05rem;
}

/* Accordion */
.options-accordion {
    margin-top: 1.5rem;
    border-top: 1px solid #f1f5f9;
    padding-top: 1rem;
}

.accordion-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--text-gray);
    padding: 6px 0;
}

.accordion-toggle:hover {
    color: var(--primary-color);
}

.options-content {
    display: none;
    margin-top: 1rem;
    padding: 1.2rem;
    background: var(--bg-body);
    border-radius: var(--border-radius-md);
    text-align: left;
}

.options-content.open { display: block; }

.options-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 1.5rem;
    align-items: center;
}

.option-item label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-gray);
    margin-bottom: 6px;
}

.option-item select {
    width: 100%;
    background: #fff;
    border: 1px solid #e2e8f0;
    color: var(--text-dark);
    padding: 10px 14px;
    border-radius: 10px;
    font-weight: 500;
}

.option-checkboxes {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-dark);
    cursor: pointer;
}

/* Stats Section */
.stats-section {
    margin-bottom: 2.5rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.2rem;
}

.stat-card {
    background: var(--bg-white);
    border-radius: var(--border-radius-md);
    padding: 1.4rem;
    display: flex;
    align-items: center;
    gap: 1.2rem;
    box-shadow: var(--shadow-card);
    border: 1px solid rgba(233, 30, 99, 0.06);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.stat-icon {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
}

.stat-icon.pink { background: var(--primary-light); color: var(--primary-color); }
.stat-icon.orange { background: #ffedd5; color: var(--accent-color); }
.stat-icon.blue { background: #dbeafe; color: #2563eb; }
.stat-icon.green { background: #d1fae5; color: #059669; }

.stat-info { display: flex; flex-direction: column; }
.stat-value { font-size: 1.35rem; font-weight: 800; color: var(--text-dark); }
.stat-label { font-size: 0.8rem; font-weight: 500; color: var(--text-gray); }

/* Workspace Tabs Section */
.workspace-section {
    margin-bottom: 3rem;
}

.tab-buttons {
    display: flex;
    gap: 12px;
    margin-bottom: 1rem;
}

.tab-btn {
    background: #fff;
    border: 1px solid #e2e8f0;
    color: var(--text-gray);
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.25s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.tab-btn.active {
    background: var(--primary-gradient);
    color: #fff;
    border-color: transparent;
    box-shadow: var(--shadow-btn);
}

.tab-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.tab-content { display: none; }
.tab-content.active { display: block; }

/* Terminal Window */
.terminal-window {
    background: var(--bg-dark-terminal);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(26, 9, 16, 0.4);
    border: 1px solid rgba(233, 30, 99, 0.2);
}

.terminal-topbar {
    background: #27121b;
    padding: 12px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.window-dots { display: flex; gap: 6px; }
.window-dots .dot { width: 12px; height: 12px; border-radius: 50%; }
.dot.red { background: #ff5f56; }
.dot.yellow { background: #ffbd2e; }
.dot.green { background: #27c93f; }

.terminal-title {
    font-family: var(--font-mono);
    font-size: 0.85rem;
    color: #f472b6;
    font-weight: 600;
}

.clear-btn {
    background: transparent;
    border: none;
    color: #94a3b8;
    font-size: 0.8rem;
    cursor: pointer;
}

.clear-btn:hover { color: #fff; }

.terminal-body {
    padding: 1.4rem;
    height: 320px;
    overflow-y: auto;
    font-family: var(--font-mono);
    font-size: 0.88rem;
    line-height: 1.7;
}

.log-line { margin-bottom: 6px; word-break: break-all; }
.log-time { color: #64748b; margin-right: 8px; }
.log-line.system { color: #60a5fa; }
.log-line.info { color: #f1f5f9; }
.log-line.warn { color: #fbbf24; }
.log-line.error { color: #f87171; }
.log-line.success { color: #34d399; font-weight: 600; }

/* Offline Preview Window */
.preview-window {
    background: var(--bg-white);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-hover);
}

.preview-bar {
    padding: 14px 20px;
    background: #f8fafc;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #e2e8f0;
}

.preview-url-display {
    font-family: var(--font-mono);
    font-size: 0.85rem;
    color: #059669;
    font-weight: 600;
}

.preview-iframe-box {
    width: 100%;
    height: 520px;
}

.preview-iframe-box iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Download Banner */
.download-banner {
    margin-top: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, #ecfdf5, #d1fae5);
    border: 2px solid #10b981;
    padding: 1.6rem 2.2rem;
    border-radius: var(--border-radius-lg);
    box-shadow: 0 12px 30px rgba(16, 185, 129, 0.2);
    animation: popIn 0.3s ease-out;
}

.download-banner.hidden { display: none; }

.download-banner-info {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

.banner-icon {
    font-size: 2.5rem;
    color: #10b981;
}

.download-banner-info h3 {
    font-size: 1.3rem;
    font-weight: 800;
    color: #065f46;
}

.download-banner-info p {
    font-size: 0.9rem;
    color: #047857;
}

/* Features Showcase */
.features-section {
    padding: 4rem 0 3rem;
    border-top: 1px solid rgba(233, 30, 99, 0.08);
}

.section-header h2 {
    font-size: 2.2rem;
    font-weight: 900;
    margin-bottom: 0.6rem;
}

.section-header p {
    color: var(--text-gray);
    font-size: 1.05rem;
    margin-bottom: 3rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.8rem;
}

.feature-card {
    background: var(--bg-white);
    border-radius: var(--border-radius-md);
    padding: 2rem;
    box-shadow: var(--shadow-card);
    border: 1px solid rgba(233, 30, 99, 0.06);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
}

.feature-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: var(--primary-light);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.2rem;
}

.feature-card h3 {
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 0.6rem;
    color: var(--text-dark);
}

.feature-card p {
    font-size: 0.92rem;
    color: var(--text-gray);
    line-height: 1.6;
}

/* FAQ Section */
.faq-section {
    padding: 3rem 0 5rem;
}

.faq-accordion {
    max-width: 860px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: var(--bg-white);
    border-radius: var(--border-radius-md);
    border: 1px solid rgba(233, 30, 99, 0.08);
    box-shadow: var(--shadow-card);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-question {
    padding: 1.3rem 1.6rem;
    font-size: 1.02rem;
    font-weight: 700;
    color: var(--text-dark);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.25s ease;
}

.faq-question:hover {
    color: var(--primary-color);
}

.faq-icon {
    color: var(--primary-color);
    margin-right: 10px;
}

.faq-chevron {
    color: var(--text-gray);
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-chevron {
    transform: rotate(180deg);
    color: var(--primary-color);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 1.6rem;
    font-size: 0.95rem;
    color: var(--text-gray);
    line-height: 1.7;
    transition: all 0.35s cubic-bezier(0, 1, 0, 1);
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 1.6rem 1.4rem;
    transition: all 0.35s ease-in-out;
}

.faq-answer code {
    background: var(--primary-light);
    color: var(--primary-color);
    padding: 2px 6px;
    border-radius: 4px;
    font-family: var(--font-mono);
    font-size: 0.88rem;
}

/* Footer */
.app-footer {
    padding: 2.5rem 0;
    background: #1a0910;
    color: #94a3b8;
    font-size: 0.9rem;
}

@keyframes popIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 992px) {
    .nav-container {
        position: relative;
    }
    .mobile-menu-toggle {
        display: flex;
    }
    .nav-links {
        display: none;
        position: absolute;
        top: calc(100% + 12px);
        left: 0;
        right: 0;
        width: 100%;
        flex-direction: column;
        gap: 8px;
        padding: 16px 20px;
        border-radius: 20px;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(16px);
        border: 1px solid rgba(233, 30, 99, 0.12);
        box-shadow: 0 15px 35px rgba(233, 30, 99, 0.15);
        z-index: 999;
    }
    .nav-links.mobile-open {
        display: flex;
        animation: popIn 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    }
    .nav-links a {
        padding: 10px 14px;
        border-radius: 10px;
        font-size: 0.95rem;
    }
    .nav-links a:hover, .nav-links a.active {
        background: var(--primary-light);
    }

    .hero-title { font-size: 2.2rem; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .features-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }
    .app-header {
        padding: 14px 0;
    }
    .logo-icon {
        width: 38px;
        height: 38px;
        font-size: 1.1rem;
        border-radius: 12px;
    }
    .logo-text {
        font-size: 1.35rem;
    }
    .status-badge {
        padding: 6px 12px;
        font-size: 0.8rem;
    }

    .hero-section {
        padding: 2rem 0 1.5rem;
    }
    .hero-badge {
        font-size: 0.78rem;
        padding: 6px 12px;
        margin-bottom: 1rem;
        word-break: break-word;
    }
    .hero-title {
        font-size: clamp(1.6rem, 6vw, 2.2rem);
        line-height: 1.25;
        margin-bottom: 0.8rem;
    }
    .hero-subtitle {
        font-size: 0.92rem;
        margin-bottom: 1.5rem;
        padding: 0 4px;
    }

    .downloader-card {
        padding: 16px;
        border-radius: 20px;
    }
    .url-input-container {
        flex-direction: column;
        background: transparent;
        border: none;
        box-shadow: none;
        padding: 0;
        gap: 12px;
    }
    .url-input-container .input-icon {
        left: 14px;
        top: 18px;
    }
    .url-input-container input {
        width: 100%;
        height: 52px;
        border-radius: 14px;
        border: 1.5px solid rgba(233, 30, 99, 0.18);
        background: #fff;
        font-size: 0.95rem;
        padding-left: 42px;
        padding-right: 14px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    }
    .btn-hero {
        width: 100%;
        height: 50px;
        border-radius: 14px;
        justify-content: center;
        font-size: 1rem;
    }

    .accordion-toggle {
        font-size: 0.88rem;
        padding: 12px;
    }
    .options-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    .option-checkboxes {
        grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
        display: grid;
        gap: 10px;
    }

    .stats-section {
        padding: 1.5rem 0;
    }
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    .stat-card {
        padding: 14px 12px;
        border-radius: 16px;
        gap: 10px;
    }
    .stat-icon {
        width: 38px;
        height: 38px;
        font-size: 1rem;
        border-radius: 10px;
    }
    .stat-value {
        font-size: 1.15rem;
    }
    .stat-label {
        font-size: 0.75rem;
    }

    .workspace-section {
        padding: 1.5rem 0;
    }
    .tab-buttons {
        gap: 6px;
    }
    .tab-btn {
        flex: 1 1 auto;
        padding: 10px 12px;
        font-size: 0.82rem;
        justify-content: center;
    }
    .terminal-topbar {
        padding: 10px 14px;
    }
    .terminal-title {
        font-size: 0.8rem;
    }
    .terminal-body {
        height: 280px;
        padding: 12px;
        font-size: 0.8rem;
    }

    .download-banner {
        flex-direction: column;
        text-align: center;
        gap: 14px;
        padding: 20px 16px;
        border-radius: 20px;
    }
    .download-banner-info {
        flex-direction: column;
        gap: 8px;
    }
    .downloadZipBtn {
        width: 100%;
        justify-content: center;
        font-size: 0.95rem;
        height: 48px;
    }

    .features-section {
        padding: 2.5rem 0;
    }
    .section-header h2 {
        font-size: 1.5rem;
    }
    .features-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .feature-card {
        padding: 20px 16px;
    }

    .faq-section {
        padding: 2rem 0 3.5rem;
    }
    .faq-question {
        padding: 1.1rem 1.2rem;
        font-size: 0.92rem;
    }
    .faq-answer {
        font-size: 0.88rem;
        padding: 0 1.2rem 1.1rem;
    }

    .app-footer {
        padding: 2rem 1rem;
        font-size: 0.82rem;
    }
}

@media (max-width: 400px) {
    .logo-text {
        font-size: 1.15rem;
    }
    .status-badge span:not(.dot) {
        display: none;
    }
    .stats-grid {
        grid-template-columns: 1fr;
    }
}

/* Theme Toggle Button */
.theme-toggle-btn {
    background: var(--bg-white);
    border: 1px solid rgba(233, 30, 99, 0.15);
    color: var(--primary-color);
    width: 40px;
    height: 40px;
    border-radius: 12px;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(233, 30, 99, 0.08);
    transition: all 0.25s ease;
}

.theme-toggle-btn:hover {
    background: var(--primary-light);
    transform: scale(1.05);
}

/* Share Bar */
.share-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 1.5rem;
    padding: 12px 18px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 40px;
    border: 1px solid rgba(233, 30, 99, 0.1);
    backdrop-filter: blur(8px);
}

.share-title {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--text-dark);
}

.share-btn {
    border: none;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.82rem;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #fff;
    transition: all 0.25s ease;
}

.share-btn.whatsapp { background: #25d366; }
.share-btn.twitter { background: #000; }
.share-btn.linkedin { background: #0a66c2; }
.share-btn.copy { background: var(--primary-color); }
.share-btn:hover { opacity: 0.9; transform: translateY(-2px); }

/* Comprehensive Guide Section */
.guide-section {
    padding: 3rem 0;
}

.guide-card {
    background: var(--bg-white);
    border-radius: var(--border-radius-lg);
    padding: 2.5rem 2rem;
    box-shadow: var(--shadow-card);
    border: 1px solid rgba(233, 30, 99, 0.08);
}

.guide-content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.guide-block {
    background: rgba(255, 245, 248, 0.5);
    padding: 1.6rem;
    border-radius: 16px;
    border: 1px solid rgba(233, 30, 99, 0.06);
}

.guide-block h3 {
    font-size: 1.15rem;
    font-weight: 800;
    margin-bottom: 0.8rem;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 10px;
}

.guide-block h3 i {
    color: var(--primary-color);
}

.guide-block p {
    font-size: 0.92rem;
    color: var(--text-gray);
    line-height: 1.65;
    margin-bottom: 0.8rem;
}

.guide-block ul, .guide-block ol {
    padding-left: 1.2rem;
    font-size: 0.9rem;
    color: var(--text-gray);
    line-height: 1.7;
}

/* Static Pages (About, Contact, Privacy, Terms) */
.static-page-card {
    background: var(--bg-white);
    border-radius: var(--border-radius-lg);
    padding: 2.5rem 2rem;
    box-shadow: var(--shadow-card);
    border: 1px solid rgba(233, 30, 99, 0.08);
}

.static-page-card h1 {
    font-size: 2.2rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
}

.static-page-card .lead {
    font-size: 1.05rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
}

.policy-section {
    margin-bottom: 2rem;
}

.policy-section h2 {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 0.6rem;
}

.policy-section p {
    font-size: 0.95rem;
    color: var(--text-gray);
    line-height: 1.7;
}

/* Footer Links */
.footer-links {
    margin-bottom: 12px;
    font-size: 0.9rem;
}

.footer-links a {
    color: #cbd5e1;
    text-decoration: none;
    margin: 0 6px;
    transition: color 0.25s ease;
}

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

/* Dark Mode Styles */
body.dark-mode {
    --bg-body: #0f070b;
    --bg-white: #1b0c14;
    --bg-card: rgba(27, 12, 20, 0.95);
    --text-dark: #f8fafc;
    --text-gray: #cbd5e1;
    --text-muted: #64748b;
    --shadow-card: 0 10px 30px -5px rgba(0, 0, 0, 0.5);
    background-image: 
        radial-gradient(at 0% 0%, rgba(233, 30, 99, 0.15) 0px, transparent 50%),
        radial-gradient(at 100% 100%, rgba(249, 115, 22, 0.1) 0px, transparent 50%);
}

body.dark-mode .nav-links {
    background: rgba(27, 12, 20, 0.9);
    border-color: rgba(233, 30, 99, 0.2);
}

body.dark-mode .nav-links a {
    color: #cbd5e1;
}

body.dark-mode .stat-card,
body.dark-mode .downloader-card,
body.dark-mode .feature-card,
body.dark-mode .faq-item,
body.dark-mode .guide-card,
body.dark-mode .static-page-card {
    background: #1b0c14;
    border-color: rgba(233, 30, 99, 0.15);
}

body.dark-mode .guide-block {
    background: rgba(35, 16, 26, 0.8);
    border-color: rgba(233, 30, 99, 0.12);
}

body.dark-mode .share-bar {
    background: rgba(27, 12, 20, 0.8);
    border-color: rgba(233, 30, 99, 0.2);
}

body.dark-mode .theme-toggle-btn {
    background: #28121d;
    color: #fb923c;
    border-color: rgba(249, 115, 22, 0.3);
}

body.dark-mode .url-input-container input {
    background: #25101b;
    color: #fff;
    border-color: rgba(233, 30, 99, 0.3);
}

/* Scroll Indicator Banner below Downloader Input */
.scroll-indicator-banner {
    margin-top: 1rem;
    padding: 1rem 1.4rem;
    background: linear-gradient(135deg, rgba(233, 30, 99, 0.08), rgba(249, 115, 22, 0.08));
    border: 1px dashed var(--primary-color);
    border-radius: var(--border-radius-md);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    animation: fadeInDown 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.scroll-indicator-banner.hidden {
    display: none !important;
}

.indicator-left {
    display: flex;
    align-items: center;
    gap: 12px;
    text-align: left;
}

.indicator-pulse-dot {
    width: 10px;
    height: 10px;
    background: #22c55e;
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
    animation: greenPulse 1.6s infinite;
    flex-shrink: 0;
}

.indicator-icon {
    font-size: 1.4rem;
    color: var(--primary-color);
    animation: bounce 1.4s infinite;
}

.indicator-title {
    display: block;
    font-size: 0.95rem;
    color: var(--primary-color);
    font-weight: 700;
}

.indicator-text {
    font-size: 0.82rem;
    color: var(--text-gray);
    margin: 0;
}

.btn-scroll-down {
    background: var(--primary-gradient);
    color: #fff;
    border: none;
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 700;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 4px 12px rgba(233, 30, 99, 0.25);
    white-space: nowrap;
    transition: transform 0.2s ease;
}

.btn-scroll-down:hover {
    transform: translateY(-2px);
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(5px); }
}

@keyframes greenPulse {
    0% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(34, 197, 94, 0); }
    100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

/* Download Banner Pulse Highlight */
.download-banner.pulse-highlight {
    animation: glowPulse 2s infinite alternate, popIn 0.3s ease-out;
}

@keyframes glowPulse {
    0% {
        box-shadow: 0 0 15px rgba(16, 185, 129, 0.4);
        border-color: #10b981;
    }
    100% {
        box-shadow: 0 0 35px rgba(16, 185, 129, 0.8), 0 0 60px rgba(16, 185, 129, 0.3);
        border-color: #059669;
    }
}

/* Floating ZIP Ready Toast Popup */
.floating-zip-toast {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 9999;
    background: #ffffff;
    border: 2px solid #10b981;
    border-radius: 16px;
    padding: 14px 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25), 0 0 20px rgba(16, 185, 129, 0.3);
    animation: slideUpToast 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    max-width: 420px;
}

.floating-zip-toast.hidden {
    display: none !important;
}

.toast-icon-wrapper {
    width: 44px;
    height: 44px;
    background: #d1fae5;
    color: #059669;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.toast-content {
    flex-grow: 1;
}

.toast-title {
    display: block;
    font-size: 0.95rem;
    color: #065f46;
    font-weight: 800;
}

.toast-desc {
    font-size: 0.8rem;
    color: #4b5563;
    margin: 2px 0 0 0;
}

.toast-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.toast-close-btn {
    background: transparent;
    border: none;
    color: #9ca3af;
    font-size: 1.1rem;
    cursor: pointer;
    padding: 4px 8px;
    border-radius: 6px;
    transition: color 0.2s ease;
}

.toast-close-btn:hover {
    color: #1f2937;
    background: #f3f4f6;
}

@keyframes slideUpToast {
    from {
        opacity: 0;
        transform: translateY(40px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

body.dark-mode .scroll-indicator-banner {
    background: linear-gradient(135deg, rgba(233, 30, 99, 0.15), rgba(249, 115, 22, 0.12));
    border-color: var(--primary-color);
}

body.dark-mode .floating-zip-toast {
    background: #1e111a;
    border-color: #10b981;
}

body.dark-mode .toast-title {
    color: #34d399;
}

body.dark-mode .toast-desc {
    color: #94a3b8;
}

body.dark-mode .toast-close-btn:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
}


