/* --- GENEL AYARLAR (RESET) --- */
:root {
    --primary-red: #e50914; /* Netflix Kırmızısı */
    --bg-light: #ffffff;
    --bg-dark: #141414;
    --text-dark: #333333;
    --text-light: #f5f5f5;
    --gray: #808080;
}
.logo {
            font-size: 24px;
            font-weight: bold;
            color: var(--primary-red);
            display: flex;
            align-items: center;
        }
        
        .logo span {
            color: var(--text-dark);
        }
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    color: var(--text-dark);
    background-color: var(--bg-light);
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

ul {
    list-style: none;
}

/* --- HEADER (ÜST MENÜ) --- */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.brand-container {
    display: flex;
    align-items: center;
    gap: 10px;
}

.brand-logo {
    width: 40px;
    height: 40px;
}

.brand-text {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    letter-spacing: -0.5px;
}

.brand-text span {
    color: var(--primary-red);
}

nav ul {
    display: flex;
    gap: 30px;
}

nav ul li a {
    font-weight: 500;
    color: #555;
    font-size: 16px;
}

nav ul li a:hover, 
nav ul li a.active-link {
    color: var(--primary-red);
}

/* Header'daki Install Butonu */
.btn-install {
    background-color: var(--primary-red);
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: bold;
    font-size: 14px;
}

.btn-install:hover {
    background-color: #b20710;
}

/* --- HERO SECTION (GİRİŞ) --- */
.hero {
    text-align: center;
    padding: 80px 20px 40px; /* Alt boşluğu biraz azalttık */
    max-width: 1000px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero p {
    font-size: 20px;
    color: #666;
    max-width: 700px;
    margin: 0 auto 40px;
}

.hero-btn {
    display: inline-block;
    background-color: var(--primary-red);
    color: white;
    padding: 15px 40px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: bold;
    box-shadow: 0 5px 15px rgba(229, 9, 20, 0.3);
}

.hero-btn:hover {
    background-color: #b20710;
    transform: translateY(-2px);
}

.hero-subtext {
    margin-top: 15px;
    font-size: 14px;
    color: #999;
}

/* Hero GIF (Ana Sayfa Animasyonu) */
.hero-visual {
    margin-top: 60px;
    width: 100%;
    display: flex;
    justify-content: center;
}

.app-demo-gif {
    /* GIF'in burada görünmemesini istedik çünkü aşağıya taşıdık. 
       Eğer yukarıda da kalsın istersen display:block yap */
    display: none; 
}

/* --- PLATFORMLAR BÖLÜMÜ (SİYAH ALAN - YENİ GIF YERİ) --- */
.platforms-gif-container {
    background-color: #141414; /* Koyu Siyah */
    padding: 80px 20px;
    color: #fff;
    margin-top: 50px;
}

/* Container genişliğini biraz artırıyoruz ki 4 kutu rahat sığsın */
.container {
    max-width: 1300px; 
    margin: 0 auto;
}

/* Izgara yapısını 'Zorla 4 tane yan yana yap' şeklinde değiştiriyoruz */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* BURASI ÖNEMLİ: 4 eşit parça */
    gap: 20px; /* Aradaki boşluğu biraz azalttık */
}

/* Kutu içindeki yazıların taşmaması için fontu biraz dengeleyelim */
.step {
    background: var(--white);
    padding: 20px; /* İç boşluğu biraz azalttık */
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

/* MOBİL AYARI: Eğer bunu eklemezsen telefonda çok sıkışık görünür */
@media (max-width: 1024px) {
    .steps-grid {
        grid-template-columns: repeat(2, 1fr); /* Tablette 2 üstte 2 altta olsun */
    }
}

@media (max-width: 600px) {
    .steps-grid {
        grid-template-columns: 1fr; /* Telefondan hepsi alt alta olsun */
    }
}
.flex-layout {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

/* Sol Taraf: GIF */
.gif-side {
    flex: 1.2; /* Biraz daha geniş olsun */
    display: flex;
    justify-content: center;
}

.platform-gif {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.6); /* Siyah zemin üstüne gölge */
    border: 1px solid #333;
}

/* Sağ Taraf: Logolar */
.logos-side {
    flex: 0.8;
}

.platform-title {
    font-size: 36px;
    margin-bottom: 40px;
    font-weight: bold;
}

.platform-logos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 Yan yana */
    gap: 40px 20px;
    align-items: center;
}

