/* Main Wrapper Section */
.show-detail-container {
    background-color: #02060d;
    padding: 60px 40px;
    color: #ffffff;
}

.show-detail-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 50px;
}

/* Left Structural Split */
.show-left-col {
    flex: 1.3;
}

.section-main-title {
    font-size: 26px;
    font-weight: 500;
    color: #ffffff;
    margin: 0 0 15px 0;
    position: relative;
}

/* Thin under-line accent below title */
.section-main-title::after {
    content: '';
    display: block;
    width: 35px;
    height: 2px;
    background-color: #ffaa00;
    margin-top: 8px;
}

.show-desc-text {
    color: #8fa0b5;
    /* Premium grey-blue readability text shade */
    font-size: 14px;
    line-height: 1.7;
    font-weight: 300;
    margin-bottom: 20px;
    text-align: justify;
}

/* Feature Highlight Circles Container */
.show-highlights-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 45px;
    gap: 15px;
}

.highlight-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
}

.hl-icon-circle {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 1px solid #ffaa00;
    /* Rich gold outline */
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 170, 0, 0.02);
    margin-bottom: 12px;
    font-size: 18px;
    color: #ffaa00;
    box-shadow: inset 0 0 10px rgba(255, 170, 0, 0.1);
    transition: all 0.3s ease;
}

.highlight-item:hover .hl-icon-circle {
    transform: scale(1.08);
    background: rgba(255, 170, 0, 0.1);
    box-shadow: 0 0 15px rgba(255, 170, 0, 0.2);
}

.highlight-item span {
    font-size: 12px;
    color: #8fa0b5;
    font-weight: 400;
}

/* Right Side: Key Info Panel Box */
.show-right-col {
    flex: 1;
    min-width: 320px;
}

.key-info-card {
    background: #050b14;
    /* Darker tile filling contrasting background */
    border: 1px solid #131c26;
    border-radius: 16px;
    padding: 35px;
}

.key-info-title {
    font-size: 20px;
    font-weight: 500;
    color: #ffaa00;
    /* Beautiful golden tint */
    margin: 0 0 20px 0;
    position: relative;
}

.key-info-title::after {
    content: '';
    display: block;
    width: 25px;
    height: 2px;
    background-color: #ffaa00;
    margin-top: 6px;
}

/* Clean Alignment Table layout properties */
.key-info-table {
    width: 100%;
    border-collapse: collapse;
}

.key-info-table td {
    padding: 3px 0;
    font-size: 13.5px;
    vertical-align: top;
}

.info-label {
    color: #ffffff;
    font-weight: 400;
    width: 110px;
    /* Locked alignment widths */
    white-space: nowrap;
}

.info-separator {
    color: #8fa0b5;
    width: 25px;
    text-align: center;
}

.info-value {
    color: #8fa0b5;
    font-weight: 300;
}

/* Optional dynamic status text enhancement helper */
.status-live {
    color: #8fa0b5;
    /* Keeps original layout look, replace with white/green if preferred */
}

.about-show-box {
    margin-top: 35px;
}

/* ---- RESPONSIVE LAYOUT ACTION ---- */
@media (max-width: 991px) {
    .show-detail-container {
        padding: 60px 15px;
    }

    .show-detail-row {
        flex-direction: column;
        gap: 10px;
    }

    .show-right-col {
        width: 100%;
        margin-top: 15px;
    }

    .show-highlights-row {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

/* Main Wrapper Container */
.media-gallery-section {
    background-color: #02060d;
    padding: 20px 40px 60px;
}

/* ---- HEADER PROPERTIES ---- */
.gallery-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

/* Title Grouping */
.header-left {
    display: flex;
    align-items: center;
    gap: 15px;
}

.gallery-title {
    color: #ffffff;
    font-size: 26px;
    font-weight: 400;
    margin: 0;
    letter-spacing: 0.5px;
}

/* Absolute Match Title Golden Horizontal Bar Accent */
.golden-accent-line {
    width: 65px;
    height: 2px;
    background-color: #ffaa00;
    /* Rich golden yellow strike */
    margin-top: 6px;
}

/* Right Side View All Link Typography */
.view-all-link {
    color: #ffaa00 !important;
    text-decoration: none !important;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.8px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s ease;
}

.view-all-link i {
    font-size: 11px;
    transition: transform 0.3s ease;
}

/* Micro animation for link hover state */
.view-all-link:hover {
    color: #d48c22 !important;
}

.view-all-link:hover i {
    transform: translateX(4px);
}

/* ---- GALLERY IMAGES GRID MATRIX ---- */
.gallery-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    /* Precise gap spacing between thumbnail tracks */
}

/* Individual Thumbnail Blocks */
.gallery-item {
    position: relative;
    flex: 1;
    aspect-ratio: 16 / 10;
    /* Perfect cinematic landscape bounding boxes ratio */
    border-radius: 14px;
    /* Exact smooth roundness curve from image */
    overflow: hidden;
    background-color: #050b14;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Standard Image Scaling */
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

/* Ambient light overlay filter over image cards */
.image-overlay-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 60%, rgba(2, 6, 13, 0.3) 100%);
    pointer-events: none;
}

