/* ==================== */
/* MatchFlicks Cinema Design */
/* ==================== */

:root {
    /* Colors - Cinema Style */
    --color-primary: #EF4444;
    --color-primary-dark: #DC2626;
    --color-secondary: #111827;
    --color-secondary-light: #1F2937;
    --color-white: #FFFFFF;
    --color-gray-100: #F3F4F6;
    --color-gray-200: #E5E7EB;
    --color-gray-300: #D1D5DB;
    --color-gray-400: #9CA3AF;
    --color-gray-500: #6B7280;
    --color-gray-600: #4B5563;
    --color-gray-700: #374151;
    --color-gray-800: #1F2937;
    --color-gray-900: #111827;
    --color-dark-bg: #0F172A;
    --color-darker-bg: #0A0F1C;
    
    /* Typography */
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 4rem;
    --spacing-3xl: 6rem;
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.5);
    --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.6);
    
    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* ==================== */
/* Reset & Base Styles  */
/* ==================== */

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-family);
    background-color: var(--color-secondary);
    color: var(--color-white);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ==================== */
/* Typography           */
/* ==================== */

h1 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: var(--spacing-md);
    color: var(--color-white);
}

h2 {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--spacing-lg);
    color: var(--color-white);
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: var(--spacing-sm);
    color: var(--color-white);
}

h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
    color: var(--color-white);
}

p {
    margin-bottom: var(--spacing-sm);
    color: var(--color-gray-300);
    font-size: 1.125rem;
}

a {
    color: var(--color-primary);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--color-primary-dark);
}

/* ==================== */
/* Layout               */
/* ==================== */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.section {
    padding: var(--spacing-3xl) 0;
}

/* ==================== */
/* Header               */
/* ==================== */

.header {
    background: var(--color-secondary);
    padding: var(--spacing-md) 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--color-gray-700);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.logo-img {
    width: 32px;
    height: 32px;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-white);
}

.header-nav {
    display: flex;
    align-items: center;
    gap: var(--spacing-lg);
}

.nav-link {
    color: var(--color-gray-300);
    font-weight: 500;
    transition: color var(--transition-fast);
    text-decoration: none;
}

.nav-link:hover {
    color: var(--color-primary);
}

.nav-link.active {
    color: var(--color-primary);
    position: relative;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 2px;
    background-color: var(--color-primary);
}

.language-btn {
    background: transparent;
    border: 1px solid var(--color-gray-600);
    color: var(--color-white);
    padding: var(--spacing-xs) var(--spacing-sm);
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.language-btn:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: var(--spacing-xs);
}

.mobile-menu-btn span {
    width: 20px;
    height: 2px;
    background: var(--color-white);
    transition: all var(--transition-fast);
}

.mobile-menu-btn:hover span {
    background: var(--color-primary);
}

/* ==================== */
/* Hero Section         */
/* ==================== */

.hero {
    background: var(--color-secondary);
    padding: calc(var(--spacing-3xl) + 80px) 0 var(--spacing-3xl);
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-3xl);
    align-items: center;
}

.hero-text h1 {
    font-size: 4rem;
    color: var(--color-white);
    margin-bottom: var(--spacing-md);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--color-gray-300);
    margin-bottom: var(--spacing-xl);
    max-width: 500px;
}

.download-btn-primary {
    background: var(--color-primary);
    color: var(--color-white);
    border: none;
    padding: var(--spacing-md) var(--spacing-xl);
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 1.125rem;
    cursor: pointer;
    transition: all var(--transition-normal);
}

