.header-content {
    text-align: center;
    height: auto;
    padding: 10px;
    background-color: #c0c6fd;
}
main {
    background-image:url('../img/production/1.jpg');
    width: 100%;
    height: auto;
    background-size: cover;
}
.main-section {
    max-width: 1440px;
    height: auto;
    text-align: center;
    margin: 0 auto;
    padding: 20px;
}
.main-section h2 {
    font-size: 2.5em;
    color: #FFF;
    margin: 50px auto;
}
.main-section h3 {
    font-size: 1.5em;
    color: black;
    font-weight: bold;
    margin: 20px auto;
}
.main-section p {
    font-size: 1.2em;
    font-weight: bold;
    color: #FFF;
    margin: 20px auto;
    background-color: rgb(0, 0, 0);
    padding: 10px;
    width: 100%;
}
.content-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding: 20px;
}
.item {
    background-color: #d1e5ff;
    border-radius: 8px;
    text-align: center;
    max-width: 500px;
    height: auto;
}
.item:hover {
    background-color: #b0c4ff;
    transition: background-color 0.3s ease;
}
.card {
    position: relative;
    overflow: hidden;
}
.card img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    padding: 10px;
}
.card-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    border-radius: 8px;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}
.card:hover .card-overlay {
    opacity: 1;
}
.play-btn {
    background: #5c85ff;
    color: #fff;
    border: none;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 1.2em;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}
.play-btn:hover {
    background: #0044ff;
}
footer {
    background-color: #c0c6fd;
    text-align: center;
    padding: 20px;
    bottom: 0;
    width: 100%;
    height: auto;
}
@media screen and (max-width: 1440px) {
    .content-grid {
    grid-template-columns: repeat(2, 1fr);
}
    main {
    width: 100%;
    height: auto;
    background-size: cover;
}
}
@media screen and (max-width: 700px) {
    .content-grid {
        grid-template-columns: 1fr;
        gap: 10px;
        padding: 0;
    }
    .main-section {
        width: 100%;
        padding: 10px;
    }
    .item {
    max-width: 100%;
    height: auto;
}
}