/* ---- HOVER CARD INTERACTION EFFECTS ---- */
.gallery-item:hover {
    transform: translateY(-4px);
    /* Slight premium upward float */
    box-shadow: 0 8px 25px rgba(255, 170, 0, 0.1);
    /* Subtle glowing shadow */
}

.gallery-item:hover img {
    transform: scale(1.04);
    /* Velvet lens zoom action */
}

/* ---- DYNAMIC RESPONSIVE BREAKPOINTS ---- */
@media (max-width: 991px) {
    .gallery-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }

    .media-gallery-section {
        padding: 20px;
    }
}

@media (max-width: 575px) {
    .gallery-header {
        margin-bottom: 20px;
    }

    .gallery-title {
        font-size: 22px;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .media-gallery-section {
        padding: 20px;
    }
}

/* ---- TOP TAG/BADGE ---- */
.show-badge {
    display: inline-block;
    border: 1px solid #ffaa00;
    color: #ffaa00;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 1px;
    padding: 4px 12px;
    border-radius: 6px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

/* ---- MAIN TITLES AND TYPOGRAPHY ---- */
.show-main-title {
    color: #fff;
    font-size: 56px;
    font-weight: 500;
    line-height: 1.1;
    margin: 0 0 12px 0;
    letter-spacing: 0.5px;
}

.show-tagline {
    font-size: 16px;
    color: #cbd5e1;
    font-weight: 300;
    margin: 0 0 35px 0;
    letter-spacing: 0.3px;
}

/* ---- META HIGHLIGHTS BAR ---- */
.show-meta-track {
    display: flex;
    align-items: center;
    gap: 35px;
    margin-bottom: 35px;
    flex-wrap: wrap;
}

.meta-item {
    display: flex;
    align-items: start;
    gap: 12px;
}

/* Gold Icon Frames */
.meta-icon i {
    font-size: 20px;
    color: #ffaa00;
    display: block;
    margin-top: 4px;
}

.meta-text {
    display: flex;
    flex-direction: column;
}

.meta-label {
    font-size: 12px;
    color: #64748b;
    /* Muted label subtitle shade */
    font-weight: 400;
    margin-bottom: 2px;
}

.meta-val {
    font-size: 13.5px;
    color: #e2e8f0;
    font-weight: 400;
}

/* ---- MAIN SYNOPSIS PARAGRAPH ---- */
.show-synopsis {
    font-size: 14.5px;
    line-height: 1.7;
    color: #8fa0b5;
    /* High readability muted soft tint matrix */
    font-weight: 300;
    margin: 0 0 40px 0;
    text-align: justify;
}

/* ---- BUTTON CONTROL SYSTEMS ---- */
.show-action-buttons {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Shared Properties */
.btn-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.8px;
    padding: 15px 36px;
    border-radius: 8px;
    text-decoration: none !important;
    text-transform: uppercase;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    height: 50px;
    box-sizing: border-box;
}

/* 1. Watch Trailer (Solid Amber) Button Style */
.btn-solid-watch {
    background-color: #b37416;
    /* Deep solid warm amber tone */
    color: #ffffff !important;
    box-shadow: 0 4px 15px rgba(179, 116, 22, 0.2);
}

.btn-solid-watch i {
    font-size: 11px;
}

.btn-solid-watch:hover {
    background-color: #d48c22;
    box-shadow: 0 6px 20px rgba(212, 140, 34, 0.35);
    transform: translateY(-2px);
}

/* 2. Brochure (Hollow Outline Golden) Button Style */
.btn-outline-brochure {
    background-color: transparent;
    color: #ffaa00 !important;
    border: 1px solid #ffaa00;
    /* Sharp golden boundary line */
}

.btn-outline-brochure i {
    font-size: 13px;
}

.btn-outline-brochure:hover {
    background-color: rgba(255, 170, 0, 0.06);
    border-color: #ffffff;
    color: #ffffff !important;
    transform: translateY(-2px);
}

/* ---- MOBILE CELLPHONE BREAKPOINT RESPONSIFNESS ---- */
@media (max-width: 575px) {
    .show-hero-container {
        padding: 30px 20px;
    }

    .show-main-title {
        font-size: 40px;
    }

    .show-meta-track {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        /* 2x2 grid layout balance tracking logic for mobile screen spaces */
        gap: 20px;
    }

    .show-action-buttons {
        flex-direction: column;
    }

    .btn-action {
        width: 100%;
        /* Full span expansion for structural finger taps safety */
    }
}