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

body {
    font-family: 'Segoe UI', sans-serif;
    background-color: #0f1923;
    color: #e0e0e0;
}

a {
    text-decoration: none;
    color: inherit;
}

/* HEADER - ÜST MENÜ */
header {
    background-color: #0a1520;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 40px;
    border-bottom: 3px solid #00c853;
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    color: #00c853;
}

.logo span {
    color: white;
}

nav a {
    color: #ccc;
    margin-left: 24px;
    font-size: 15px;
    transition: color 0.2s;
}

nav a:hover {
    color: #00c853;
}

/* HERO - BÜYÜK BANNER */
.hero {
    background: linear-gradient(135deg, #0a2a0f 0%, #0d1f2d 100%);
    text-align: center;
    padding: 80px 20px;
    border-bottom: 2px solid #1a3a1a;
}

.hero h1 {
    font-size: 42px;
    color: white;
    margin-bottom: 14px;
}

.hero p {
    font-size: 18px;
    color: #aaa;
    margin-bottom: 28px;
}

/* BUTONLAR */
.buton {
    background-color: #00c853;
    color: #000;
    padding: 12px 28px;
    border-radius: 6px;
    font-weight: bold;
    font-size: 16px;
    display: inline-block;
    transition: background 0.2s;
}

.buton:hover {
    background-color: #00e676;
}

.buton.kucuk {
    padding: 8px 18px;
    font-size: 14px;
}

/* ANA İÇERİK */
main {
    max-width: 1100px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* BÖLÜM BAŞLIKLARI */
.bolum {
    margin-bottom: 56px;
}

.bolum h2 {
    font-size: 22px;
    color: #00c853;
    margin-bottom: 20px;
    padding-bottom: 8px;
    border-bottom: 1px solid #1e3a1e;
}

/* HABERLER - KARTLAR */
.kart-listesi {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.kart {
    background-color: #162330;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #1e3a2e;
    transition: transform 0.2s;
}

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

.kart img {
    width: 100%;
    display: block;
}

.kart-ici {
    padding: 16px;
}

.etiket {
    background-color: #00c853;
    color: #000;
    font-size: 11px;
    font-weight: bold;
    padding: 3px 8px;
    border-radius: 4px;
    text-transform: uppercase;
}

.kart-ici h3 {
    margin: 10px 0 8px;
    font-size: 16px;
    color: white;
}

.kart-ici p {
    font-size: 14px;
    color: #999;
    line-height: 1.5;
    margin-bottom: 12px;
}

.devami {
    color: #00c853;
    font-size: 13px;
    font-weight: bold;
}

.devami:hover {
    text-decoration: underline;
}

/* MAÇ TABLOSU */
.mac-listesi {
    background-color: #162330;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #1e3a2e;
}

.mac-satir {
    display: flex;
    align-items: center;
    padding: 14px 20px;
    border-bottom: 1px solid #1e3a2e;
    gap: 12px;
}

.mac-satir:last-child {
    border-bottom: none;
}

.takim {
    flex: 1;
    font-size: 15px;
    color: white;
    font-weight: 500;
}

.takim.ev {
    text-align: right;
}

.takim.deplasman {
    text-align: left;
}

.skor {
    background-color: #0a1520;
    color: #00c853;
    font-weight: bold;
    font-size: 16px;
    padding: 6px 16px;
    border-radius: 6px;
    min-width: 80px;
    text-align: center;
}

.durum {
    font-size: 12px;
    padding: 4px 10px;
    border-radius: 4px;
    font-weight: bold;
    min-width: 60px;
    text-align: center;
}

.durum.bitti {
    background-color: #2a2a2a;
    color: #888;
}

.durum.canli {
    background-color: #3a0000;
    color: #ff4444;
}

.durum.bekliyor {
    background-color: #1a2a1a;
    color: #aaa;
}

/* OYUNLAR */
.oyun-kart {
    background-color: #162330;
    border-radius: 10px;
    padding: 28px 20px;
    text-align: center;
    border: 1px solid #1e3a2e;
    transition: transform 0.2s;
}

.oyun-kart:hover {
    transform: translateY(-4px);
    border-color: #00c853;
}

.oyun-icon {
    font-size: 48px;
    margin-bottom: 12px;
}

.oyun-kart h3 {
    color: white;
    font-size: 17px;
    margin-bottom: 8px;
}

.oyun-kart p {
    color: #888;
    font-size: 13px;
    margin-bottom: 16px;
    line-height: 1.5;
}

/* İPUÇLARI */
.ipucu-listesi {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
}

.ipucu {
    background-color: #162330;
    border-radius: 10px;
    padding: 20px;
    border-left: 4px solid #00c853;
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.ipucu-no {
    font-size: 28px;
    font-weight: bold;
    color: #00c853;
    opacity: 0.4;
    line-height: 1;
}

.ipucu p {
    font-size: 14px;
    color: #bbb;
    line-height: 1.6;
}

/* FOOTER */
footer {
    background-color: #0a1520;
    text-align: center;
    padding: 24px;
    color: #555;
    font-size: 13px;
    border-top: 2px solid #1a3a1a;
}
