/*
==================================================
TÜRKÇE CSS STİLLERİ - FÜL FÜL OYUN PUANLAMA KULÜBÜ
Stil: Profesyonel, Kontrastlı, Online Muhasebe/Kurumsal
==================================================
*/

/* --- 1. Temel Ayarlar ve Fontlar --- */

/* Google fontları kullanılmayacaktır. Yerel ve yaygın sistem fontları tercih edilmiştir. */
/* Tahoma, Arial, 'Helvetica Neue', Helvetica - Kurumsal ve okunaklı bir görünüm sağlar. */
body {
    font-family: Tahoma, Arial, 'Helvetica Neue', Helvetica, sans-serif;
    color: #333; /* Koyu gri, okunaklı metin rengi */
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: #f4f7f6; /* Açık gri dış zemin */
}

/* Sayfa ortalama ve maksimum genişlik ayarı */
body > * {
    max-width: 1090px;
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box; /* Padding ve border'ın genişliğe dahil olmasını sağlar */
}

/* --- 2. Başlık ve Genel Yapı --- */

h1, h2, h3, h4 {
    font-weight: bold;
    color: #1a4d6b; /* Koyu Kurumsal Mavi */
    margin-top: 0.5em;
    margin-bottom: 0.5em;
}

h2 {
    font-size: 2em;
    border-bottom: 2px solid #e0e0e0;
    padding-bottom: 0.2em;
}

hr {
    border: none;
    height: 1px;
    background-color: #ddd;
    margin: 30px auto;
    max-width: 90%;
}

/* --- 3. Blok Stil ve Kontrast Ayarları --- */

section {
    padding: 40px 20px; /* İç boşluk */
    margin-bottom: 20px; /* Bloklar arası boşluk */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    border-radius: 8px;
}

/* Block 1: Teklif Bloğu - Yüksek kontrastlı arka plan */
#teklif {
    background-color: #1a4d6b; /* Koyu Kurumsal Mavi */
    color: #ffffff; /* Beyaz metin */
    min-height: 470px; /* Minimum yükseklik şartı */
    display: flex;
    flex-direction: column;
    justify-content: center; /* İçeriği dikeyde ortalar */
    align-items: flex-start;
    padding-top: 60px;
    padding-bottom: 60px;
}
#teklif h2, #teklif p {
    color: #ffffff;
}

/* Block 5: Yorumlar - Açık renk, hafif gri */
#yorumlar {
    background-color: #ffffff;
}
#yorumlar blockquote {
    border-left: 5px solid #00a880; /* Canlı yeşil (finansal başarı rengi) */
    padding-left: 15px;
    margin: 15px 0;
    font-style: italic;
}
#yorumlar footer {
    text-align: right;
    font-weight: bold;
    color: #4a7c8e;
}

/* Block 4.1: Eğitim/Medya - Orta tonlu arka plan */
#egitim-medya {
    background-color: #f0f8ff; /* Çok Açık Mavi */
    border: 1px solid #d9e7f1;
}

/* Block 2: Abonelik Formu - Canlı renkli arka plan */
#kayit-formu {
    background-color: #00a880; /* Canlı Yeşil - Eylem çağrısı için ideal */
    color: #ffffff;
    text-align: center;
}
#kayit-formu h3, #kayit-formu p, #kayit-formu label {
    color: #ffffff;
}

/* Block 4: Uzmanlar - Beyaz zemin */
#uzmanlar {
    background-color: #ffffff;
}
#uzmanlar li {
    background-color: #f7f7f7;
    padding: 15px;
    margin-bottom: 10px;
    border-left: 4px solid #1a4d6b;
    border-radius: 4px;
    list-style: none; /* Noktaları kaldır */
}
#uzmanlar ul {
    padding-left: 0;
}

/* Block 3: Ürünler ve Makale - Açık mavi ton */
#urunler {
    background-color: #e6f1f8; /* Açık Mavi */
}

/* Block 6: İletişim ve Harita */
#iletisim {
    background-color: #ffffff;
}
#iletisim iframe {
    border: 1px solid #ccc;
    margin-top: 15px;
    border-radius: 4px;
}

/* --- 4. Buton ve Bağlantı Stilleri --- */

/* Genel Buton Stili (Abone Ol butonu için) */
button[type="submit"] {
    background-color: #1a4d6b; /* Koyu Kurumsal Mavi */
    color: #ffffff;
    border: none;
    padding: 12px 25px;
    font-size: 1.1em;
    font-weight: bold;
    cursor: pointer;
    border-radius: 6px;
    transition: background-color 0.3s ease;
    margin-top: 15px;
}