.download-btn-primary:hover {
    background: var(--color-primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* ==================== */
/* Phone Mockups        */
/* ==================== */

.hero-phones {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 500px;
    width: 100%;
}

.phone {
    position: absolute;
    width: 200px;
    height: 400px;
    background: linear-gradient(145deg, #1a1a1a 0%, #000 100%);
    border-radius: 35px;
    padding: 6px;
    box-shadow: 
        0 0 0 1px #333,
        0 25px 80px rgba(0, 0, 0, 0.8),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.phone::before {
    content: "";
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 6px;
    background: #333;
    border-radius: 3px;
    z-index: 10;
}

.phone-main {
    z-index: 3;
    transform: rotate(-5deg);
    left: 50%;
    top: 50%;
    margin-left: -100px;
    margin-top: -200px;
}

.phone-secondary {
    z-index: 2;
    transform: rotate(-15deg);
    left: 50%;
    top: 50%;
    margin-left: -200px;
    margin-top: -200px;
    opacity: 0.7;
}

.phone-secondary .phone-screen {
    background: url('assets/watchlist.png') center/cover no-repeat;
}

.phone-tertiary {
    z-index: 1;
    transform: rotate(15deg);
    left: 50%;
    top: 50%;
    margin-left: 0px;
    margin-top: -200px;
    opacity: 0.5;
}

/* MatchFlicks Hero Phone Mockup - Real App Interface */
.phone-screen {
    width: 100%;
    height: 100%;
    background: url('assets/swipe.png') center/cover no-repeat;
    border-radius: 20px;
    padding: 0;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

/* Right Hero Phone uses group screenshot */
.phone-tertiary .phone-screen {
    background: url('assets/group.png') center/cover no-repeat !important;
}

/* CTA Phone uses login screenshot */
.phone-cta .phone-screen {
    background: url('assets/login.png') center/cover no-repeat;
}

/* Real Screenshot - No additional elements needed */

/* Real Screenshot Content - All elements are in the image */

/* All content is now in the real screenshot image */

/* ===== SUPPORT PAGE STYLES ===== */
.support-page {
    padding: 120px 0 80px;
    background: var(--color-gray-900);
    min-height: 100vh;
}

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

.page-header h1 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 16px;
    background: linear-gradient(135deg, var(--color-primary) 0%, #ff6b6b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-header p {
    font-size: 1.2rem;
    color: var(--color-gray-300);
    max-width: 600px;
    margin: 0 auto;
}

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

.support-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 32px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.support-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--color-primary) 0%, #ff6b6b 100%);
}

.support-card:hover {
    transform: translateY(-4px);
    border-color: var(--color-primary);
    box-shadow: 0 20px 40px rgba(255, 99, 99, 0.2);
}

.support-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.support-card h3::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--color-primary);
    border-radius: 50%;
    flex-shrink: 0;
}

.support-card p {
    color: var(--color-gray-300);
    line-height: 1.6;
    margin-bottom: 16px;
}

.support-card ol {
    color: var(--color-gray-300);
    padding-left: 20px;
    margin-bottom: 16px;
}

.support-card li {
    margin-bottom: 8px;
    line-height: 1.5;
}

.email-link {
    display: inline-block;
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 500;
    padding: 8px 16px;
    background: rgba(255, 99, 99, 0.1);
    border-radius: 8px;
    border: 1px solid var(--color-primary);
    transition: all 0.3s ease;
    margin: 16px 0;
}

.email-link:hover {
    background: var(--color-primary);
    color: var(--color-white);
    transform: translateY(-2px);
}

.response-time {
    font-size: 0.9rem;
    color: var(--color-gray-400);
    font-style: italic;
}

.warning {
    background: rgba(255, 193, 7, 0.1);
    border: 1px solid rgba(255, 193, 7, 0.3);
    border-radius: 8px;
    padding: 16px;
    margin-top: 16px;
}

.warning strong {
    color: #ffc107;
}

.data-info, .cache-info {
    font-size: 0.9rem;
    color: var(--color-gray-400);
    font-style: italic;
    margin-top: 16px;
}

.faq h4 {
    color: var(--color-white);
    font-weight: 600;
    margin: 20px 0 8px 0;
    font-size: 1.1rem;
}

.faq h4:first-child {
    margin-top: 0;
}

.faq p {
    margin-bottom: 16px;
}

/* ===== IMPROVED FOOTER STYLES ===== */
.footer {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 60px 0 30px;
}

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

.footer-section h4 {
    color: var(--color-white);
    font-weight: 600;
    margin-bottom: 16px;
    font-size: 1.1rem;
}

.footer-section a {
    display: block;
    color: var(--color-gray-400);
    text-decoration: none;
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

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

.footer-section p {
    color: var(--color-gray-400);
    margin-bottom: 16px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    color: var(--color-gray-500);
    font-size: 0.9rem;
}

/* ===== LEGAL PAGES STYLES ===== */
.legal-page {
    padding: 120px 0 80px;
    background: var(--color-gray-900);
    min-height: 100vh;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 40px;
    backdrop-filter: blur(10px);
}

.legal-content h2 {
    color: var(--color-white);
    font-size: 1.5rem;
    font-weight: 600;
    margin: 32px 0 16px 0;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--color-primary);
}

.legal-content h2:first-of-type {
    margin-top: 0;
}

.legal-content p {
    color: var(--color-gray-300);
    line-height: 1.6;
    margin-bottom: 16px;
}

.legal-content ul, .legal-content ol {
    color: var(--color-gray-300);
    margin-bottom: 16px;
    padding-left: 20px;
}

.legal-content li {
    margin-bottom: 8px;
    line-height: 1.5;
}

.legal-content a {
    color: var(--color-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.legal-content a:hover {
    color: #ff6b6b;
}

.last-updated {
    font-size: 0.9rem;
    color: var(--color-gray-400);
    font-style: italic;
    text-align: center;
    margin-top: 8px;
}

.provider-logos {
    display: flex;
    gap: var(--spacing-xs);
    justify-content: center;
}

.provider {
    background: rgba(255, 255, 255, 0.2);
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 0.7rem;
}

/* ==================== */
/* Features Section     */
/* ==================== */

.features {
    background: var(--color-secondary-light);
    color: var(--color-white);
    padding: var(--spacing-3xl) 0;
}

.features-alt {
    background: var(--color-gray-700);
}

.features-alt h2 {
    color: var(--color-white);
}

.features-alt p {
    color: var(--color-gray-300);
}

.features h2 {
    color: var(--color-white);
    font-size: 2.5rem;
    margin-bottom: var(--spacing-lg);
}

.features p {
    color: var(--color-gray-300);
    font-size: 1.125rem;
}

.feature-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-3xl);
    align-items: center;
}

.features-reverse .feature-content {
    grid-template-columns: 1fr 1fr;
}

.features-reverse .feature-text {
    order: 1;
}

.features-reverse .feature-image {
    order: 2;
}

.feature-image {
    position: relative;
    height: 400px;
}

.person-image {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    border-radius: var(--radius-xl);
    position: relative;
    overflow: hidden;
}

.floating-card {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: var(--spacing-md);
    box-shadow: var(--shadow-lg);
}

/* MatchFlicks App Interface Mockup - Wednesday Detail Screen */
.queue-card {
    width: 280px;
    height: 500px;
    background: #000;
    border-radius: 25px;
    padding: 0;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
    border: 1px solid #333;
    position: relative;
    overflow: hidden;
}

/* Feature Screenshot Backgrounds */
.queue-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    border-radius: 12px;
}

