/* ===== RESET & BASE ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-primary: #0a0e1a;
    --bg-secondary: #0f1525;
    --bg-card: #141b2d;
    --bg-card-hover: #1a2340;
    --border-color: rgba(99, 115, 165, 0.2);
    --border-glow: rgba(99, 115, 165, 0.4);
    --text-primary: #e8ecf4;
    --text-secondary: #8892a8;
    --text-muted: #5a6480;
    --accent-red: #e53e3e;
    --accent-red-glow: rgba(229, 62, 62, 0.35);
    --accent-blue: #3b82f6;
    --accent-blue-glow: rgba(59, 130, 246, 0.3);
    --accent-green: #22c55e;
    --accent-green-glow: rgba(34, 197, 94, 0.3);
    --accent-orange: #f59e0b;
    --accent-yellow: #facc15;
    --gradient-fire: linear-gradient(135deg, #e53e3e, #f59e0b);
    --gradient-cool: linear-gradient(135deg, #3b82f6, #8b5cf6);
    --gradient-neon: linear-gradient(135deg, #22c55e, #3b82f6);
    --shadow-lg: 0 25px 50px rgba(0, 0, 0, 0.5);
    --shadow-glow-red: 0 0 40px rgba(229, 62, 62, 0.25);
    --shadow-glow-blue: 0 0 40px rgba(59, 130, 246, 0.2);
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 22px;
    --radius-xl: 32px;
    --font-main: 'Outfit', sans-serif;
    --font-display: 'Fredoka', sans-serif;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    overflow-x: hidden;
}

body {
    font-family: var(--font-main);
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    width: 100%;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

/* ===== PARTICLES BACKGROUND ===== */
.particles {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.particle {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    animation: particleFloat linear infinite;
}

@keyframes particleFloat {
    0% {
        transform: translateY(100vh) scale(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-10vh) scale(1);
        opacity: 0;
    }
}

/* ===== UTILITIES ===== */
.text-red {
    color: var(--accent-red);
}

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

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0 24px;
    transition: all 0.4s ease;
    background: transparent;
}

.navbar.scrolled {
    background: rgba(10, 14, 26, 0.85);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid var(--border-color);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.nav-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-logo-img {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    box-shadow: 0 2px 12px rgba(0,0,0,0.3);
}

.nav-logo-text {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.nav-download-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--accent-red);
    color: white;
    padding: 10px 22px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px var(--accent-red-glow);
}

.nav-download-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px var(--accent-red-glow);
    background: #c53030;
}

.btn-icon {
    font-size: 1.1rem;
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 120px 24px 60px;
    overflow: hidden;
}

.hero-glow {
    position: absolute;
    top: -30%;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(229, 62, 62, 0.12) 0%, rgba(245, 158, 11, 0.06) 40%, transparent 70%);
    pointer-events: none;
    animation: glowPulse 6s ease-in-out infinite alternate;
}

@keyframes glowPulse {
    0% { transform: translateX(-50%) scale(1); opacity: 0.7; }
    100% { transform: translateX(-50%) scale(1.15); opacity: 1; }
}

.hero-content {
    text-align: center;
    z-index: 2;
    max-width: 680px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(229, 62, 62, 0.1);
    border: 1px solid rgba(229, 62, 62, 0.3);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--accent-red);
    letter-spacing: 0.1em;
    margin-bottom: 32px;
    animation: fadeInUp 0.8s ease forwards;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--accent-red);
    border-radius: 50%;
    animation: blink 1.5s ease infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.hero-logo {
    width: 120px;
    height: 120px;
    margin: 0 auto 28px;
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5), 0 0 60px var(--accent-red-glow);
    animation: logoFloat 4s ease-in-out infinite, fadeInUp 1s ease forwards;
    animation-delay: 0s, 0.2s;
}

@keyframes logoFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 8vw, 5.5rem);
    font-weight: 800;
    line-height: 1;
    margin-bottom: 12px;
    animation: fadeInUp 1s ease forwards;
    animation-delay: 0.3s;
    opacity: 0;
}

.title-snack {
    color: var(--text-primary);
    display: block;
    text-shadow: 0 2px 20px rgba(255, 255, 255, 0.1);
}

.title-or {
    color: var(--accent-red);
    font-size: 0.5em;
    letter-spacing: 0.3em;
    display: block;
    margin: 4px 0;
}

