/* =========================
   PREMIUM ENTERTAINMENT UI
========================= */

.gtxc-entertainment-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
    padding: 30px 0;
}

/* CARD */

.gtxc-entertainment-card {
    position: relative;
    background:
        linear-gradient(180deg,
            #111 0%,
            #050505 100%);

    border: 1px solid #4B330F;
    border-radius: 10px;
    overflow: hidden;
    transition: 0.45s ease;
    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.45);
    padding: 20px;
}

/* GOLD GLOW */

.gtxc-entertainment-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg,
            rgba(195, 140, 56, 0.10),
            transparent 40%);
    pointer-events: none;
}

/* HOVER */

.gtxc-entertainment-card:hover {
    border-color: #C38C38;

    box-shadow:
        0 20px 50px rgba(195, 140, 56, 0.15),
        0 10px 40px rgba(0, 0, 0, 0.6);
}

/* IMAGE */

.gtxc-entertainment-thumb {
    position: relative;
    height: 260px;
    overflow: hidden;
}

.gtxc-entertainment-thumb::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to top,
            rgba(0, 0, 0, 0.85),
            transparent);
}

.gtxc-entertainment-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.6s ease;
}


/* TITLE */

.gtxc-entertainment-title {
    font-weight: 600;
    font-size: 24px;
    line-height: 1.2;
    color: #fff;
    margin-bottom: 10px;
    text-transform: capitalize;
}

/* SUBTITLE */

.gtxc-entertainment-subtitle {
    color: #C38C38;
    font-family: Inter;
    font-size: 16px;
    line-height: 28px;
    margin-bottom: 20px;
}

/* DESCRIPTION */

.gtxc-entertainment-description {
    color: #cfcfcf;
    font-family: Inter;
    font-size: 15px;
    line-height: 30px;
    margin-bottom: 24px;
}

/* META */

.gtxc-entertainment-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 24px;
}

.gtxc-entertainment-meta span {
    background: #111;
    border: 1px solid rgba(195, 140, 56, 0.25);
    color: #fff;
    padding: 10px 15px;
    border-radius: 5px;

    font-family: Inter;
    font-size: 13px;
    transition: 0.3s ease;
}

/* DETAILS BOX */

.gtxc-cast-wrapper {
    background:
        linear-gradient(180deg,
            rgba(195, 140, 56, 0.08),
            rgba(0, 0, 0, 0.2));

    border: 1px solid rgba(195, 140, 56, 0.18);

    border-radius: 10px;
    padding: 20px;
    margin-bottom: 25px;
}

.gtxc-cast-wrapper h4 {
    color: #C38C38;
    margin-bottom: 18px;

    font-family: "Playfair Display", serif;
    font-size: 24px;
    font-weight: 600;
}

.gtxc-cast-item p {
    color: #ddd;
    margin-bottom: 12px;
    font-family: Inter;
    font-size: 14px;
    border-bottom: 1px dashed #636363;
    line-height: 28px;
}

.gtxc-cast-item strong {
    color: #fff;
}

/* VIDEO */

.gtxc-video-player {
    margin-bottom: 28px;
    overflow: hidden;
    border-radius: 10px;
    height: 250px;
}

.gtxc-video-player iframe,
.gtxc-video-player video {
    width: 100%;
    border: none;
    border-radius: 10px;
}


/* BUTTONS */

.gtxc-entertainment-buttons {
    display: flex;
    gap: 16px;
    height: 50px;
}

/* BUTTON */

.gtxc-entertainment-btn {
    flex: 1;
    height: 50px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 5px;
    text-decoration: none;

    font-family: Inter;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;

    transition: 0.35s ease;
    background-color: #C38C38 !important;
    border: 1px solid #C38C38;
    color: #fff;
    background: transparent;

    position: relative;
    overflow: hidden;
}




.gtxc-entertainment-btn:hover {
    color: #fff;
}

/* DOWNLOAD BUTTON */

.gtxc-entertainment-btn.download {
    background: #C38C38;
    color: #fff;
}

.gtxc-entertainment-btn.download:hover {
    opacity: 0.9;
}

/* MOBILE */

@media(max-width:1200px) {

    .gtxc-entertainment-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width:768px) {

    .gtxc-entertainment-wrapper {
        grid-template-columns: 1fr;
    }

    .gtxc-entertainment-title {
        font-size: 28px;
    }


    .gtxc-entertainment-buttons {
        flex-direction: column;
    }

    .gtxc-entertainment-meta span {
        padding: 5px 5px;
    }


    .gtxc-cast-wrapper h4 {
        font-size: 18px;
    }

    .gtxc-cast-wrapper {
        padding: 10px;
    }



}

@media(max-width:468px) {

    .gtxc-single-entertainment .gtxc-cast-card {
        padding: 15px !important;
    }

    .gtxc-single-entertainment .gtxc-cast-grid {
        grid-template-columns: 1fr !important;
    }
}







/* ////////////////////////////////////////////////////////////////////////////////////////////////////// */




/* =====================================
   SINGLE ENTERTAINMENT PAGE
===================================== */

.gtxc-single-entertainment {
    background: #000;
    color: #fff;
    padding: 0px;
}


.gtxc-entertainment-banner img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    margin-bottom: 30px;
}


/* =====================================
   CONTAINER
===================================== */

.gtxc-single-entertainment .gtxc-entertainment-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px 30px 20px;
}

/* =====================================
   HEADER
===================================== */