button[type="submit"]:hover {
    background-color: #0d2c47;
}

/* Block 1'deki Link-Buton Stili (Anchor) */
.button {
    display: inline-block;
    background-color: #ff9900; /* Canlı Turuncu/Sarı - Dikkat çekici */
    color: #1a4d6b; /* Turuncu üzerinde Koyu Mavi metin */
    padding: 15px 30px;
    font-size: 1.2em;
    font-weight: bold;
    text-decoration: none; /* Alt çizgiyi kaldır */
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s, background-color 0.3s;
    margin-top: 25px;
}

.button:hover {
    background-color: #e68a00;
    transform: translateY(-2px); /* Hafif yukarı kalkma efekti */
}

/* --- 5. Form Stilleri --- */

form {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 400px;
    margin: 20px auto;
    padding: 20px;
}

label {
    margin-top: 10px;
    font-weight: bold;
    text-align: left;
    width: 100%;
}

input[type="email"] {
    width: 100%;
    padding: 12px;
    margin-top: 5px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    font-size: 1em;
}

/* --- 6. Tablo Stilleri (Ürünler) --- */

table {
    width: 100%;
    border-collapse: collapse; /* Kenarlıkları birleştir */
    margin-top: 20px;
    background-color: #ffffff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    border-radius: 6px;
    overflow: hidden; /* Köşe yuvarlaklığını korur */
}

th, td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

th {
    background-color: #1a4d6b; /* Başlıklar Koyu Mavi */
    color: #ffffff;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 0.9em;
}

tr:nth-child(even) {
    background-color: #f8f8f8; /* Çift satırlar için hafif gölgelendirme */
}

tr:hover {
    background-color: #f0faff; /* Mouse üzerine geldiğinde hafif mavi */
}

/* --- 7. Makale Stili (Block 3'teki "Oyun Puanlama Kulübü İle Para Kazanmaya Başlamak İçin En İyi 10 İpucu" makalesi) --- */

#urunler h4 {
    color: #ff9900; /* Makale başlığı için canlı renk */
    margin-top: 40px;
    border-bottom: 2px dashed #ff9900;
    padding-bottom: 5px;
}

#urunler p {
    text-align: justify;
    padding: 5px 0;
    margin-bottom: 15px;
}

/* --- 8. Footer (Telif Hakkı) Stili --- */

footer {
    background-color: #333; /* Koyu Gri */
    color: #eee;
    text-align: center;
    padding: 15px 20px;
    font-size: 0.9em;
    width: 100%;
}

/* --- 9. Mobil Uyumluluk (Responsive Design) --- */

@media (max-width: 768px) {
    /* Genel mobil ayarlar */
    section {
        padding: 30px 15px;
        margin-bottom: 15px;
    }

    h1 {
        font-size: 1.8em;
        text-align: center;
    }
    h2 {
        font-size: 1.5em;
        text-align: center;
    }

    /* Block 1: Teklif Bloğu */
    #teklif {
        min-height: 400px;
        align-items: center; /* İçeriği ortalar */
        text-align: center;
    }
    .button {
        font-size: 1.1em;
        padding: 12px 25px;
    }

    /* Tablo Stilleri: Mobil için yığın görünüm (Daha karmaşık ama gerekli) */
    table, thead, tbody, th, td, tr {
        display: block;
    }
    thead tr {
        position: absolute;
        top: -9999px;
        left: -9999px; /* Başlıkları gizle */
    }
    td {
        border: none;
        border-bottom: 1px solid #eee;
        position: relative;
        padding-left: 50%; /* Etiket için yer aç */
        text-align: left;
    }
    td:before {
        /* Verinin başlığını etikete dönüştür */
        content: attr(data-label);
        position: absolute;
        left: 6px;
        width: 45%;
        padding-right: 10px;
        white-space: nowrap;
        font-weight: bold;
        color: #1a4d6b;
    }
    /* HTML yapısı buna uygun olmadığı için (data-label yok) basit bir mobil tablo görünümü bırakılacaktır.
       Eğer tabloyu yığmak isteseydik, HTML'e data-label eklemek gerekirdi.
       Şimdilik sadece scroll çubuğu ile geniş tabloyu gösteriyoruz veya daha az padding kullanıyoruz. */
    table {
        display: block;
        overflow-x: auto; /* Mobil cihazlarda yatay kaydırma çubuğu */
        white-space: nowrap;
    }
    th, td {
        white-space: normal;
        padding: 10px;
    }

    /* Yorumlar */
    #yorumlar blockquote {
        padding-left: 10px;
    }
}
