/* Modern Minimalist Design System for Movie Cup */

:root {
    --bg-primary: #FCFBF9;
    --text-primary: #1A1A1A;
    --text-muted: #6E6D68;
    --text-light: #8E8D88;
    --accent-red: #E53E3E;
    --accent-red-bg: #FFF5F5;
    --accent-red-border: #FFE3E3;
    --border-color: #E2E0D9;
    --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
    --font-serif: 'Instrument Serif', Georgia, serif;
    --transition-smooth: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-quick: all 0.2s ease;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html, body {
    width: 100%;
    overflow-x: hidden; /* Force hide horizontal scroll */
}

html {
    scroll-behavior: smooth;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    font-family: var(--font-sans);
    -webkit-font-smoothing: antialiased;
}

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Header & Navigation */
.header {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background: rgba(252, 251, 249, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(226, 224, 217, 0.3);
    z-index: 2000;
}

.header-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 700;
    font-size: 1rem;
}

.logo-icon {
    width: 24px;
    height: 24px;
}

.nav {
    display: flex;
    align-items: center;
}

.nav-links {
    display: flex;
    gap: 20px;
    list-style: none;
    margin-right: 20px;
}

.nav-link {
    text-decoration: none;
    color: var(--text-muted);
    font-size: 0.8rem;
    font-weight: 500;
}

.signup-btn {
    text-decoration: none;
    background: var(--text-primary);
    color: #fff;
    padding: 6px 14px;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
}

.mobile-nav-toggle {
    display: none;
}

/* Main Hero Section */
.hero-section {
    padding-top: 100px;
    padding-bottom: 40px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.hero-container {
    width: 100%;
    max-width: 800px;
    padding: 0 20px;
}

.hero-title {
    font-family: var(--font-serif);
    font-size: clamp(2.4rem, 10vw, 5rem);
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
}

.hero-description {
    font-size: clamp(1rem, 3vw, 1.15rem);
    line-height: 1.6;
    color: var(--text-muted);
    max-width: 500px;
    margin: 0 auto 12px; /* Reduced margin */
}

/* Download Action */
.hero-download-btn {
    display: inline-flex;
    align-items: center;
    background-color: var(--text-primary);
    color: #fff;
    text-decoration: none;
    padding: 12px 28px;
    border-radius: 9999px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: var(--transition-quick);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.hero-download-btn:hover {
    background-color: #333;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.download-icon {
    margin-right: 8px;
    stroke-width: 2.5;
}

.download-meta {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 10px;
    font-weight: 500;
}

.download-action-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 32px;
}

/* Mockups */
.mockups-wrapper {
    position: relative;
    width: 100%;
    max-width: 650px;
    margin-top: 40px;
}

.background-smudge {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    filter: blur(80px);
    opacity: 0.6;
    z-index: 0;
}

.smudge {
    position: absolute;
    width: 250px;
    height: 250px;
    border-radius: 50%;
}

.smudge-1 { background: #FF7F50; top: 0; left: 10%; }
.smudge-2 { background: #EF4444; top: 20%; right: 5%; }
.smudge-3 { background: #90EE90; bottom: 0; left: 20%; }

.phones-container {
    position: relative;
    width: 100%;
    height: 540px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
}

.phone {
    width: 250px;
    height: 500px;
    background: #000;
    border-radius: 32px;
    padding: 4px;
    position: absolute;
    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
    transition: transform 0.6s ease;
}

.phone-inner {
    width: 100%;
    height: 100%;
    border-radius: 28px;
    overflow: hidden;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.phone-left { transform: translateX(-100px) rotate(-5deg); z-index: 2; }
.phone-right { transform: translateX(100px) rotate(5deg) translateY(20px); z-index: 1; }

/* Features */
.features-section {
    padding: 60px 20px;
    background: #fff;
}

.features-container {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.feature-card { text-align: center; }
.feature-icon-wrapper {
    width: 44px;
    height: 44px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.color-orange { background: rgba(255,127,80,0.1); color: #E25B2D; }
.color-blue { background: rgba(66,153,225,0.1); color: #2B6CB0; }
.color-purple { background: rgba(159,122,234,0.1); color: #6B46C1; }

.feature-title { font-size: 1.1rem; margin-bottom: 8px; }
.feature-text { font-size: 0.9rem; color: var(--text-muted); line-height: 1.5; }

/* Ads Section */
.ads-section { padding: 40px 0; border-top: 1px solid #eee; }
.ads-title { text-align: center; font-size: 0.7rem; color: #999; margin-bottom: 20px; text-transform: uppercase; }
.ads-scroll-container { display: flex; overflow-x: auto; gap: 16px; padding: 0 20px; scrollbar-width: none; }
.ads-scroll-container::-webkit-scrollbar { display: none; }
.ad-card { flex: 0 0 300px; height: 250px; background: #f5f5f5; border-radius: 12px; }

/* Footer */
.footer { padding: 40px 20px; text-align: center; border-top: 1px solid #eee; }

/* Responsive */
@media (max-width: 768px) {
    .nav-links { display: none; }
    
    .hero-section { padding-top: 80px; }
    
    .phones-container { height: 350px; }
    .phone { width: 150px; height: 300px; border-radius: 24px; }
    .phone-inner { border-radius: 20px; }
    
    .phone-left { transform: translateX(-60px) rotate(-5deg); }
    .phone-right { transform: translateX(60px) rotate(5deg) translateY(10px); }
    
    .features-container { grid-template-columns: 1fr; gap: 40px; }
}
