/* ================================
   CSS Variables & Reset
   ================================ */
:root {
    /* Colors */
    --primary: #6366f1;
    --primary-light: #818cf8;
    --primary-dark: #4f46e5;
    --secondary: #10b981;
    --accent: #f59e0b;
    --dark: #050505;
    --dark-light: #0a0a0a;
    --dark-lighter: #151515;
    --gray: #9ca3af;
    --gray-light: #94a3b8;
    --light: #f1f5f9;
    --white: #ffffff;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #a855f7 100%);
    --gradient-secondary: linear-gradient(135deg, #10b981 0%, #14b8a6 100%);
    --gradient-dark: linear-gradient(180deg, #0f172a 0%, #1e293b 100%);
    --gradient-card: linear-gradient(145deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);

    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-glow: 0 0 40px rgba(99, 102, 241, 0.3);

    /* Typography */
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

    /* Borders */
    --border-radius-sm: 8px;
    --border-radius-md: 12px;
    --border-radius-lg: 16px;
    --border-radius-xl: 24px;

    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-normal: 300ms ease;
    --transition-slow: 500ms ease;
}

/* Reset */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    font-size: 16px;
    line-height: 1.6;
    color: var(--light);
    background: var(--dark);
    overflow-x: hidden;
    position: relative;
}

/* Ambient Background Lights */
body::before {
    content: '';
    position: fixed;
    top: -10%;
    left: -10%;
    width: 50vw;
    height: 50vh;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.15) 0%, transparent 70%);
    filter: blur(80px);
    z-index: -1;
    pointer-events: none;
}

body::after {
    content: '';
    position: fixed;
    bottom: -10%;
    right: -10%;
    width: 60vw;
    height: 60vh;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.15) 0%, transparent 70%);
    filter: blur(80px);
    z-index: -1;
    pointer-events: none;
}

/* ================================
   Scroll Progress Bar
   ================================ */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: var(--gradient-primary);
    z-index: 10000;
    transition: width 0.1s ease-out;
    box-shadow: 0 0 10px rgba(99, 102, 241, 0.8), 0 0 20px rgba(139, 92, 246, 0.6);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

/* ================================
   Glass Effect Hover Styles
   ================================ */

/* Universal glass glow effect for interactive elements */
.btn,
.team-card,
.step-card,
.channel-card,
.contact-card,
.story-card,
.promo-card,
.feature-badge,
.nav-links a,
.hero-badge {
    position: relative;
}