/* Group Feature Screenshot (1st feature) */
#features .queue-card::before {
    background: url('assets/group.png') center/cover no-repeat;
}

/* Movie Details Feature Screenshot (2nd feature) */
#how-it-works .queue-card::before {
    background: url('assets/details.png') center/cover no-repeat;
}

/* Movie Details Feature - Handy ganz nach links verschieben */
#how-it-works .floating-card {
    transform: translateX(-150px);
}

/* Watchlist Feature Screenshot (3rd feature) */
#watchlist-feature .queue-card::before {
    background: url('assets/watchlist.png') center/cover no-repeat;
    border-radius: 12px;
}

/* Wednesday Detail Content Card */
.movie-item-small {
    position: absolute;
    top: 220px;
    left: 0;
    right: 0;
    bottom: 80px;
    background: linear-gradient(135deg, #1a1a1a 0%, #000 100%);
    border-radius: 25px 25px 0 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    padding: 20px;
    z-index: 3;
}

/* Wednesday Content - Simplified */
.movie-poster-small {
    position: relative;
    margin-bottom: 15px;
    height: 40px;
    background: transparent;
}

.movie-info-small {
    margin-bottom: 15px;
    background: transparent;
    color: white;
    font-size: 0.9rem;
    font-weight: 500;
}

.movie-title {
    display: flex;
    gap: 8px;
    margin-bottom: 15px;
}

.providers {
    color: white;
    font-size: 0.9rem;
    font-weight: 400;
    line-height: 1.4;
    margin-bottom: 20px;
}

/* Wednesday Action Buttons */
.movie-item-small::after {
    content: "";
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 140px;
    height: 32px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 140 32'%3E%3Ccircle cx='16' cy='16' r='14' fill='%23ff4458'/%3E%3Cpath d='M12 12l8 4-8 4' stroke='white' stroke-width='2' fill='none'/%3E%3Ccircle cx='70' cy='16' r='14' fill='%234fc3f7'/%3E%3Cpath d='M66 12l8 4-8 4' stroke='white' stroke-width='2' fill='none'/%3E%3Ccircle cx='124' cy='16' r='14' fill='%2342a047'/%3E%3Cpath d='M120 12l4 4-4 4' stroke='white' stroke-width='2' fill='none'/%3E%3C/svg%3E");
    background-size: 140px 32px;
    background-repeat: no-repeat;
    background-position: center;
}

.tablet-image {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    border-radius: var(--radius-xl);
    position: relative;
    overflow: hidden;
}

.tablet-screen {
    position: relative;
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 20px;
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    overflow: hidden;
}

/* MatchFlicks Groups Interface Mockup - Test Group Style */
.group-content h4 {
    background: #000;
    color: white;
    margin-bottom: 0;
    font-size: 1.1rem;
    font-weight: 700;
    text-align: center;
    padding: 20px 16px;
    border-radius: 0;
    letter-spacing: 1px;
    border-bottom: 2px solid #333;
    position: relative;
}

/* Test Group Header - Simplified */
.group-content h4 {
    background: #000;
    color: white;
    margin-bottom: 0;
    font-size: 1.4rem;
    font-weight: 700;
    text-align: center;
    padding: 20px 16px;
    border-radius: 0;
    letter-spacing: 1px;
    border-bottom: 2px solid #333;
}

.group-stats {
    display: flex;
    gap: 0;
    margin-bottom: 0;
    background: #111;
}

.stat {
    background: #1a1a1a;
    color: white;
    padding: 15px 10px;
    border-radius: 0;
    font-size: 0.9rem;
    font-weight: 700;
    text-align: center;
    flex: 1;
    border-right: 1px solid #333;
    border-bottom: 1px solid #333;
    position: relative;
}

/* Test Group Stats - Simplified */
.stat:nth-child(1) {
    color: white;
}

.stat:nth-child(2) {
    color: white;
}

.stat:nth-child(3) {
    color: white;
}

.stat:last-child {
    border-right: none;
}

.group-movies {
    display: flex;
    flex-direction: column;
    gap: 0;
    background: #000;
}

.group-movie {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    background: #111;
    border-bottom: 1px solid #333;
    transition: background-color 0.2s ease;
}

.group-movie:hover {
    background: #1a1a1a;
}

.group-movie:last-child {
    border-bottom: none;
}

.movie-poster-mini {
    width: 40px;
    height: 60px;
    background: linear-gradient(135deg, #dc2626 0%, #991b1b 100%);
    border-radius: 8px;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.movie-poster-mini::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='white' viewBox='0 0 24 24'%3E%3Cpath d='M8 5v14l11-7z'/%3E%3C/svg%3E");
    background-size: 20px;
    background-repeat: no-repeat;
    background-position: center;
}

.group-movie span {
    color: white;
    font-size: 0.9rem;
    font-weight: 600;
}

/* Test Group Member - Simplified */
.group-movie {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    background: #111;
    border-bottom: 1px solid #333;
    transition: background-color 0.2s ease;
}

/* MatchFlicks Streaming Integration Mockup - Netflix Style */
.provider-card {
    width: 280px;
    height: 400px;
    background: #000;
    border-radius: 25px;
    padding: 0;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
    border: 1px solid #333;
    position: relative;
    overflow: hidden;
}

/* Netflix Provider Header - Simplified */
.provider-card h4 {
    background: #000;
    color: #dc2626;
    margin-bottom: 0;
    font-size: 1rem;
    font-weight: 700;
    text-align: center;
    padding: 20px;
    border-radius: 0;
    letter-spacing: 1px;
    border-bottom: 2px solid #333;
}

.provider-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    background: #000;
    height: calc(100% - 70px);
    overflow-y: auto;
}

/* Netflix Provider Item - Simplified */
.provider-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    border-bottom: 1px solid #333;
    transition: background-color 0.2s ease;
    background: #111;
    position: relative;
}

