*,
*::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;
}

.detail-playbill {
    max-width: 1000px;
    margin: 40px auto;
    padding: 30px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(6px);
}


.detail-playbill img {
  max-height: 300px;
  width: auto;
}

.detail-playbill h1 {
    text-align: center;
    margin: 10px 0 20px;
    font-size: 2.2rem;
}

.detail-playbill h2 {
    margin-top: 28px;
    margin-bottom: 10px;
    font-size: 1.3rem;
    border-left: 4px solid #f2c14e;
    padding-left: 10px;
}

.detail-playbill p {
    line-height: 1.6;
    margin: 8px 0;
    color: #f0f0f0;
}

.detail-playbill strong {
    color: #f2c14e;
}


.map-container {
    margin-top: 1rem;
    border-radius: 10px;
    width:100%;
    height:200;
   
}