/* Cards glass hover effect */
.team-card:hover,
.step-card:hover,
.channel-card:hover,
.contact-card:hover {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow:
        0 8px 32px rgba(99, 102, 241, 0.15),
        0 0 20px rgba(99, 102, 241, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

/* Buttons glass glow hover */
.btn:hover {
    box-shadow:
        0 8px 32px rgba(99, 102, 241, 0.4),
        0 0 30px rgba(139, 92, 246, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #7c7ff5 0%, #9d70f9 50%, #b566fa 100%);
    box-shadow:
        0 10px 40px rgba(99, 102, 241, 0.5),
        0 0 50px rgba(139, 92, 246, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    background: rgba(99, 102, 241, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow:
        0 8px 32px rgba(99, 102, 241, 0.2),
        0 0 20px rgba(99, 102, 241, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

/* Feature badges glass hover */
.feature-badge:hover {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-color: rgba(99, 102, 241, 0.4);
    box-shadow:
        0 4px 20px rgba(99, 102, 241, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
    transition: var(--transition-normal);
    cursor: default;
}

/* Nav links glass hover */
.nav-links a:hover {
    text-shadow: 0 0 20px rgba(99, 102, 241, 0.6);
}

/* Hero badge glass hover */
.hero-badge:hover {
    background: rgba(99, 102, 241, 0.25);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow:
        0 4px 20px rgba(99, 102, 241, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
    transition: var(--transition-normal);
    cursor: default;
}

/* Promo card glass effect */
.promo-card:hover {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.25) 0%, rgba(168, 85, 247, 0.25) 100%);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow:
        0 10px 40px rgba(99, 102, 241, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

/* Section tag glass hover */
.section-tag:hover {
    background: rgba(99, 102, 241, 0.25);
    box-shadow: 0 0 20px rgba(99, 102, 241, 0.2);
    transform: translateY(-2px);
    transition: var(--transition-normal);
    cursor: default;
}

/* Team badge glass hover */
.team-badge:hover {
    background: rgba(99, 102, 241, 0.35);
    box-shadow: 0 0 15px rgba(99, 102, 241, 0.25);
    transform: scale(1.05);
    transition: var(--transition-fast);
}

/* Logo glass hover */
.logo:hover {
    text-shadow:
        0 0 20px rgba(99, 102, 241, 0.4),
        0 0 40px rgba(139, 92, 246, 0.2);
}

.logo:hover .logo-icon {
    text-shadow: 0 0 20px rgba(99, 102, 241, 0.8);
}

/* ================================
   Container & Layout
   ================================ */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ================================
   Announcement Bar
   ================================ */
.announcement-bar {
    background: var(--gradient-primary);
    padding: 12px 0;
    text-align: center;
}

.announcement-bar p {
    font-size: 14px;
    color: var(--white);
}

.announcement-bar a {
    color: var(--white);
    text-decoration: underline;
    font-weight: 600;
    margin-left: 8px;
}

.announcement-bar a:hover {
    opacity: 0.8;
}

/* ================================
   Navigation - Glass Effect
   ================================ */
.navbar {
    position: fixed;
    top: 44px;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(15, 23, 42, 0.4);
    backdrop-filter: blur(25px) saturate(180%);
    -webkit-backdrop-filter: blur(25px) saturate(180%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow:
        0 4px 30px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    padding: 16px 0;
    transition: var(--transition-normal);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 24px;
    font-weight: 800;
}

.logo-icon {
    font-size: 28px;
}

.logo-text .highlight {
    color: var(--primary);
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    font-size: 15px;
    font-weight: 500;
    color: var(--gray-light);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition-fast);
}

.nav-links a:hover {
    color: var(--white);
}

.nav-links a:hover::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-btn span {
    width: 25px;
    height: 2px;
    background: var(--white);
    transition: var(--transition-fast);
}

/* ================================
   Buttons
   ================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: var(--border-radius-md);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: var(--transition-normal);
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: var(--shadow-lg), var(--shadow-glow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl), 0 0 60px rgba(99, 102, 241, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
    border-color: var(--primary);
    background: rgba(99, 102, 241, 0.1);
}

/* ================================
   Hero Section
   ================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 140px 0 80px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 20%, rgba(99, 102, 241, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 80%, rgba(168, 85, 247, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(16, 185, 129, 0.05) 0%, transparent 50%);
    animation: bgPulse 8s ease-in-out infinite;
}

@keyframes bgPulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.7;
    }
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(99, 102, 241, 0.15);
    border: 1px solid rgba(99, 102, 241, 0.3);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    color: var(--primary-light);
    margin-bottom: 24px;
    animation: fadeInUp 0.6s ease-out;
}

.badge-icon {
    animation: sparkle 2s ease-in-out infinite;
}

@keyframes sparkle {

    0%,
    100% {
        transform: scale(1) rotate(0deg);
    }

    50% {
        transform: scale(1.2) rotate(15deg);
    }
}

.hero h1 {
    font-size: clamp(40px, 8vw, 72px);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    animation: fadeInUp 0.6s ease-out 0.1s both;
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.highlight-orange {
    background: linear-gradient(135deg, #ffffff 0%, #ffedd5 30%, #f97316 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    display: inline-block;
    /* Helps with gradient clipping on some browsers */
}

.hero-subtitle {
    font-size: 22px;
    font-weight: 500;
    color: var(--gray-light);
    margin-bottom: 16px;
    animation: fadeInUp 0.6s ease-out 0.2s both;
}

.hero-description {
    font-size: 17px;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto 32px;
    animation: fadeInUp 0.6s ease-out 0.3s both;
}

.hero-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 48px;
    animation: fadeInUp 0.6s ease-out 0.4s both;
}

.hero-features {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.6s ease-out 0.5s both;
}

.feature-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 10px 18px;
    border-radius: 50px;
    font-size: 14px;
    color: var(--gray-light);
}

.feature-icon {
    font-size: 16px;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--gray);
    font-size: 13px;
    animation: bounce 2s infinite;
}

.scroll-arrow {
    width: 24px;
    height: 24px;
    border-right: 2px solid var(--gray);
    border-bottom: 2px solid var(--gray);
    transform: rotate(45deg);
}

@keyframes bounce {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(10px);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ================================
   Section Styles
   ================================ */
section {
    padding: 60px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    display: inline-block;
    background: rgba(99, 102, 241, 0.15);
    color: var(--primary-light);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.section-header h2 {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 700;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
}

/* ================================
   Story Section
   ================================ */
.story-section {
    background: transparent;
    backdrop-filter: none;
}

.story-content {
    max-width: 700px;
    margin: 0 auto;
}

.story-card {
    display: flex;
    gap: 24px;
    margin-bottom: 32px;
}

.story-timeline {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.timeline-dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--dark-lighter);
    border: 3px solid var(--primary);
    flex-shrink: 0;
}

.timeline-dot.active {
    background: var(--primary);
    box-shadow: 0 0 20px rgba(99, 102, 241, 0.5);
}

.timeline-line {
    width: 2px;
    flex: 1;
    background: linear-gradient(180deg, var(--primary) 0%, var(--dark-lighter) 100%);
    margin-top: 8px;
}

.story-text {
    padding-bottom: 16px;
}

.story-date {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-light);
    margin-bottom: 8px;
}

.story-text p:last-child {
    color: var(--gray-light);
}

.story-link {
    display: inline-block;
    color: var(--primary);
    font-weight: 600;
    margin-top: 16px;
    margin-left: 40px;
}

.story-link:hover {
    color: var(--primary-light);
}

/* ================================
   Teams Section
   ================================ */
.teams-section {
    background: transparent;
}

.how-it-works {
    margin-bottom: 60px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 40px;
    padding: 80px 40px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

/* Background glow for How It Works */
.how-it-works::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 50% 50%, rgba(99, 102, 241, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.how-it-works h3 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 60px;
    color: var(--white);
    font-weight: 800;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-bottom: 20px;
}

.step-card {
    position: relative;
    background: transparent;
    border: none;
    padding: 20px;
    text-align: center;
    transition: var(--transition-normal);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.step-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
}

.step-number {
    position: relative;
    top: 0;
    left: 0;
    transform: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 24px;
    background: #222;
    /* Default fallback */
}

/* Hide original icon */
.step-icon {
    display: none;
}

.step-card h4 {
    font-size: 20px;
    margin-bottom: 16px;
    font-weight: 700;
}

.step-card p {
    color: var(--gray);
    font-size: 15px;
    opacity: 1;
    transform: none;
    max-height: none;
    overflow: visible;
}

.step-card:hover p {
    opacity: 1;
    transform: none;
    max-height: none;
}

/* Specific Step Colors */
.step-card:nth-child(1) .step-number {
    background: rgba(255, 100, 0, 0.15);
    color: #ff8833;
    box-shadow: 0 0 20px rgba(255, 100, 0, 0.1);
}

.step-card:nth-child(2) .step-number {
    background: rgba(50, 100, 255, 0.15);
    color: #4488ff;
    box-shadow: 0 0 20px rgba(50, 100, 255, 0.1);
}

.step-card:nth-child(3) .step-number {
    background: rgba(180, 50, 255, 0.15);
    color: #aa55ff;
    box-shadow: 0 0 20px rgba(180, 50, 255, 0.1);
}

.teams-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.team-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius-lg);
    padding: 32px;
    transition: var(--transition-normal);
    backdrop-filter: blur(10px);
}

.team-card:hover {
    transform: translateY(-5px);
    border-color: rgba(99, 102, 241, 0.3);
}

.team-card.featured {
    background: linear-gradient(145deg, rgba(99, 102, 241, 0.15) 0%, rgba(139, 92, 246, 0.1) 100%);
    border-color: rgba(99, 102, 241, 0.4);
    transform: scale(1.02);
}

.team-card.featured:hover {
    transform: scale(1.02) translateY(-5px);
}

.team-header {
    margin-bottom: 24px;
}

.team-badge {
    display: inline-block;
    background: rgba(99, 102, 241, 0.2);
    color: var(--primary-light);
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 12px;
}

.team-header h3 {
    font-size: 22px;
}

.team-features {
    margin-bottom: 28px;
}

.team-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    color: var(--gray-light);
    font-size: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.team-features li:last-child {
    border-bottom: none;
}

.check {
    color: var(--secondary);
    font-weight: 700;
}

.btn-team {
    width: 100%;
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-team:hover {
    background: var(--primary);
    color: var(--white);
}

.btn-featured {
    background: var(--gradient-primary);
    border: none;
    color: var(--white);
}

.btn-featured:hover {
    box-shadow: var(--shadow-glow);
}

/* ================================
   Promo Section
   ================================ */
.promo-section {
    padding: 60px 0;
}

.promo-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius-xl);
    padding: 60px;
    display: flex;
    backdrop-filter: blur(10px);
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.promo-content {
    max-width: 500px;
}

.promo-tag {
    display: inline-block;
    background: var(--accent);
    color: var(--dark);
    padding: 4px 14px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 16px;
}

.promo-content h2 {
    font-size: 32px;
    margin-bottom: 16px;
}

.promo-content p {
    color: var(--gray-light);
    margin-bottom: 24px;
}

.promo-visual {
    flex-shrink: 0;
}

.promo-icon {
    font-size: 120px;
    opacity: 0.8;
}

/* ================================
   Channels Section
   ================================ */
.channels-section {
    background: transparent;
}

.channels-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

/* ================================
   Product & Feature Cards (New)
   ================================ */
.product-item-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 40px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.product-item-card:hover {
    transform: translateY(-5px);
    border-color: rgba(99, 102, 241, 0.4);
    box-shadow: 0 10px 40px -10px rgba(99, 102, 241, 0.3), inset 0 0 20px rgba(255, 255, 255, 0.05);
    background: rgba(255, 255, 255, 0.06);
}

/* Info Cards Grid */
.info-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.info-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 16px;
    text-align: center;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.02);
    transition: var(--transition-normal);
}

.info-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.1);
}

