/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background-color: #ffffff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

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

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

.logo-image {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

/* Retro TV Logo */
.logo-tv {
    position: relative;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tv-body {
    width: 28px;
    height: 24px;
    background: #e74c3c;
    border-radius: 6px;
    position: relative;
    box-shadow: 0 2px 8px rgba(231, 76, 60, 0.3);
}

.tv-screen {
    position: absolute;
    top: 2px;
    left: 2px;
    width: 18px;
    height: 12px;
    background: #f8f9fa;
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.screen-content {
    display: flex;
    flex-direction: column;
    gap: 1px;
    align-items: center;
}

.menu-item {
    width: 8px;
    height: 1px;
    background: #6c757d;
    border-radius: 1px;
}

.tv-controls {
    position: absolute;
    right: 2px;
    top: 2px;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.control-knob {
    width: 4px;
    height: 4px;
    background: #e74c3c;
    border-radius: 50%;
    border: 1px solid #c0392b;
}

.tv-speaker {
    position: absolute;
    bottom: 2px;
    right: 2px;
    width: 8px;
    height: 4px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 1px;
}

.tv-speaker::before {
    content: '';
    width: 100%;
    height: 100%;
    background: #c0392b;
    border-radius: 1px;
    grid-column: 1 / -1;
    grid-row: 1 / -1;
}

.tv-speaker::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 25% 25%, transparent 1px, #c0392b 1px),
                radial-gradient(circle at 50% 25%, transparent 1px, #c0392b 1px),
                radial-gradient(circle at 75% 25%, transparent 1px, #c0392b 1px),
                radial-gradient(circle at 25% 75%, transparent 1px, #c0392b 1px),
                radial-gradient(circle at 50% 75%, transparent 1px, #c0392b 1px),
                radial-gradient(circle at 75% 75%, transparent 1px, #c0392b 1px);
    background-size: 33.33% 50%;
    border-radius: 1px;
}

.tv-antennas {
    position: absolute;
    top: -4px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
}

.antenna {
    width: 1px;
    height: 6px;
    background: #95a5a6;
    position: relative;
    transform: rotate(-15deg);
}

.antenna:first-child {
    transform: rotate(15deg);
}

.antenna::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -1px;
    width: 3px;
    height: 3px;
    background: #95a5a6;
    border-radius: 50%;
}

/* Footer logo adjustments */
.footer-logo .logo-tv {
    width: 40px;
    height: 40px;
}

.footer-logo .tv-body {
    width: 36px;
    height: 30px;
}

.footer-logo .tv-screen {
    width: 24px;
    height: 16px;
}

.footer-logo .menu-item {
    width: 12px;
    height: 1.5px;
}

.footer-logo .control-knob {
    width: 5px;
    height: 5px;
}

.footer-logo .tv-speaker {
    width: 10px;
    height: 5px;
}

.footer-logo .antenna {
    height: 8px;
}

.logo-text {
    font-size: 20px;
    font-weight: 700;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Logo animations */
.logo-tv {
    transition: transform 0.3s ease;
}

.logo-tv:hover {
    transform: scale(1.1);
}

.tv-screen {
    animation: screenGlow 3s ease-in-out infinite alternate;
}

@keyframes screenGlow {
    0% {
        box-shadow: 0 0 2px rgba(248, 249, 250, 0.3);
    }
    100% {
        box-shadow: 0 0 6px rgba(248, 249, 250, 0.6);
    }
}

.menu-item {
    animation: menuPulse 2s ease-in-out infinite;
    animation-delay: calc(var(--item-index, 0) * 0.3s);
}

.menu-item:nth-child(1) { --item-index: 0; }
.menu-item:nth-child(2) { --item-index: 1; }
.menu-item:nth-child(3) { --item-index: 2; }

@keyframes menuPulse {
    0%, 100% {
        opacity: 0.6;
        transform: scaleX(1);
    }
    50% {
        opacity: 1;
        transform: scaleX(1.2);
    }
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    text-decoration: none;
    color: #1a1a1a;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #667eea;
}

.cta-button {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
}

.gradient-text {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #666;
    margin-bottom: 40px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.primary-button {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 16px 32px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.primary-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(102, 126, 234, 0.4);
}

.secondary-button {
    background: white;
    color: #667eea;
    padding: 16px 32px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid #667eea;
    transition: all 0.3s ease;
}

.secondary-button:hover {
    background: #667eea;
    color: white;
    transform: translateY(-2px);
}

/* Phone Mockup */
.phone-mockup {
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-screen {
    width: 480px;
    height: 960px;
    border-radius: 30px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}





.app-screenshot {
    max-width: 480px;
    max-height: 960px;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}

.screenshot-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    padding: 20px;
}

.placeholder-content {
    max-width: 200px;
}

.placeholder-icon {
    font-size: 3rem;
    margin-bottom: 16px;
    display: block;
}

.placeholder-content h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.placeholder-content p {
    font-size: 0.85rem;
    line-height: 1.4;
    margin-bottom: 16px;
    opacity: 0.9;
}

.placeholder-content code {
    background: rgba(255, 255, 255, 0.2);
    padding: 2px 6px;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    font-size: 0.8rem;
}

.placeholder-note {
    background: rgba(255, 255, 255, 0.1);
    padding: 12px;
    border-radius: 8px;
    font-size: 0.8rem;
    line-height: 1.4;
}

.content-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border: 1px solid #e9ecef;
}

.card-poster {
    width: 100%;
    height: 120px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.poster-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
}

.poster-text {
    color: white;
    font-size: 12px;
    font-weight: 600;
    text-align: center;
    padding: 8px;
}

.card-info {
    padding: 12px;
}

.card-info h4 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #1a1a1a;
    line-height: 1.2;
}

.rating-tags {
    display: flex;
    gap: 6px;
    margin-bottom: 8px;
    flex-wrap: wrap;
}

.tag {
    padding: 2px 6px;
    border-radius: 8px;
    font-size: 10px;
    font-weight: 500;
    color: white;
}

.tag.tmdb {
    background: #ff6b35;
}

.tag.imdb {
    background: #f3ce13;
    color: #1a1a1a;
}

.tag.year {
    background: #6c757d;
}

.genre {
    font-size: 11px;
    color: #666;
    margin-bottom: 8px;
    line-height: 1.3;
}

.card-actions {
    margin-top: 8px;
}

.action-btn {
    background: #f8f9fa;
    color: #666;
    padding: 4px 8px;
    border-radius: 8px;
    font-size: 10px;
    font-weight: 500;
    display: inline-block;
    margin-right: 6px;
    margin-bottom: 4px;
}

.bottom-nav {
    display: flex;
    justify-content: space-around;
    padding: 12px 0;
    border-top: 1px solid #e9ecef;
    background: #f8f9fa;
    margin: 0 -16px -20px;
}

.nav-item {
    font-size: 12px;
    color: #666;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.nav-item.active {
    color: #667eea;
    font-weight: 600;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    background: linear-gradient(135deg, #1a1a1a 0%, #667eea 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-header p {
    font-size: 1.125rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* Features Section */
.features {
    padding: 100px 0;
    background: white;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.feature-card {
    background: white;
    padding: 40px 32px;
    border-radius: 16px;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: #667eea;
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: white;
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.feature-card p {
    color: #666;
    line-height: 1.6;
}

/* How It Works Section */
.how-it-works {
    padding: 100px 0;
    background: #f8f9fa;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.step-card {
    background: white;
    padding: 40px 32px;
    border-radius: 16px;
    text-align: center;
    position: relative;
    transition: transform 0.3s ease;
}

.step-card:hover {
    transform: translateY(-4px);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 24px;
}

.step-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.step-card p {
    color: #666;
    line-height: 1.6;
}

/* iOS Features Section */
.ios-features {
    padding: 100px 0;
    background: #f8f9fa;
}

.ios-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.ios-feature-card {
    background: white;
    padding: 30px;
    border-radius: 16px;
    text-align: center;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.ios-feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: #667eea;
}

.ios-feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.ios-feature-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.ios-feature-card p {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Privacy Section */
.privacy {
    padding: 100px 0;
    background: white;
}

.privacy-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.privacy-main {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.privacy-card {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 16px;
    border-left: 4px solid #667eea;
    transition: all 0.3s ease;
}

.privacy-card:hover {
    transform: translateX(8px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.1);
}

.privacy-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
    display: block;
}

.privacy-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.privacy-card p {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
}

.privacy-details {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 40px;
    border-radius: 16px;
}

.privacy-details h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 24px;
}

.privacy-list {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.privacy-list li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    line-height: 1.6;
}

.privacy-list li:last-child {
    border-bottom: none;
}

.privacy-list strong {
    color: #fff;
    font-weight: 600;
}

.privacy-note {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 12px;
    border-left: 4px solid rgba(255, 255, 255, 0.3);
}

.privacy-note p {
    margin: 0;
    font-size: 1rem;
    line-height: 1.6;
}

/* Download Section */
.download {
    padding: 100px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
}

.download-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.download-content p {
    font-size: 1.125rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.download-button {
    background: white;
    color: #667eea;
    padding: 16px 32px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.download-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(255, 255, 255, 0.3);
}

.download-note {
    margin-top: 16px;
    font-size: 0.875rem;
    opacity: 0.8;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: white;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.contact-info p {
    color: #666;
    margin-bottom: 32px;
    line-height: 1.6;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.contact-item svg {
    color: #667eea;
}

/* Contact Form */
.contact-form {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 16px;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #1a1a1a;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #667eea;
}

.submit-button {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 16px 32px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.submit-button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: white;
    padding: 60px 0 40px;
    text-align: center;
}

.footer-content {
    max-width: 600px;
    margin: 0 auto;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 16px;
}

.footer-logo .logo-image {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.footer-tagline {
    font-size: 1.125rem;
    margin-bottom: 32px;
    opacity: 0.8;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-bottom: 32px;
}

.footer-links a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #667eea;
}

.footer-copyright {
    opacity: 0.6;
    font-size: 0.875rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .ios-features-grid {
        grid-template-columns: 1fr;
    }
    
    .privacy-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .phone-screen {
        width: 300px;
        height: 600px;
    }
    
    .app-screenshot {
        max-width: 300px;
        max-height: 600px;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .download-content h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .primary-button,
    .secondary-button {
        padding: 14px 24px;
        font-size: 0.875rem;
    }
    
    .phone-screen {
        width: 300px;
        height: 600px;
    }
    
    .app-screenshot {
        max-width: 300px;
        max-height: 600px;
    }
    
    .contact-form {
        padding: 24px;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.feature-card,
.step-card {
    animation: fadeInUp 0.6s ease forwards;
}

.feature-card:nth-child(1) { animation-delay: 0.1s; }
.feature-card:nth-child(2) { animation-delay: 0.2s; }
.feature-card:nth-child(3) { animation-delay: 0.3s; }
.feature-card:nth-child(4) { animation-delay: 0.4s; }
.feature-card:nth-child(5) { animation-delay: 0.5s; }
.feature-card:nth-child(6) { animation-delay: 0.6s; }

.step-card:nth-child(1) { animation-delay: 0.1s; }
.step-card:nth-child(2) { animation-delay: 0.2s; }
.step-card:nth-child(3) { animation-delay: 0.3s; }
.step-card:nth-child(4) { animation-delay: 0.4s; } 