*,
*::after,
*::before {
    box-sizing: border-box;
}
nav{
    background-color: #1f1f1f;
    padding: 0.75rem 1rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin: 1rem 0 2rem 0;
}
nav a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 0.4rem 0.8rem;
    border-radius: 8px;
    transition: all 0.2s ease;
}
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: radial-gradient(circle at top, #2b2b2b 0%, #111 60%, #000 100%);
    color: #fff;
}

form {
    background: white;
    padding: 20px;
    border-radius: 12px;
    max-width: 500px;
    margin: auto;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

form input,
form textarea,
form button {
    width: 100%;
    margin-top: 10px;
    margin-bottom: 20px;
    padding: 10px;
    border-radius: 8px;
    border: 1px solid #ccc;
    box-sizing: border-box;
}

form button {
    background: #111;
    color: white;
    cursor: pointer;
    border: none;
}

form button:hover {
    background: #333;
}

/* CARTE */
.detail-playbill {
    background: white;
    width: 350px;
    margin: 40px auto;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
}

.detail-playbill:hover {
    transform: translateY(-5px);
}

.detail-playbill img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.detail-playbill h2 {
    padding: 15px;
    margin: 0;
    font-size: 24px;
}

.detail-playbill p {
    padding: 0 15px 15px 15px;
}


details {
    max-width: 600px;
    margin: 30px auto;
    background-color: white;
    padding: 10px;
}
details p{
    color: black;
}