.info-label {
    display: block;
    font-size: 13px;
    color: var(--gray);
    margin-bottom: 6px;
}

.info-value {
    display: block;
    font-size: 18px;
    font-weight: 700;
}

/* Feature List */
.feature-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 16px;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--light);
}

.feature-icon {
    color: var(--primary);
    font-weight: bold;
}

/* How To Card */
.how-to-card {
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 24px;
    padding: 40px;
    text-align: center;
    backdrop-filter: blur(10px);
    margin-bottom: 40px;
}

.step-item {
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
    text-align: left;
}

.step-number {
    background: var(--primary);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
    color: white;
}

/* Pricing Card */
.pricing-card {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.2) 0%, rgba(168, 85, 247, 0.2) 100%);
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 24px;
    padding: 40px;
    text-align: center;
    margin-bottom: 40px;
    backdrop-filter: blur(10px);
    transition: var(--transition-normal);
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 30px rgba(99, 102, 241, 0.2);
    border-color: rgba(99, 102, 241, 0.5);
}

.best-for-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 20px;
    backdrop-filter: blur(5px);
}

.best-for-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.tag-pill {
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 14px;
    transition: var(--transition-fast);
}

.tag-pill:hover {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
}

.channel-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius-lg);
    padding: 40px 32px;
    text-align: center;
    transition: var(--transition-normal);
    backdrop-filter: blur(10px);
}