.title-bomb {
    background: var(--gradient-fire);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    filter: drop-shadow(0 2px 10px rgba(229, 62, 62, 0.3));
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    font-weight: 500;
    margin-bottom: 16px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    animation: fadeInUp 1s ease forwards;
    animation-delay: 0.5s;
    opacity: 0;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 520px;
    margin: 0 auto 36px;
    line-height: 1.7;
    animation: fadeInUp 1s ease forwards;
    animation-delay: 0.6s;
    opacity: 0;
}

.hero-description strong {
    color: var(--text-primary);
}

/* Hero Stats */
.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease forwards;
    animation-delay: 0.7s;
    opacity: 0;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}

.stat-icon {
    font-size: 1.5rem;
}

.stat-value {
    font-weight: 700;
    font-size: 1rem;
    color: var(--text-primary);
}

.stat-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--border-color);
}

/* Hero CTA */
.hero-cta {
    position: relative;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    background: var(--accent-red);
    color: white;
    padding: 18px 48px;
    border-radius: var(--radius-lg);
    font-size: 1.15rem;
    font-weight: 700;
    transition: all 0.4s ease;
    box-shadow: 0 8px 32px var(--accent-red-glow), inset 0 1px 0 rgba(255,255,255,0.15);
    overflow: hidden;
    animation: fadeInUp 1s ease forwards;
    animation-delay: 0.8s;
    opacity: 0;
}

.hero-cta:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 16px 50px var(--accent-red-glow);
}

.cta-glow {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
    transform: translateX(-100%);
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { transform: translateX(-100%); }
    50% { transform: translateX(100%); }
}

.cta-content {
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
    z-index: 1;
}

.android-icon {
    opacity: 0.9;
}

.cta-size {
    font-size: 0.75rem;
    font-weight: 400;
    opacity: 0.7;
    position: relative;
    z-index: 1;
}

/* Hero Phone Mockup */
.hero-phone-mockup {
    display: block;
    z-index: 2;
    margin-top: 40px;
}

.phone-frame {
    position: relative;
    width: 220px;
    height: 440px;
    border-radius: 28px;
    overflow: hidden;
    background: #000;
    border: 3px solid rgba(99, 115, 165, 0.3);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 40px var(--accent-red-glow), inset 0 0 0 1px rgba(255,255,255,0.05);
    animation: phoneFloat 5s ease-in-out infinite;
    margin: 0 auto;
}

@keyframes phoneFloat {
    0%, 100% { transform: translateY(0) rotate(-2deg); }
    50% { transform: translateY(-16px) rotate(0deg); }
}

.phone-notch {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 10px;
    background: #000;
    border-radius: 0 0 10px 10px;
    z-index: 2;
}

.phone-screen {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ===== SECTION COMMONS ===== */
.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--accent-orange);
    margin-bottom: 16px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    margin-bottom: 12px;
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--text-secondary);
    max-width: 500px;
    margin: 0 auto;
}

/* ===== FEATURES SECTION ===== */
.features {
    padding: 100px 0;
    position: relative;
    z-index: 2;
    background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr));
    gap: 24px;
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-fire);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-6px);
    border-color: var(--border-glow);
    box-shadow: var(--shadow-lg), 0 0 40px rgba(229, 62, 62, 0.06);
    background: var(--bg-card-hover);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon-wrap {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(229, 62, 62, 0.08);
    border: 1px solid rgba(229, 62, 62, 0.15);
    border-radius: var(--radius-md);
    margin-bottom: 20px;
    transition: all 0.4s ease;
}

.feature-card:hover .feature-icon-wrap {
    background: rgba(229, 62, 62, 0.15);
    transform: scale(1.05);
}

.feature-icon {
    font-size: 1.8rem;
}

.feature-card h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.feature-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.65;
}

/* ===== SCREENSHOTS SECTION ===== */
.screenshots {
    padding: 100px 0;
    position: relative;
    z-index: 2;
    background: var(--bg-secondary);
    overflow: hidden;
}

.screenshots::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.06) 0%, transparent 60%);
    pointer-events: none;
}

.screenshots-carousel-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
    max-width: 100%;
    overflow: hidden;
}

.screenshots-carousel {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 20px 0 30px;
    scroll-behavior: smooth;
}

.screenshots-carousel::-webkit-scrollbar {
    display: none;
}