.platform-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    transition: transform 0.2s;
}

.platform-item:hover {
    transform: scale(1.05);
}

.platform-item img {
    max-width: 100%;
    max-height: 45px; 
    object-fit: contain;
}

.status-text {
    font-size: 12px;
    color: #888;
    margin-top: 5px;
}

.status-text.soon {
    color: #555;
    font-style: italic;
}

.how-it-works {
    padding: 100px 20px;
    background-color: #f9f9f9;
}

.section-title {
    text-align: center;
    font-size: 32px;
    margin-bottom: 60px;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); 
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.step {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    text-align: center;
    position: relative;
}

.step-number {
    font-size: 50px;
    font-weight: 900;
    color: #f0f0f0;
    position: absolute;
    top: 10px;
    left: 20px;
    z-index: 0;
}

.step h3 {
    position: relative;
    z-index: 1;
    margin-top: 20px;
    margin-bottom: 15px;
    font-size: 20px;
}

.step p {
    position: relative;
    z-index: 1;
    color: #666;
    font-size: 14px;
}

/* --- DOWNLOAD --- */
.download-section {
    padding: 80px 20px;
    background-color: #fcfcfc;
    text-align: center;
    min-height: 70vh;
}

.download-subtitle {
    font-size: 18px;
    color: #666;
    margin-bottom: 50px;
}

.os-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.os-card {
    background: white;
    border: 1px solid #eee;
    padding: 40px 30px;
    border-radius: 15px;
    width: 300px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.os-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-color: var(--primary-red);
}

.os-icon {
    font-size: 50px;
    margin-bottom: 20px;
}

.version-tag {
    background-color: #f0f0f0;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 12px;
    color: #555;
    font-weight: bold;
    margin-bottom: 25px;
}

.os-btn {
    background-color: #fff;
    color: var(--primary-red);
    border: 2px solid var(--primary-red);
    padding: 12px 25px;
    border-radius: 6px;
    font-weight: bold;
    width: 100%;
    box-sizing: border-box;
    display: inline-block;
    transition: all 0.3s ease;
    cursor: pointer;
}

.os-btn:hover {
    background-color: var(--primary-red);
    color: #fff;
}

.outline-btn {
    background-color: transparent;
    border: 2px solid var(--gray);
    color: var(--gray);
}

.outline-btn:hover {
    border-color: var(--text-dark);
    color: var(--text-dark);
    background-color: transparent;
}

/* --- SUPPORT SAYFASI --- */
.support-hero {
    background-color: #f4f4f4;
    padding: 80px 20px;
    text-align: center;
}

.support-hero h1 {
    font-size: 36px;
    margin-bottom: 30px;
}

.search-box {
    width: 100%;
    max-width: 600px;
    padding: 15px 20px;
    font-size: 16px;
    border: 2px solid #ddd;
    border-radius: 50px;
    outline: none;
    transition: 0.3s;
}