.provider-item:hover {
    background: #1a1a1a;
}

.provider-item:last-child {
    border-bottom: none;
}

.provider-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.provider-icon.netflix::after {
    content: "N";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-weight: 900;
    font-size: 18px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.provider-icon.prime::after {
    content: "P";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-weight: 900;
    font-size: 16px;
}

.provider-icon.disney::after {
    content: "D";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-weight: 900;
    font-size: 16px;
}

.provider-icon.netflix {
    background: linear-gradient(135deg, #E50914 0%, #B20710 100%);
    width: 40px;
    height: 40px;
    border-radius: 12px;
}

.provider-icon.prime {
    background: linear-gradient(135deg, #00A8E1 0%, #0077B6 100%);
}

.provider-icon.disney {
    background: linear-gradient(135deg, #113CCF 0%, #0B2B7A 100%);
}

.provider-item span {
    color: white;
    font-size: 1rem;
    font-weight: 600;
}


/* ==================== */
/* CTA Section          */
/* ==================== */

.cta {
    background: var(--color-gray-700);
    padding: var(--spacing-3xl) 0;
}

.cta-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-3xl);
    align-items: center;
}

.cta-phone {
    display: flex;
    justify-content: center;
}

.phone-cta {
    position: relative;
    z-index: 1;
    transform: none;
    opacity: 1;
}

.cta-text h2 {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-md);
}

.cta-text p {
    font-size: 1.125rem;
    margin-bottom: var(--spacing-xl);
}

.download-buttons-cta {
    display: flex;
    gap: var(--spacing-md);
    flex-wrap: wrap;
}

.download-btn-cta {
    background: var(--color-primary);
    color: var(--color-white);
    border: none;
    padding: var(--spacing-md) var(--spacing-xl);
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 1.125rem;
    cursor: pointer;
    transition: all var(--transition-normal);
    min-width: 140px;
}

.download-btn-cta:hover {
    background: var(--color-primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.download-btn-cta.google-play {
    background: var(--color-gray-800);
}

.download-btn-cta.google-play:hover {
    background: var(--color-gray-700);
}

/* ==================== */
/* Footer               */
/* ==================== */

.footer {
    background: var(--color-darker-bg);
    color: var(--color-white);
    padding: var(--spacing-3xl) 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-3xl);
    align-items: start;
}

.footer-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-md);
}