.channel-card:hover {
    transform: translateY(-5px);
}

.channel-card.whatsapp:hover {
    border-color: #25D366;
}

.channel-card.telegram:hover {
    border-color: #0088cc;
}

.channel-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.whatsapp .channel-icon {
    background: rgba(37, 211, 102, 0.1);
    color: #25D366;
}

.telegram .channel-icon {
    background: rgba(0, 136, 204, 0.1);
    color: #0088cc;
}

.channel-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
}

.channel-card p {
    color: var(--gray);
    margin-bottom: 24px;
    font-size: 15px;
}

.btn-channel {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
}

.whatsapp .btn-channel:hover {
    border-color: #25D366;
    background: rgba(37, 211, 102, 0.1);
}

.telegram .btn-channel:hover {
    border-color: #0088cc;
    background: rgba(0, 136, 204, 0.1);
}

/* ================================
   Contact Section
   ================================ */
.contact-section {
    background: transparent;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    max-width: 700px;
    margin: 0 auto;
}

.contact-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius-lg);
    padding: 40px 32px;
    text-align: center;
    transition: var(--transition-normal);
    backdrop-filter: blur(10px);
}

.contact-card:hover {
    transform: translateY(-5px);
    border-color: rgba(99, 102, 241, 0.3);
}

.contact-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.contact-card h3 {
    font-size: 20px;
    margin-bottom: 8px;
}