.screenshot-slide {
    flex: 0 0 auto;
    scroll-snap-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.screenshot-phone {
    position: relative;
    width: 220px;
    height: 440px;
    border-radius: 28px;
    overflow: hidden;
    background: #000;
    border: 3px solid rgba(99, 115, 165, 0.3);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), inset 0 0 0 1px rgba(255,255,255,0.05);
    transition: all 0.4s ease;
}

.screenshot-phone:hover {
    transform: scale(1.03) translateY(-6px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6), 0 0 40px rgba(229, 62, 62, 0.1);
    border-color: rgba(229, 62, 62, 0.3);
}

.sp-notch {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 10px;
    background: #000;
    border-radius: 0 0 10px 10px;
    z-index: 2;
}

.screenshot-phone img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.screenshot-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.carousel-btn {
    flex: 0 0 auto;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    background: var(--bg-card);
    color: var(--text-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 3;
}

.carousel-btn:hover {
    background: var(--bg-card-hover);
    border-color: var(--accent-red);
    color: var(--accent-red);
    box-shadow: 0 0 20px var(--accent-red-glow);
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 12px;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--text-muted);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.carousel-dot.active {
    background: var(--accent-red);
    box-shadow: 0 0 12px var(--accent-red-glow);
    transform: scale(1.2);
}

/* ===== HOW TO PLAY ===== */
.how-to-play {
    padding: 100px 0;
    position: relative;
    z-index: 2;
    background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
}

.steps-timeline {
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
}

.steps-timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 35px;
    bottom: 35px;
    width: 2px;
    background: linear-gradient(180deg, var(--accent-red), var(--accent-orange), var(--accent-green));
    border-radius: 2px;
}

.step-card {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    padding: 24px 0;
    position: relative;
}

.step-number {
    flex: 0 0 auto;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-card);
    border: 2px solid var(--accent-red);
    border-radius: 50%;
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--accent-red);
    z-index: 2;
    box-shadow: 0 0 20px var(--accent-red-glow);
    transition: all 0.4s ease;
}

.step-card:hover .step-number {
    background: var(--accent-red);
    color: white;
    transform: scale(1.1);
}

.step-content h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 6px;
    margin-top: 4px;
}

.step-content p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ===== DOWNLOAD SECTION ===== */
.download-section {
    padding: 120px 0;
    position: relative;
    z-index: 2;
    background: var(--bg-primary);
    overflow: hidden;
}

.download-glow {
    position: absolute;
    bottom: -200px;
    left: 50%;
    transform: translateX(-50%);
    width: 900px;
    height: 600px;
    background: radial-gradient(circle, rgba(229, 62, 62, 0.1) 0%, rgba(245, 158, 11, 0.05) 40%, transparent 70%);
    pointer-events: none;
}

.download-content {
    display: flex;
    align-items: center;
    gap: 80px;
}

.download-info {
    flex: 1;
}

.download-title {
    text-align: left;
    margin-bottom: 16px;
}

.download-desc {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 32px;
    line-height: 1.7;
}

.download-meta {
    display: flex;
    gap: 24px;
    margin-bottom: 36px;
    flex-wrap: wrap;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 14px 20px;
    transition: all 0.3s ease;
}

.meta-item:hover {
    border-color: var(--border-glow);
    transform: translateY(-2px);
}

.meta-icon {
    font-size: 1.6rem;
}

.meta-value {
    display: block;
    font-weight: 700;
    font-size: 1rem;
    color: var(--text-primary);
}

.meta-label {
    display: block;
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Download Button */
.download-btn {
    position: relative;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    background: var(--accent-green);
    color: white;
    padding: 20px 52px;
    border-radius: var(--radius-lg);
    font-size: 1.3rem;
    font-weight: 800;
    transition: all 0.4s ease;
    box-shadow: 0 8px 32px var(--accent-green-glow), inset 0 1px 0 rgba(255,255,255,0.2);
    overflow: hidden;
    margin-bottom: 20px;
}

.download-btn:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 16px 50px var(--accent-green-glow);
}

.download-btn:active {
    transform: translateY(0) scale(0.98);
}

.download-btn-glow {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transform: translateX(-100%);
    animation: shimmer 2.5s ease-in-out infinite;
}

.download-btn-content {
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
    z-index: 1;
}

.download-btn-sub {
    font-size: 0.75rem;
    font-weight: 400;
    opacity: 0.75;
    position: relative;
    z-index: 1;
}

