:root {
    --bg-color: #0d0d0d;
    --text-color: #ffffff;
    --text-muted: #a0a0a0;
    --accent-orange: #ff5722;
    --accent-yellow: #ff9800;
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
}

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

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

/* Typography */
h1, h2, h3 {
    line-height: 1.2;
}

.gradient-text {
    background: linear-gradient(90deg, var(--accent-orange), var(--accent-yellow));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.badge {
    display: inline-block;
    background: rgba(255, 87, 34, 0.15);
    color: var(--accent-orange);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 87, 34, 0.3);
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
    background: rgba(13, 13, 13, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--glass-border);
}

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: -1px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--accent-orange);
}

#lang-select {
    background: rgba(255, 255, 255, 0.05);
    color: white;
    border: 1px solid var(--glass-border);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    cursor: pointer;
    outline: none;
    transition: all 0.3s ease;
}

#lang-select:hover {
    border-color: var(--accent-orange);
}

#lang-select option {
    background: var(--bg-color);
    color: white;
}

/* Buttons */
.btn-primary, .btn-secondary {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-family: inherit;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(90deg, var(--accent-orange), var(--accent-yellow));
    color: white;
    box-shadow: 0 4px 15px rgba(255, 87, 34, 0.3);
}

.btn-primary:hover {
    box-shadow: 0 0 25px rgba(255, 87, 34, 0.6);
    transform: translateY(-2px);
}

.btn-secondary {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    color: white;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 6rem 5% 2rem;
    position: relative;
}

.hero-content {
    flex: 1;
    max-width: 600px;
    z-index: 2;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
}

.hero-actions {
    display: flex;
    gap: 1rem;
}

.hero-image-container {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.glow-effect {
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255,87,34,0.2) 0%, rgba(255,152,0,0.1) 50%, rgba(0,0,0,0) 70%);
    border-radius: 50%;
    z-index: 0;
    animation: pulse 4s infinite alternate;
}

.hero-image {
    width: 80%;
    max-width: 600px;
    border-radius: 20px;
    z-index: 1;
    box-shadow: 0 20px 50px rgba(0,0,0,0.6);
    animation: float 6s ease-in-out infinite;
    border: 1px solid var(--glass-border);
}

/* Sections */
section {
    padding: 6rem 5%;
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 4rem;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 2.5rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(255, 87, 34, 0.1);
    border-color: rgba(255, 87, 34, 0.3);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--text-muted);
}

/* Apps Section */
.apps-section {
    background: rgba(255, 255, 255, 0.02);
}

.apps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.app-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 1.5rem;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 90px;
    transition: all 0.3s ease;
}

.app-card img {
    max-width: 100%;
    max-height: 55px;
    object-fit: contain;
    transition: all 0.3s ease;
    filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.1));
}

.app-card:hover img {
    transform: scale(1.1);
    filter: drop-shadow(0 0 10px rgba(255, 87, 34, 0.4));
}

.app-card:hover {
    border-color: var(--accent-orange);
    background: rgba(255, 87, 34, 0.05);
    transform: scale(1.05);
}

/* Specs */
.specs {
    background: linear-gradient(0deg, rgba(13,13,13,1) 0%, rgba(20,20,20,1) 100%);
    display: flex;
    justify-content: center;
}

.specs-content {
    max-width: 800px;
    width: 100%;
}

.specs-list {
    list-style: none;
}

.specs-list li {
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--glass-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

/* CTA Section */
.cta-section {
    display: flex;
    justify-content: center;
    align-items: center;
}

.cta-box {
    background: linear-gradient(135deg, rgba(255,87,34,0.1), rgba(255,152,0,0.1));
    border: 1px solid rgba(255,87,34,0.3);
    padding: 5rem 2rem;
    border-radius: 30px;
    text-align: center;
    max-width: 800px;
    width: 100%;
    backdrop-filter: blur(10px);
}

.cta-box h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.cta-box p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
}

/* Footer */
footer {
    padding: 3rem 5%;
    border-top: 1px solid var(--glass-border);
    text-align: center;
    color: var(--text-muted);
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1rem;
}

/* Animations */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

@keyframes pulse {
    0% { opacity: 0.5; transform: scale(1); }
    100% { opacity: 0.8; transform: scale(1.1); }
}

/* Brand Text Fallbacks */
.brand-text { font-size: 1.5rem; font-weight: 800; letter-spacing: 1px; transition: all 0.3s ease; }
.app-card:hover .brand-text { filter: brightness(1.2); }
.netflix { color: #E50914; font-family: 'Arial', sans-serif; }
.youtube { color: #FF0000; font-family: 'Arial', sans-serif; letter-spacing: -1px; }
.disney { color: #0063e5; font-family: 'Arial', sans-serif; }
.spotify { color: #1DB954; }
.bein { color: #531474; font-style: italic; }
.max { color: #002be7; font-family: serif; }
.exxen { color: #fcc200; font-family: 'Arial', sans-serif; }
.tod { color: #f0f0f0; font-family: 'Arial', sans-serif; }
.tabii { color: #00d26a; }
.mubi { color: #f0f0f0; letter-spacing: 4px; font-weight: 400; }
.gain { color: #ff0055; font-weight: 900; }
.paramount { color: #0064FF; font-family: 'Arial', sans-serif; }

/* Responsive */
@media (max-width: 768px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 8rem;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-actions {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .nav-links {
        display: none;
    }
    
    .specs-list li {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
}