.contact-card p {
    color: var(--gray);
    margin-bottom: 20px;
    font-size: 15px;
}

.btn-contact {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
    width: 100%;
}

.btn-contact:hover {
    background: var(--primary);
    color: var(--white);
}

/* ================================
   Footer
   ================================ */
.footer {
    background: transparent;
    backdrop-filter: none;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 60px 0 30px;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand .logo {
    margin-bottom: 12px;
}

.footer-brand p {
    color: var(--gray);
    font-size: 14px;
}

.footer-links {
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
}

.footer-column h4 {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    color: var(--gray-light);
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column a {
    color: var(--gray);
    font-size: 15px;
}

.footer-column a:hover {
    color: var(--primary);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom p {
    color: var(--gray);
    font-size: 13px;
}

/* ================================
   Responsive Design
   ================================ */
@media (max-width: 768px) {
    .announcement-bar {
        display: none;
    }

    .navbar {
        top: 0;
    }

    .nav-links {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--dark-light);
        flex-direction: column;
        padding: 20px;
        gap: 16px;
        transform: translateY(-100%);
        opacity: 0;
        pointer-events: none;
        transition: var(--transition-normal);
    }

    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .hero {
        padding: 120px 0 60px;
    }

    .hero-features {
        gap: 10px;
    }

    .feature-badge {
        padding: 8px 14px;
        font-size: 12px;
    }

    .promo-card {
        padding: 40px 24px;
        text-align: center;
        justify-content: center;
    }

    .footer-top {
        flex-direction: column;
    }

    .footer-links {
        gap: 40px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .btn {
        padding: 12px 24px;
        font-size: 14px;
    }

    section {
        padding: 60px 0;
    }

    .teams-grid,
    .steps-grid {
        grid-template-columns: 1fr;
    }

    .team-card.featured {
        transform: none;
    }

    .team-card.featured:hover {
        transform: translateY(-5px);
    }
}

/* Scroll Progress Bar */
.scroll-progress-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: transparent;
    z-index: 9999;
}

#scrollProgress {
    height: 100%;
    background: linear-gradient(90deg, #6366f1, #ec4899, #f59e0b);
    width: 0%;
    transition: width 0.1s ease-out;
    box-shadow: 0 0 10px rgba(99, 102, 241, 0.5);
}

/* ================================
   Video Downloader Styles
   ================================ */

/* Download Input Card */
.dl-input-card {
    max-width: 700px;
    margin: 0 auto 60px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 32px;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: var(--transition-normal);
}

.dl-input-card:hover {
    border-color: rgba(99, 102, 241, 0.3);
    box-shadow: 0 8px 40px rgba(99, 102, 241, 0.1);
}

.dl-input-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    padding: 8px;
    transition: var(--transition-normal);
}

.dl-input-wrapper:focus-within {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.15);
}

.dl-platform-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
    transition: var(--transition-normal);
}

.dl-input {
    flex: 1;
    background: transparent;
    border: none;
    color: var(--white);
    font-size: 16px;
    font-family: var(--font-family);
    outline: none;
    padding: 10px;
}

.dl-input::placeholder {
    color: var(--gray);
}

.dl-btn {
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
    padding: 12px 28px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: var(--transition-normal);
    flex-shrink: 0;
    font-family: var(--font-family);
}

.dl-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.4);
}

.dl-btn:disabled {
    cursor: not-allowed;
}

.dl-hint {
    margin-top: 12px;
    font-size: 13px;
    color: var(--gray);
    text-align: center;
}