.gtxc-single-entertainment .gtxc-entertainment-header {
    margin-bottom: 40px;
}

.gtxc-single-entertainment .gtxc-entertainment-info {
    background: #111;
    border: 1px solid #4B330F;
    border-radius: 10px;
    padding: 40px;
}

.gtxc-single-entertainment .gtxc-entertainment-info h1 {
    font-family: "Playfair Display", serif;
    font-size: 55px;
    line-height: 1.2;
    margin-bottom: 10px;
    color: #fff;
}

.gtxc-single-entertainment .gtxc-entertainment-info h2 {
    color: #C38C38;
    font-size: 22px;
    margin-bottom: 25px;
}

/* =====================================
   META
===================================== */

.gtxc-single-entertainment .gtxc-entertainment-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.gtxc-single-entertainment .gtxc-entertainment-meta span {
    padding: 6px 15px;
    background: #6D4C1A;
    border-radius: 5px;
    color: #fff;
    font-size: 14px;
}

/* =====================================
   CONTENT BOXES
===================================== */

.gtxc-single-entertainment .gtxc-entertainment-section {
    background: #111;
    border: 1px solid #4B330F;
    border-radius: 10px;
    padding: 35px;
    margin-bottom: 30px;
}

.gtxc-single-entertainment .gtxc-entertainment-section h3 {
    font-family: "Playfair Display", serif;
    font-size: 32px;
    color: #C38C38;
    margin-bottom: 20px;
}

/* =====================================
   DESCRIPTION
===================================== */

.gtxc-single-entertainment .gtxc-entertainment-description {
    color: rgba(255, 255, 255, .85);
    line-height: 2;
}

.gtxc-single-entertainment .gtxc-entertainment-description p {
    margin-bottom: 15px;
}

/* =====================================
   VIDEO
===================================== */

.gtxc-single-entertainment video {
    width: 100%;
    height: 700px;
    border-radius: 10px;
    border: 1px solid #4B330F;
    background: #000;
}

/* =====================================
   IFRAME
===================================== */

.gtxc-single-entertainment iframe {
    width: 100%;
    border-radius: 10px;
    border: 1px solid #4B330F;
    overflow: hidden;
}

/* =====================================
   DETAILS GRID
===================================== */

.gtxc-single-entertainment .gtxc-cast-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.gtxc-single-entertainment .gtxc-cast-card {
    background: #1a1a1a;
    border: 1px solid #4B330F;
    border-radius: 10px;
    padding: 25px;
    transition: .3s;
}

.gtxc-single-entertainment .gtxc-cast-card:hover {
    border-color: #C38C38;
}

.gtxc-single-entertainment .gtxc-cast-card p {
    margin-bottom: 15px;
    color: #ddd;
}

.gtxc-single-entertainment .gtxc-cast-card strong {
    color: #C38C38;
}

/* =====================================
   DOWNLOAD BUTTON
===================================== */

.gtxc-single-entertainment .gtxc-download-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 10px 25px;

    background: linear-gradient(90deg,
            #986d2c 0%,
            #e3a343 44.5%,
            #986d2c 100%);

    border-radius: 5px;
    color: #fff;
    text-decoration: underline;
    font-weight: 600;
}

.gtxc-single-entertainment .gtxc-download-btn:hover {
    background: #C38C38;
    text-decoration: none;
}

/* =====================================
   RELATED
===================================== */

.gtxc-single-entertainment .gtxc-related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.gtxc-single-entertainment .gtxc-related-card {
    display: block;
    overflow: hidden;
    background: #1a1a1a;
    border: 1px solid #4B330F;
    border-radius: 10px;
    text-decoration: none;
    transition: .3s;
}

.gtxc-single-entertainment .gtxc-related-card:hover {
    border-color: #C38C38;
}

.gtxc-single-entertainment .gtxc-related-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.gtxc-single-entertainment .gtxc-related-card span {
    display: block;
    padding: 15px;
    color: #fff;
    font-weight: 600;
}

/* =====================================
   MOBILE
===================================== */

@media(max-width:991px) {

    .gtxc-single-entertainment .gtxc-entertainment-info h1 {
        font-size: 40px;
    }

    .gtxc-single-entertainment video {
        height: 450px;
    }


    .gtxc-entertainment-banner img {
        height: 400px;
    }

    .gtxc-single-entertainment iframe {
        height: 400px;
    }
}

@media(max-width:768px) {

    .gtxc-single-entertainment .gtxc-entertainment-info {
        padding: 25px;
    }

    .gtxc-single-entertainment .gtxc-entertainment-info h1 {
        font-size: 32px;
    }

    .gtxc-single-entertainment .gtxc-entertainment-section {
        padding: 20px;
    }

    .gtxc-single-entertainment video {
        height: 280px;
    }


    .gtxc-entertainment-banner img {
        height: 350px;
    }


    .gtxc-single-entertainment iframe {
        height: 350px;
    }


}


@media(max-width:468px) {

    .gtxc-entertainment-banner img {
        height: 300px;
    }

    .gtxc-single-entertainment .gtxc-entertainment-info h1 {
        font-size: 24px;
    }

    .gtxc-single-entertainment .gtxc-entertainment-info h2 {
        font-size: 18px;
    }


    .gtxc-single-entertainment .gtxc-entertainment-section h3 {
        font-size: 24px;

    }


    .gtxc-single-entertainment iframe {
        height: 300px;
    }



}