.footer-logo .logo-img {
    width: 24px;
    height: 24px;
}

.footer-logo .logo-text {
    font-size: 1.25rem;
    color: var(--color-white);
}

.footer-left p {
    color: var(--color-gray-300);
    margin-bottom: 0;
}

.footer-section h4 {
    color: var(--color-white);
    margin-bottom: var(--spacing-md);
    font-size: 1rem;
}

.footer-section a {
    display: block;
    color: var(--color-gray-300);
    margin-bottom: var(--spacing-sm);
    font-size: 0.9rem;
    transition: color var(--transition-fast);
}

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

.download-note {
    color: var(--color-gray-400);
    font-style: italic;
    font-size: 0.9rem;
    margin-top: var(--spacing-md);
    text-align: center;
}

/* ==================== */
/* Responsive Design    */
/* ==================== */

@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-2xl);
        text-align: center;
    }
    
    .hero-text h1 {
        font-size: 3rem;
    }
    
    .feature-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-2xl);
    }
    
        .features-reverse .feature-text {
        order: 2;
    }
    
    .features-reverse .feature-image {
        order: 1;
    }
    
    .header-nav {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .header-nav.mobile-open {
        display: flex;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--color-secondary);
        border-top: 1px solid var(--color-gray-700);
        flex-direction: column;
        padding: var(--spacing-md);
        gap: var(--spacing-md);
    }
    
    .mobile-menu-btn.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .mobile-menu-btn.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-btn.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .cta-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-2xl);
        text-align: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-2xl);
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
    }
    
    .header-nav {
        gap: var(--spacing-sm);
    }
    
    .nav-link {
        font-size: 0.9rem;
    }
    
    .phone {
        width: 160px;
        height: 320px;
    }
    
    .hero-phones {
        height: 400px;
    }
    
    .download-buttons-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
}

@media (max-width: 480px) {
    .section {
        padding: var(--spacing-2xl) 0;
    }
    
    .hero {
        padding: calc(var(--spacing-2xl) + 80px) 0 var(--spacing-2xl);
    }
    
    .phone {
        width: 140px;
        height: 280px;
    }
    
    .hero-phones {
        height: 350px;
    }
    
    .feature-image {
        height: 300px;
    }
}