.search-box:focus {
    border-color: var(--primary-red);
    box-shadow: 0 0 10px rgba(229, 9, 20, 0.1);
}
.faq-section { padding: 60px 20px; max-width: 900px; margin: 0 auto; }
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; margin-top: 40px; }
.faq-item { background: white; padding: 25px; border-radius: 10px; border: 1px solid #eee; }
.contact-box { text-align: center; margin-top: 50px; padding: 30px; background: white; border: 1px solid #eee; border-radius: 10px; }
.contact-btn { background: #333; color: white; padding: 10px 25px; border-radius: 5px; display: inline-block; margin-top: 15px; }


/* --- YASAL SAYFALAR (LEGAL) --- */
.legal-section {
    padding: 60px 20px;
    background-color: #fff;
    min-height: 80vh;
}

.legal-container {
    max-width: 800px;
    margin: 0 auto;
}

.legal-container h1 {
    border-bottom: 2px solid #eee;
    padding-bottom: 20px;
    margin-bottom: 20px;
}

.legal-container h2 {
    color: var(--primary-red);
    margin-top: 30px;
    font-size: 20px;
}

.legal-container p, .legal-container li {
    color: #444;
    margin-bottom: 10px;
}

/* --- FOOTER --- */
footer {
    background-color: #fff;
    border-top: 1px solid #eee;
    padding: 40px 20px;
    text-align: center;
    color: #666;
    margin-top: auto; /* Sayfanın en altına it */
}

.footer-links {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.footer-links a {
    font-size: 14px;
    color: #555;
}

.footer-links a:hover {
    text-decoration: underline;
}

/* --- RESPONSIVE (MOBİL UYUM) --- */
@media (max-width: 900px) {
    header {
        padding: 15px 20px;
    }

    nav {
        display: none; /* Mobilde menüyü gizleyelim (basitlik için) */
    }

    .hero h1 {
        font-size: 32px;
    }

    /* Platformları Alt Alta Al */
    .flex-layout {
        flex-direction: column;
        text-align: center;
    }

    .platform-title {
        text-align: center;
        margin-top: 30px;
    }

    /* Adımları Alt Alta Al */
    .steps-grid {
        grid-template-columns: 1fr;
    }
    
    /* FAQ Alt Alta */
    .faq-grid {
        grid-template-columns: 1fr;
    }
}
/* PREMIUM SAYFASI STİLLERİ */
.premium-hero {
    background-color: #111;
    color: white;
    text-align: center;
    padding: 100px 20px;
    background-image: linear-gradient(45deg, #111 0%, #2a0a0c 100%);
}

.premium-badge {
    background: linear-gradient(90deg, #ffd700, #ffaa00);
    color: #000;
    display: inline-block;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 12px;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.premium-hero h1 {
    font-size: 48px;
    margin: 0 0 20px 0;
}

.premium-btn {
    background: linear-gradient(90deg, #ffd700, #ffaa00);
    color: #000;
    padding: 15px 40px;
    border-radius: 30px;
    font-weight: bold;
    font-size: 18px;
    display: inline-block;
    margin-top: 30px;
    transition: transform 0.3s;
}

.premium-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
}

.premium-features {
    padding: 80px 20px;
    background-color: #fcfcfc;
}

.feature-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.p-card {
    background: white;
    border: 1px solid #eee;
    padding: 30px;
    border-radius: 12px;
    width: 250px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.p-card h3 {
    color: #333;
}

/* DESTEK (SUPPORT) SAYFASI STİLLERİ */
.support-hero {
    background-color: var(--primary-red);
    color: white;
    text-align: center;
    padding: 80px 20px;
}

.search-box {
    width: 100%;
    max-width: 500px;
    padding: 15px 20px;
    border-radius: 30px;
    border: none;
    font-size: 16px;
    margin-top: 20px;
    outline: none;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.faq-section {
    padding: 60px 20px;
    background: #f9f9f9;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.faq-item {
    background: white;
    padding: 25px;
    border-radius: 8px;
    border-left: 4px solid var(--primary-red);
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.faq-item h3 {
    margin-top: 0;
    font-size: 18px;
    color: #333;
}

.contact-box {
    text-align: center;
    margin-top: 60px;
    padding: 40px;
    background: white;
    border-radius: 10px;
    border: 1px solid #eee;
}

.contact-btn {
    display: inline-block;
    background: #333;
    color: white;
    padding: 10px 25px;
    border-radius: 5px;
    margin-top: 15px;
}

.steps-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
        }

        .step {
            background: ;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }

        .step-number {
            font-size: 40px;
            font-weight: bold;
            color: #ddd;
            margin-bottom: 15px;
        }

        .step h3 {
            font-size: 20px;
            margin-bottom: 15px;
        }

        .step p {
            color: var(--text-light);
            font-size: 16px;
        }