.download-icon {
    animation: bounceDown 2s ease-in-out infinite;
}

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

.download-note {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.6;
    max-width: 420px;
}

/* Download Visual */
.download-visual {
    flex: 0 0 320px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 320px;
}

.download-logo-big {
    width: 180px;
    height: 180px;
    border-radius: var(--radius-xl);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 80px var(--accent-red-glow);
    animation: logoFloat 4s ease-in-out infinite;
    position: relative;
    z-index: 2;
}

.floating-emojis {
    position: absolute;
    inset: 0;
}

.float-emoji {
    position: absolute;
    font-size: 2rem;
    left: var(--x);
    top: var(--y);
    animation: emojiFloat 5s ease-in-out infinite;
    animation-delay: var(--delay);
    opacity: 0.6;
}

@keyframes emojiFloat {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
        opacity: 0.6;
    }
    25% {
        transform: translateY(-20px) rotate(10deg);
        opacity: 0.9;
    }
    50% {
        transform: translateY(-8px) rotate(-5deg);
        opacity: 0.7;
    }
    75% {
        transform: translateY(-25px) rotate(8deg);
        opacity: 0.85;
    }
}

/* ===== FOOTER ===== */
.footer {
    padding: 48px 24px;
    border-top: 1px solid var(--border-color);
    background: var(--bg-secondary);
    position: relative;
    z-index: 2;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.footer-logo-img {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-sm);
}

.footer-text {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 8px;
}

.footer-copy {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Footer Developer Credits */
.footer-dev {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 20px;
    margin-top: 4px;
}

.footer-dev-label {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.footer-dev-name {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    background: var(--gradient-fire);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-socials {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 50px;
    color: var(--text-secondary);
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.35s ease;
}

.social-link svg {
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.social-link:hover {
    border-color: var(--accent-red);
    color: var(--text-primary);
    background: var(--bg-card-hover);
    transform: translateY(-3px);
    box-shadow: 0 6px 24px rgba(229, 62, 62, 0.15);
}

.social-link:hover svg {
    transform: scale(1.15);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Intersection Observer animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== RESPONSIVE ===== */

/* Large screens — show hero phone mockup alongside content */
@media (min-width: 1024px) {
    .hero {
        flex-direction: row;
        gap: 60px;
        padding: 120px 60px 80px;
    }

    .hero-content {
        text-align: left;
        max-width: 560px;
    }

    .hero-stats {
        justify-content: flex-start;
    }

    .hero-phone-mockup {
        flex: 0 0 auto;
        margin-top: 0;
    }

    .phone-frame {
        width: 280px;
        height: 560px;
        border-radius: 36px;
        box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5), 0 0 60px var(--accent-red-glow), inset 0 0 0 1px rgba(255,255,255,0.05);
    }

    .download-title {
        text-align: left;
    }
}

@media (max-width: 1023px) {
    .download-content {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }

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

    .download-info {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .download-meta {
        justify-content: center;
    }

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

    .download-visual {
        flex: 0 0 auto;
    }
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
    }

    .hero {
        padding: 100px 20px 60px;
    }

    .hero-stats {
        gap: 14px;
    }

    .stat-divider {
        height: 30px;
    }

    .hero-cta {
        padding: 16px 36px;
        font-size: 1.05rem;
    }

    .screenshot-phone {
        width: 180px;
        height: 360px;
        border-radius: 22px;
    }

    .sp-notch {
        width: 40px;
        height: 8px;
    }

    .carousel-btn {
        width: 40px;
        height: 40px;
    }

    .download-btn {
        padding: 18px 40px;
        font-size: 1.15rem;
    }

    .download-meta {
        gap: 12px;
    }

    .meta-item {
        padding: 12px 16px;
    }

    .steps-timeline::before {
        left: 24px;
    }

    .step-number {
        width: 48px;
        height: 48px;
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .nav-download-btn {
        padding: 8px 16px;
        font-size: 0.8rem;
    }

    .hero-logo {
        width: 90px;
        height: 90px;
    }

    .hero-badge {
        font-size: 0.7rem;
        padding: 6px 14px;
    }

    .download-visual {
        width: 240px;
        height: 240px;
    }

    .download-logo-big {
        width: 130px;
        height: 130px;
    }

    .float-emoji {
        font-size: 1.5rem;
    }

    .screenshot-phone {
        width: 160px;
        height: 320px;
    }
}
