*{
    box-sizing:border-box;
}

body{
    margin:0;
    font-family:Arial,sans-serif;
    background:#f5f7fb;
    color:#1f2937;
}

.container{
    max-width:1200px;
    margin:0 auto;
    padding:24px;
}

.hero{
    background:#fff;
    border-radius:18px;
    padding:24px 28px;
    box-shadow:0 8px 24px rgba(0,0,0,.06);
    margin-bottom:24px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:24px;
}

.hero-left{
    flex:1;
}

.hero-right{
    flex-shrink:0;
}

.hero h1{
    margin:0 0 8px;
    font-size:32px;
}

.hero p{
    margin:0;
    color:#6b7280;
    line-height:1.45;
}

.links{
    margin-top:14px;
    font-size:14px;
    color:#6b7280;
}

.links a{
    color:#111827;
}

.ad-banner{
    width:728px;
    height:90px;
    border-radius:10px;
    background:linear-gradient(135deg,#e5e7eb,#d1d5db);
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:700;
    color:#374151;
    box-shadow:0 4px 12px rgba(0,0,0,.08);
    overflow:hidden;
}

.ad-banner-link{
    display:block;
    width:100%;
    height:100%;
}

.ad-banner-img{
    width:100%;
    height:100%;
    object-fit:cover;
    border-radius:10px;
    display:block;
}

.place-photo-card{
    background:#fff;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 8px 24px rgba(0,0,0,.06);
    margin-bottom:24px;
}

.place-photo-card img{
    width:100%;
    height:320px;
    object-fit:cover;
    display:block;
}

.info-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
    margin-bottom:24px;
}

.info-card{
    background:#fff;
    border-radius:18px;
    box-shadow:0 8px 24px rgba(0,0,0,.06);
    overflow:hidden;
    min-height:220px;
}

.info-card-header{
    padding:18px 20px 8px;
    font-size:20px;
    font-weight:700;
}

.info-card-body{
    padding:0 20px 20px;
}

.info-card-body-no-padding{
    padding:0;
}

.schedule-list{
    display:flex;
    flex-direction:column;
    gap:10px;
    margin-top:8px;
}

.schedule-row{
    display:flex;
    justify-content:space-between;
    gap:12px;
    font-size:14px;
    color:#374151;
    padding-bottom:8px;
    border-bottom:1px solid #f1f5f9;
}

.schedule-row:last-child{
    border-bottom:none;
}

.today-row{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:12px;
    font-size:14px;
    color:#6b7280;
    margin-bottom:14px;
}

.today-row strong{
    color:#111827;
    text-align:right;
    white-space:nowrap;
}

.today-badge{
    display:inline-flex;
    align-items:center;
    gap:8px;
    margin-top:8px;
    margin-bottom:14px;
    padding:8px 12px;
    border-radius:999px;
    font-size:13px;
    font-weight:700;
}

.today-badge.open{
    background:#dcfce7;
    color:#166534;
}

.today-badge.closed{
    background:#fee2e2;
    color:#991b1b;
}

.dot{
    width:10px;
    height:10px;
    border-radius:50%;
    display:inline-block;
    background:currentColor;
}

.map-frame{
    width:100%;
    height:100%;
    min-height:220px;
    border:0;
    display:block;
    pointer-events:none;
}

.map-actions{
    padding:14px 20px 20px;
    display:flex;
    justify-content:center;
}

.map-link-btn{
    display:inline-block;
    text-decoration:none;
    background:#111827;
    color:#fff;
    padding:10px 14px;
    border-radius:10px;
    font-size:14px;
    font-weight:700;
}

.promo-box{
    height:220px;
    border-radius:14px;
    overflow:hidden;
    background:linear-gradient(135deg,#e5e7eb,#d1d5db);
    display:flex;
    align-items:center;
    justify-content:center;
    color:#6b7280;
    font-size:16px;
    text-align:center;
}

.promo-link{
    display:block;
    width:100%;
    height:100%;
}

.promo-box img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
    transition:transform .25s ease;
}

.promo-box:hover img{
    transform:scale(1.03);
}

.grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
}

.card{
    background:#fff;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 8px 24px rgba(0,0,0,.06);
    display:flex;
    flex-direction:column;
    transition:transform .22s ease, box-shadow .22s ease;
    will-change:transform;
}

.card:hover{
    transform:translateY(-6px);
    box-shadow:0 18px 38px rgba(0,0,0,.12);
}

.thumb{
    height:180px;
    background:linear-gradient(135deg,#f3f4f6,#e5e7eb);
    display:flex;
    align-items:center;
    justify-content:center;
    color:#6b7280;
    font-size:14px;
    overflow:hidden;
}

.thumb img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
    transition:transform .35s ease;
}

.card:hover .thumb img{
    transform:scale(1.04);
}

.content{
    padding:18px;
    display:flex;
    flex-direction:column;
    gap:10px;
    flex:1;
}

.title{
    font-size:22px;
    font-weight:700;
    margin:0;
}

.desc{
    font-size:14px;
    line-height:1.6;
    color:#6b7280;
    min-height:72px;
}

.meta{
    display:flex;
    align-items:center;
    justify-content:space-between;
    margin-top:12px;
    gap:10px;
}

.duration{
    background:#eef2f7;
    padding:6px 10px;
    border-radius:999px;
    font-size:13px;
    color:#374151;
}

.price{
    font-size:22px;
    font-weight:800;
    color:#111827;
    text-align:center;
    flex:1;
}

.badge{
    font-size:12px;
    font-weight:700;
    padding:6px 10px;
    border-radius:999px;
    white-space:nowrap;
}

.status-open{
    background:#dcfce7;
    color:#166534;
}

.status-closed{
    background:#fee2e2;
    color:#991b1b;
}

.actions{
    margin-top:auto;
}

.btn{
    display:inline-block;
    width:100%;
    text-align:center;
    background:#111827;
    color:#fff;
    text-decoration:none;
    padding:14px 16px;
    border-radius:12px;
    font-weight:700;
    transition:transform .18s ease, box-shadow .18s ease, background-color .18s ease;
}

.btn:hover{
    transform:translateY(-2px);
    box-shadow:0 10px 22px rgba(0,0,0,.18);
}

.btn:active{
    transform:translateY(0);
}

.section-divider{
    margin:10px 0 24px;
    width:100%;
}

.section-divider h2{
    margin:0;
    padding:16px 20px;
    background:#111827;
    color:#fff;
    border-radius:14px;
    font-size:20px;
    font-weight:700;
    text-align:center;
    letter-spacing:.5px;
}

.site-footer {
    text-align: center;
    padding: 20px;
    font-size: 13px;
    color: #888;
    border-top: 1px solid #eee;
    margin-top: 20px;
    background: #fafafa;
}

.site-footer a {
    color: #000;
    font-weight: 500;
    text-decoration: none;
}

.site-footer a:hover {
    text-decoration: underline;
}


@media (max-width:980px){
    .grid{
        grid-template-columns:repeat(2,1fr);
    }

    .info-grid{
        grid-template-columns:1fr;
    }

    .hero{
        flex-direction:column;
        align-items:flex-start;
    }

    .ad-banner{
        width:100%;
        height:auto;
    }
}

@media (max-width:640px){
    .grid{
        grid-template-columns:1fr;
    }

    .hero h1{
        font-size:26px;
    }

    .hero-right{
        display:none;
    }

    .place-photo-card img{
        height:220px;
    }
}