body {
    margin: 0;
    font-family: 'Arial', sans-serif;
    background: black;
    color: white;
}

/* HEADER */
.header {
    position: fixed;
    width: 100%;
    background: rgba(0,0,0,0.8);
    padding: 15px;
    z-index: 10;
}

.header h1 {
    color: #e50914;
}

nav a {
    margin: 0 10px;
    color: white;
    text-decoration: none;
}

/* HERO */
.hero {
    height: 100vh;
    background: url("https://images6.alphacoders.com/321/321927.jpg") center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

.overlay {
    background: rgba(0,0,0,0.6);
    padding: 40px;
    text-align: center;
}

/* CONTENT */
.content {
    padding: 80px 20px;
    max-width: 900px;
    margin: auto;
}

/* АКТЁРЫ */
.actors {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.actor-card {
    background: #111;
    padding: 15px;
    border-radius: 10px;
    width: 200px;
    transition: 0.3s;
}

.actor-card img {
    width: 100%;
    border-radius: 10px;
}

.actor-card:hover {
    transform: scale(1.05);
}

/* FOOTER */
footer {
    text-align: center;
    padding: 20px;
    background: #111;
}

/* 📱 Адаптив */
@media (max-width: 768px) {
    .hero {
        height: 70vh;
    }

    .header {
        text-align: center;
    }

    .actors {
        flex-direction: column;
        align-items: center;
    }
}