/* Paste Button */
.dl-paste-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 18px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    color: var(--gray-light);
    font-size: 14px;
    font-weight: 500;
    font-family: var(--font-family);
    cursor: pointer;
    transition: var(--transition-normal);
    flex-shrink: 0;
    white-space: nowrap;
}

.dl-paste-btn:hover {
    background: rgba(99, 102, 241, 0.15);
    border-color: rgba(99, 102, 241, 0.3);
    color: var(--white);
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.2);
}

.dl-paste-btn:active {
    transform: scale(0.97);
}

.dl-paste-btn svg {
    flex-shrink: 0;
}

/* Notifications */
.dl-notification {
    position: fixed;
    bottom: -100px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--dark-lighter);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 14px 24px;
    border-radius: 12px;
    color: var(--white);
    font-size: 14px;
    font-weight: 500;
    font-family: var(--font-family);
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    z-index: 1000;
    transition: bottom 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.dl-notification.show {
    bottom: 30px;
}

.dl-notification-error {
    border-color: rgba(239, 68, 68, 0.4);
    background: rgba(239, 68, 68, 0.1);
}

.dl-notification-success {
    border-color: rgba(16, 185, 129, 0.4);
    background: rgba(16, 185, 129, 0.1);
}

/* Loading Spinner */
.dl-spinner {
    width: 48px;
    height: 48px;
    border: 4px solid rgba(255, 255, 255, 0.1);
    border-top: 4px solid var(--primary);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin: 0 auto;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Video Preview Card */
.dl-preview {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 16px;
    margin-bottom: 16px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.dl-preview-thumb {
    position: relative;
    flex-shrink: 0;
    width: 200px;
    border-radius: 10px;
    overflow: hidden;
}

.dl-preview-thumb img {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 16/9;
    object-fit: cover;
    border-radius: 10px;
}

.dl-preview-duration {
    position: absolute;
    bottom: 8px;
    right: 8px;
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 4px;
    font-family: var(--font-family);
}

.dl-preview-info {
    flex: 1;
    min-width: 0;
}

.dl-preview-info h4 {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.dl-preview-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.dl-preview-platform {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.dl-preview-url {
    font-size: 12px;
    color: var(--gray);
    word-break: break-all;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

@media (max-width: 600px) {
    .dl-preview {
        flex-direction: column;
        gap: 12px;
    }

    .dl-preview-thumb {
        width: 100%;
    }
}

/* Platform Grid */
.dl-platforms-section {
    margin-top: 20px;
}

.dl-platforms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.dl-platform-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition-normal);
    text-decoration: none;
    color: inherit;
}

.dl-platform-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.dl-platform-card-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-normal);
}

.dl-platform-card:hover .dl-platform-card-icon {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.dl-platform-card h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--white);
}

.dl-platform-card p {
    font-size: 13px;
    color: var(--gray);
    margin: 0;
}

/* Results Area */
.dl-results {
    max-width: 700px;
    margin: 0 auto 40px;
}

.dl-result-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 28px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    animation: fadeInUp 0.4s ease;
}

.dl-result-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.dl-quality-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.dl-quality-btn {
    display: flex;
    align-items: center;
    gap: 16px;
    width: 100%;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    color: var(--white);
    cursor: pointer;
    transition: var(--transition-normal);
    font-family: var(--font-family);
    text-align: left;
}

.dl-quality-btn:hover {
    background: rgba(99, 102, 241, 0.15);
    border-color: rgba(99, 102, 241, 0.3);
    transform: translateX(4px);
}

.dl-quality-icon {
    font-size: 24px;
    width: 40px;
    text-align: center;
}

.dl-quality-btn strong {
    display: block;
    font-size: 15px;
    margin-bottom: 2px;
}

.dl-quality-btn span {
    font-size: 12px;
    color: var(--gray);
}

/* Notification Toast */
.dl-notification {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: rgba(15, 23, 42, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    padding: 14px 24px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--white);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 10000;
    transition: transform 0.3s ease;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.dl-notification.show {
    transform: translateX(-50%) translateY(0);
}

.dl-notification-error {
    border-color: rgba(239, 68, 68, 0.3);
}

.dl-notification-success {
    border-color: rgba(16, 185, 129, 0.3);
}

/* Downloader section on index page */
.dl-index-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 16px;
    max-width: 900px;
    margin: 0 auto;
}

