
body {
    background-color: #111;
    color: #fff;
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

a {
    color: #1e90ff;
    text-decoration: none;
}

.container {
    width: 90%;
    margin: 0 auto;
    padding-top: 30px;
}

h1 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #fff;
}

.filmes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 20px;
}

.filme-card {
    background: #222;
    border: 2px solid red;
    padding: 10px;
    border-radius: 6px;
    text-align: center;
    position: relative;
    transition: transform 0.3s;
}

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

.filme-card img {
    width: 100%;
    border-radius: 4px;
}

.filme-card h2 {
    font-size: 16px;
    margin-top: 8px;
    color: #fff;
}

.destaque-label {
    position: absolute;
    top: 8px;
    left: 8px;
    background: limegreen;
    color: black;
    font-size: 12px;
    font-weight: bold;
    padding: 2px 6px;
    border-radius: 3px;
}

.filme-detalhes { background: #222; padding: 20px; border-radius: 8px; }
.filme-trailer iframe { width: 100%; max-width: 700px; height: 400px; margin: 0 auto 20px; display: block; }
.filme-capa img { width: 200px; border-radius: 6px; }
.filme-meta ul { list-style: none; padding: 0; }
.filme-meta li { margin-bottom: 8px; color: #ccc; }
.filme-compartilhar a { margin-right: 10px; color: #1e90ff; }
