/* Genel gövde ve arkaplan */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    background-color: #141414;
    color: #e5e5e5;
}

/* Üst başlık (header) */
header {
    background-color: #000;
    color: #e50914;
    padding: 20px;
    text-align: center;
    font-size: 26px;
    font-weight: bold;
    letter-spacing: 1px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.6);
}

/* Header içindeki emoji ve metin hizası */
header h1 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 26px;
    margin: 0;
}

/* Ana konteyner */
.container {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: 800px;
    margin: auto;
}

/* Film başlık ayırıcı (film-separator) */
.film-separator {
    background: #e50914;
    color: #fff;
    font-weight: bold;
    font-size: 15px;
    padding: 10px 14px;
    border-radius: 10px 10px 0 0;
    margin: 0 0 -10px 0; /* film kartıyla birleşik dursun */
}

/* Film kartı */
.film-card {
    background: #1c1c1c;
    border-radius: 0 0 12px 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.6);
    text-align: center;
    transition: transform 0.2s ease-in-out;
    margin-bottom: 30px; /* her kartın altına boşluk */
}

.film-card:hover {
    transform: scale(1.02);
}

/* Film görseli */
.film-card img {
    width: 100%;
    height: auto;
    border-radius: 12px 12px 0 0;
    display: block;
}

/* Film başlığı */
.film-card h2 {
    font-size: 20px;
    margin: 15px 0 10px;
    color: #fff;
}

/* Buton alanı */
.button-area {
    padding: 0 0 20px;
}

/* Buton stili */
.btn {
    display: inline-block;
    padding: 10px 22px;
    background: #e50914;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    font-size: 15px;
    transition: background 0.3s ease;
}

.btn:hover {
    background: #b00610;
}

/* Footer */
footer {
    text-align: center;
    padding: 25px 10px;
    font-size: 13px;
    color: #777;
    background-color: #000;
    border-top: 1px solid #333;
    margin-top: 30px;
}

/* Mobil uyum */
@media (max-width: 600px) {
    header h1 {
        font-size: 22px;
        flex-direction: column;
        gap: 5px;
    }

    .film-card h2 {
        font-size: 18px;
    }

    .btn {
        padding: 9px 18px;
        font-size: 14px;
    }

    .container {
    padding: 15px;
    display: flex;
    flex-direction: column;
    gap: 10px; /* 18 yerine daha az boşluk */
}
    }

    .film-separator {
        font-size: 14px;
        padding: 8px 12px;
    }
}