.dl-index-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 24px 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition-normal);
    text-decoration: none;
    color: inherit;
}

.dl-index-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.dl-index-card-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dl-index-card h4 {
    font-size: 14px;
    font-weight: 600;
    color: var(--white);
}

.dl-index-card p {
    font-size: 12px;
    color: var(--gray);
    margin: 0;
}

/* Platform page hero customization */
.dl-platform-hero {
    min-height: 60vh;
    padding: 140px 0 40px;
}

.dl-platform-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
}

/* Supported Formats Section */
.dl-formats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    max-width: 800px;
    margin: 0 auto;
}

.dl-format-card {
    padding: 24px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    text-align: center;
}

.dl-format-card h4 {
    font-size: 15px;
    font-weight: 600;
    color: var(--white);
    margin-top: 10px;
    margin-bottom: 6px;
}

.dl-format-card p {
    font-size: 13px;
    color: var(--gray);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .dl-input-wrapper {
        flex-direction: column;
        padding: 12px;
    }

    .dl-input {
        width: 100%;
        text-align: center;
    }

    .dl-btn {
        width: 100%;
    }

    .dl-platform-icon {
        display: none;
    }

    .dl-platforms-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .dl-platform-card {
        padding: 20px 12px;
    }

    .dl-platform-card-icon {
        width: 48px;
        height: 48px;
        border-radius: 12px;
    }

    .dl-platform-card-icon svg {
        width: 24px;
        height: 24px;
    }

    .dl-index-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }

    .dl-index-card {
        padding: 16px 8px;
    }

    .dl-result-header {
        flex-direction: column;
        text-align: center;
    }

    .dl-quality-btn {
        padding: 14px 16px;
    }

    .dl-formats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ================================
   Blog Section Styles
   ================================ */

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.blog-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition-normal);
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-10px);
    border-color: rgba(99, 102, 241, 0.3);
    box-shadow: 0 10px 40px rgba(99, 102, 241, 0.1);
}

.blog-thumb {
    width: 100%;
    aspect-ratio: 16/9;
}

.blog-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-content {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-category {
    font-size: 12px;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.blog-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.4;
    color: var(--white);
}

.blog-title a {
    color: inherit;
    text-decoration: none;
}

.blog-excerpt {
    font-size: 14px;
    color: var(--gray-light);
    line-height: 1.6;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-footer {
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: var(--gray);
}

.blog-date {
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Single Blog Page */
.blog-post-header {
    padding: 120px 0 60px;
    text-align: center;
    background: radial-gradient(circle at top center, rgba(99, 102, 241, 0.1) 0%, transparent 70%);
}

.post-meta {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
    font-size: 14px;
    color: var(--gray);
}

.post-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px 80px;
}

.post-featured-img {
    width: 100%;
    border-radius: 24px;
    margin-bottom: 40px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.post-body {
    font-size: 18px;
    line-height: 1.8;
    color: var(--gray-light);
}

.post-body h2 {
    color: var(--white);
    margin: 40px 0 20px;
    font-size: 28px;
}

.post-body p {
    margin-bottom: 24px;
}

.post-body ul {
    margin-bottom: 24px;
    padding-left: 20px;
}

.post-body li {
    margin-bottom: 10px;
}

.post-cta {
    margin-top: 60px;
    padding: 40px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(16, 185, 129, 0.1));
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
}

.post-cta h3 {
    margin-bottom: 15px;
}

@media (max-width: 768px) {
    .blog-post-header {
        padding: 100px 0 40px;
    }

    .post-body {
        font-size: 16px;
    }

    /* Responsive Downloader Input */
    .dl-input-wrapper {
        flex-wrap: wrap;
        padding: 12px;
        gap: 8px;
    }

    .dl-platform-icon {
        display: none;
        /* Save space on mobile */
    }

    .dl-input {
        flex: 1 1 100%;
        margin-bottom: 8px;
        text-align: center;
        padding: 8px;
    }

    .dl-paste-btn,
    .dl-btn {
        flex: 1;
        justify-content: center;
        padding: 12px 10px;
        font-size: 14px;
    }
}