﻿main {
    gap: 0;
}
.music-label-wrapper {
    gap: 0;
    background: url('/images/bg_bizmenu3.png') no-repeat top center;
    background-size: 100% auto;
    padding-bottom: 35px;
    background-color: #FEE600;
}
.okd-header {
    padding: 25px 48px 10px 48px;
}

/* =========================
   OKD SHOWBIZ PAGE
   ========================= */

.our-business {
    background: #f3f3f3;
    padding-bottom: 60px;
    font-family: 'Inter', 'Prompt', sans-serif;
}

/* ---------- Header ---------- */
.page-header {
    padding: 20px 0;
}

.back-link {
    font-weight: 700;
    color: #000;
    text-decoration: none;
    font-size: 18px;
}

/* ---------- Highlight ---------- */
.business-highlight {
    margin-bottom: 40px;
}

.highlight-box {
    background: #ffd900;
    border-radius: 20px;
    padding: 40px 48px;
    position: relative;
}

.highlight-title {
    font-size: 56px;
    font-weight: 900;
}

.highlight-desc {
    font-size: 42px;
    font-weight: 900;
}

/* =========================
   FEATURED EVENT
   ========================= */

.featured-event {
    background: #fff;
    border-radius: 24px;
    padding: 32px;
    display: flex;
    gap: 40px;
    box-shadow: 0 12px 30px rgba(0,0,0,.12);
    align-items: flex-start;
}

/* LEFT */
.featured-left {
    position: relative;
    padding-left: 1%;
    width: 50%;
}

.featured-slider {
    position: relative;
}

.featured-slider .slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.featured-slider .slide.active {
    opacity: 1;
    position: relative;
}

.featured-slider img {
    height: auto;
    border-radius: 20px;    
    max-width: 800px;
    width: 100%;
}

/* RIGHT */
.featured-right {
    width: 50%;
    padding-top: 1%;
}

.featured-right .event-title {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 16px;
}

.featured-right .event-date {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 10px;
}

.featured-right .event-venue {
    font-size: 36px;
    margin-bottom: 24px;
}

.featured-right .event-desc {
    font-size: 24px;
    margin-bottom: 10px;
    padding-left: 1%;
    padding-right: 2%;
}

.featured-right .event-vdo {
    display: flex;
    justify-content: center;
    padding: 3% 2% 1% 1%;
}

/* responsive */
@media (max-width: 991px) {
    .featured-event {
        flex-direction: column;
    }

    .featured-left,
    .featured-right {
        width: 100%;
    }

    .featured-right .event-title {
        font-size: 28px;
    }
    .featured-right .event-date {
        font-size: 28px;
    }
    .featured-right .event-venue {
        font-size: 28px;
    }
}

/* =========================
   SHOWBIZ MENU SECTION
   ========================= */

.showbiz-menu-section {
    position: relative;
    z-index: 5;
    background-color: #FEE600;
}

/* ---------- Black Curved Background ---------- */
.showbiz-black-bg {
    padding-top: 10px;
    padding-bottom: 0;
    text-align: center;
}

/* ---------- Social ---------- */
.showbiz-social {    
    align-items: center;
    text-align: center;
    margin-top: 35px;
    margin-bottom: 35px;
}

.social-circle {
    width: 42px;
    height: 42px;
    background: #000;
    color: #fff;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 6px;
    font-size: 24px;
    text-decoration: none;
}

.social-sep {
    color: #000;
    margin: 0 14px;
    font-size: 24px;
    font-weight: 700;
}

.social-text {
    color: #000;
    font-weight: 800;
    font-size: 24px;
    letter-spacing: .6px;
}

/* ---------- Category Menu ---------- */
.showbiz-category {
    display: flex;
    justify-content: center;
    gap: 62px;
}

.category-btn {
    color: #fff;
    font-weight: 800;
    font-size: 24px;
    padding: 16px 52px;
    border-radius: 999px;
    text-decoration: none;
    transition: background .25s, box-shadow .25s, filter .15s;
}

