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

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #f4f4f4;
    color: #3d1d06;
}


.header {
    color: #8b4513;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header__title {
    font-size: 1.8rem;
}

.header__button {
    background-color: #c5763d;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    transition: 0.3s;
}

.header__button:hover {
    background-color: #8b4513;
}


.hero {
    position: relative;
    height: 700px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
}


.hero img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.cast {
    padding: 40px 20px;
    background-color: #fff;
}

.cast__title {
    font-size: 2rem;
    margin-bottom: 20px;
    text-align: center;
}

.cast__list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.cast__item {
    text-align: center;
    width: 150px;
}

.cast__photo {
    width: 150px;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 10px;
}


.accordion {
    padding: 40px 20px;
    background-color: #f9f9f9;
}

.accordion__title {
    font-size: 2rem;
    margin-bottom: 20px;
    text-align: center;
}

.accordion__item {
    margin-bottom: 10px;
    border: 1px solid #8b4513;
    border-radius: 5px;
    overflow: hidden;
}

.accordion__header {
    background-color: #f4f4f4;
    cursor: pointer;
    padding: 15px;
    font-weight: bold;
}

.accordion__header:hover {
    background-color: #d18751;
}

.accordion__content {
    display: none;
    padding: 15px;
    background-color: #fff;
}


.trailer {
    padding: 40px 20px;
    text-align: center;
    background-color: #fff;
}

.trailer__title {
    font-size: 2rem;
    margin-bottom: 20px;
}

.trailer__video {
    width: 100%;
    max-width: 800px;
    height: 450px;
    border: none;
}

.synopsis {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px 20px;
    max-width: 100%;
}

.synopsis__title {
    font-size: 2rem;
    margin-bottom: 20px;
}

.synopsis__text {
    text-align: center;
    font-size: 1.2rem;
    line-height: 1.5;
    margin: 0 auto;
    color: #aa5c24;
}

.streaming {
    padding: 40px 20px;
    text-align: center;
    background-color: #f9f9f9;
}

.streaming__title {
    font-size: 2rem;
    margin-bottom: 20px;
}

.streaming__buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.streaming__button {
    background-color: #c5763d;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    transition: 0.3s;
}

.streaming__button:hover {
    background-color: #8b4513;
}


.gallery {
    padding: 40px 20px;
    background-color: #fff;
}

.gallery__title {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 20px;
}

.gallery__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.gallery__image {
    width: 100%;
    border-radius: 8px;
}

.footer {
    color: #8b4513;
    text-align: center;
    padding: 20px;
    }

    @media (max-width: 768px) {
        .header {
            flex-direction: column;
            gap: 10px;
        }

        .hero img {
            max-width: 100%;
            height: auto;
        }

        .hero__text {
            width: 100%;
            padding: 0 20px;
        }
    }