* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background: linear-gradient(135deg, #546745 0%, #4E351E 100%);
    min-height: 100vh;
    color: #4E351E;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
}

h1 {
    text-align: center;
    color: #F7F6E3;
    font-size: 2.3rem;
    margin-bottom: 30px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.pelicula {
    background: #F7F6E3;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(78, 53, 30, 0.3);
    margin: 20px 0;
    transition: transform 0.3s ease;
    border: 2px solid #546745;
}

.pelicula:hover {
    transform: translateY(-5px);
}

.pelicula h2 {
    color: #4E351E;
    font-size: 2rem;
    margin-bottom: 20px;
    text-align: center;
}

.pelicula-content {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.pelicula img {
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    flex-shrink: 0;
}

.pelicula-info {
    flex: 1;
}

.overview {
    font-size: .9rem;
    line-height: 1.6;
    margin-bottom: 20px;
    text-align: justify;
    color: #4E351E;
}

.detalles {
    background: rgba(84, 103, 69, 0.1);
    padding: 15px;
    border-radius: 8px;
    border-left: 4px solid #546745;
}

.detalles p {
    margin-bottom: 10px;
    font-size: 1rem;
}

.detalles p:last-child {
    margin-bottom: 0;
}

.detalles strong {
    color: #546745;
}

/* Estilos para el formulario */
form {
    margin-top: 25px;
    padding: 20px;
    background: rgba(84, 103, 69, 0.05);
    border-radius: 10px;
    border: 1px solid #546745;
}

form label {
    display: block;
    margin-top: 15px;
    margin-bottom: 5px;
    font-weight: bold;
    color: #546745;
}

form label:first-child {
    margin-top: 0;
}

form input[type="number"],
form textarea {
    width: 100%;
    padding: 10px;
    border: 2px solid #546745;
    border-radius: 5px;
    background: #F7F6E3;
    color: #4E351E;
    font-family: inherit;
    font-size: 1rem;
}

form input[type="number"]:focus,
form textarea:focus {
    outline: none;
    border-color: #4E351E;
    box-shadow: 0 0 5px rgba(84, 103, 69, 0.3);
}

form textarea {
    resize: vertical;
    min-height: 80px;
}

button {
    margin-top: 15px;
    padding: 12px 30px;
    background: #546745;
    color: #F7F6E3;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

form button:hover {
    background: #4E351E;
}

form button:active {
    transform: translateY(1px);
}

/* Responsive design */
@media (max-width: 768px) {
    .container {
        padding: 15px;
    }
    
    h1 {
        font-size: 2rem;
        margin-bottom: 20px;
    }
    
    .pelicula {
        padding: 20px;
    }
    
    .pelicula-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .pelicula img {
        max-width: 250px;
        margin: 0 auto;
    }
    
    .pelicula h2 {
        font-size: 1.5rem;
    }
    
    .overview {
        text-align: left;
    }
}