.category-btn.active {
    background: linear-gradient(180deg, #FFF089 0%, #FEE502 100%);
    color: #000;
    box-shadow: 0 6px 14px rgba(254,229,2,.35);
}

.category-btn:hover {
    background: linear-gradient(180deg, #FFF089 0%, #FEE502 100%);
    color: #000;
    box-shadow: 0 6px 14px rgba(254,229,2,.35);
}

/* ---------- Responsive ---------- */
@media (max-width: 991px) {
    .showbiz-category {
        flex-wrap: wrap;
        gap: 12px;
        margin-top: 40px;
    }

    .category-btn {
        padding: 12px 28px;
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .showbiz-black-bg {
        padding-bottom: 10px;
    }

    .showbiz-social {        
        margin-bottom: 20px;
        margin-top: -40px;        
    }
    .social-circle {
        width: 32px;
        height: 32px;
        font-size: 16px;
    }
    .social-sep {
        font-size: 16px;
    }
    .social-text {
        font-size: 16px;
    }
}

/* =========================
   SHOWBIZ EVENT LIST
   ========================= */

.showbiz-event-section {
    padding: 15px 0 10px;
}

/* ---------- Grid ---------- */
.showbiz-event-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 42px;
    margin: 0 auto;
    padding: 0 8%;
}

/* ---------- Card ---------- */
.event-card {
    background: #fff;
    border-radius: 24px;
    padding: 20px;
    display: flex;
    gap: 30px;
    box-shadow: 0 10px 24px rgba(0,0,0,.08);
}

.event-thumb {
    box-shadow: 0 8px 20px rgba(0,0,0,.18);
    border-radius: 16px;   /* ให้ shadow โค้งตามรูป */
    overflow: hidden;      /* กันเงาทะลุ */
}

.event-thumb img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    object-fit: cover;    
}

.event-content {
    flex: 1;
}

.event-title {
    font-size: 16px;
    font-weight: 800;
    margin-bottom: 10px;
}

/* ---------- Responsive ---------- */
@media (max-width: 991px) {
    .music-label-wrapper {
        background: url('/images/bg_bizmenu4.png') no-repeat top center;
        background-size: 100% auto;
        background-color: #FEE600;
    }
    .showbiz-event-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .event-thumb img {
        width: 100%;
    }
    .event-card {
        gap: 10px;
    }
}

@media (max-width: 575px) {
    .showbiz-event-grid {
        grid-template-columns: 1fr;
    }

    .event-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .event-thumb img {
        width: 100%;
    }
}

/* =========================
   EVENT ROUND SECTION
   ========================= */

.event-round {
    background: url('/images/bg_bizmenu5.png') no-repeat top center;
    background-size: 100% auto;
    padding-top: 170px;
    margin-bottom: 60px;
}

.event-round-section {    
    max-width: 1280px;
    margin: 0 auto 20px auto;
    padding: 0 24px;
}

/* ---------- Card ---------- */
.round-card {
    background: #fff;
    border-radius: 28px;
    padding: 40px 48px;
    display: flex;
    align-items: center;
    gap: 48px;
    border-top: 2px solid rgba(0,0,0,.06);
    box-shadow: 0 14px 24px rgba(0, 0, 0, .12);
    margin-bottom: 28px;
}

/* reverse layout */
.round-card.reverse {
    flex-direction: row-reverse;
    gap: 140px;
}

/* ---------- Content ---------- */
.round-content {
    flex: 1;
    text-align: left;
}

.round-title {
    font-size: 52px;
    font-weight: 900;
    margin-bottom: 0;
}

.round-subtitle {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 8px;
}

.round-desc {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 16px;
}

/* ---------- Image ---------- */
.round-image img {
    width: 380px;
    border-radius: 15px;
    box-shadow: 0 10px 26px rgba(0,0,0,.25);
}

/* ---------- Button ---------- */
.btn-buy-round {
    display: inline-block;
    margin-top: 14px;
    padding: 8px 32px;
    background: #000;
    color: #FEE600;
    font-weight: 900;
    border-radius: 999px;
    text-decoration: none;
    letter-spacing: .5px;
    font-size: 21px;
}

/* ---------- Responsive ---------- */
@media (max-width: 991px) {
    .event-round {
        padding-top: 70px
    }
    .highlight-title {
        font-size: 28px;
    }
    .highlight-desc {
        font-size: 22px;
    }
    .round-card,
    .round-card.reverse {
        flex-direction: column;
        text-align: center;
        padding: 32px;
        gap: 30px;
    }

    .round-image img {
        width: 100%;
        max-width: 320px;
    }
    .featured-right .event-desc {
        font-size: 16px;
    }
    .featured-event {
        gap: 20px;
    }
}
/* =========================
   TABLET (keep left-right + reverse)
   ========================= */
@media (min-width: 768px) and (max-width: 1024px) {

    /* ปกติ */
    .round-card {
        flex-direction: row;      /* content ซ้าย / รูปขวา */
        align-items: center;
        gap: 28px;
        padding: 32px 36px;
    }

    /* reverse */
    .round-card.reverse {
        flex-direction: row-reverse; /* รูปซ้าย / content ขวา */
    }
    .round-card.reverse .round-content {
        padding-left: 60px;
    }
    .round-image img {
        width: 360px;
    }

    .round-content {
        flex: 1;
    }

    .round-title {
        font-size: 34px;
    }

    .round-subtitle {
        font-size: 18px;
    }

    .round-desc {
        font-size: 16px;
    }
}

@media (max-width: 575px) {
    .event-round {
        padding-top: 70px
    }
    .highlight-title {
        font-size: 28px;
    }
    .highlight-desc {
        font-size: 22px;
    }
    .round-card,
    .round-card.reverse {
        flex-direction: column;
        text-align: center;
        padding: 32px;
        gap: 30px;
    }

    .round-image img {
        width: 100%;
        max-width: 320px;
    }
    .featured-right .event-desc {
        font-size: 16px;
    }
    .featured-event {
        gap: 20px;
    }
}