:root {
    --str8-yellow: #FFD000;
    --str8-blue: #00AEEF;
    --str8-black: #0a0a0a;
    --str8-white: #ffffff;
}

body {
    background: #fff;
    color: #222;
    font-family: Arial, sans-serif;
}

.ad-banner-wrap h3 {
    margin: 0;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
}

/*ad-banner-wrap*/
.ad-banner-wrap {
    margin: 5px 0;
}

.ad-banner {
    background: #111;
    border-radius: 14px;
    padding: 10px;
    text-align: center;
    overflow: hidden;
}

.ad-banner img {
    max-width: 500px;
    height: auto;
    border-radius: 10px;
}
/*End ad-banner-wrap*/

.top-bar {
    background: var(--str8-black);
    color: white;
    padding: 8px 0;
    font-size: 14px;
}

.social-link {
    color: white;
    margin-left: 10px;
}

.social-link:hover {
    color: var(--str8-yellow);
}
/*Logo*/

/*End logo*/
.navbar {
    background: var(--str8-black);
}

.navbar-brand {
    color: var(--str8-yellow) !important;
    font-size: 1.8rem;
}

.nav-link {
    color: white !important;
}

.nav-link:hover {
    color: var(--str8-blue) !important;
}

.btn-warning {
    background: var(--str8-yellow);
    border: none;
}

/*buttons*/

/*My playlist dashboard button*/
.my-playlist-dashboard-button{
    width: 99%;
    background-color: green;
    color: #fff;
    margin-right: auto;
    margin-left: auto;
    margin-top: 2px;
    border: solid 2px transparent;
    border-radius: 1rem;
    height: auto;
    padding: 4px;
}

.hero-buttons{
    background-color: #FFD000;
    color: #000;
    font-size: 1rem;
    font-weight: 600;
    padding: 4px;
    border: solid 1px transparent;
    border-radius: 2rem;
}

/*home page*/
.min-vh-75 {
    min-height: 75vh;
}

/*hero*/
.hero-slider {
    background: #000;
}

.hero-banner-img {
    height: 78vh;
    min-height: 460px;
    width: 100%;
    object-fit: contain;
    object-position: center;
    background-color: #000;
    filter: brightness(80%);
}

.hero-caption {
    bottom: 18%;
    max-width: 600px;
    margin: 0 auto;
}

.hero-caption h1 {
    color: var(--str8-yellow);
    font-size: clamp(2.2rem, 5vw, 5rem);
    font-weight: 900;
    text-transform: uppercase;
    text-shadow: 0 4px 18px rgba(0, 0, 0, 0.9);
}

.hero-caption p {
    color: #fff;
    font-size: clamp(1rem, 2vw, 1.35rem);
    font-weight: 500;
    text-shadow: 0 3px 12px rgba(0, 0, 0, 0.9);
}

.carousel-indicators [data-bs-target] {
    background-color: var(--str8-yellow);
    width: 40px;
    height: 4px;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: rgba(0, 0, 0, 0.65);
    border-radius: 50%;
    padding: 25px;
}
/*end hero*/
.carousel-fade .carousel-item {
    transition: opacity 1.5s ease-in-out;
}

.section-title {
    font-weight: 900;
    color: var(--str8-yellow);
    text-transform: uppercase;
}



.section-subtitle {
    color: #fff;
    max-width: 700px;
    margin: 0 auto;
}

.service-section {
    background: #0a0a0a;
    color: white;
}

.service-card {
    background: #111;
    border: 1px solid #222;
    border-radius: 16px;
    padding: 30px;
    transition: 0.3s ease;
}

.service-card:hover {
    transform: translateY(-6px);
    border-color: var(--str8-yellow);
}

.service-card i {
    font-size: 3rem;
    color: var(--str8-blue);
    margin-bottom: 20px;
}

.service-card h4 {
    color: var(--str8-yellow);
    font-size: 1.2rem;
    font-weight: 800;
}

.event-card {
    border: none;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    border-radius: 16px;
}


.cta-section {
    background:
        linear-gradient(rgba(0, 0, 0, 0.86), rgba(0, 0, 0, 0.86));
    color: white;
    padding: 80px 0;
}

.cta-section h2 {
    color: var(--str8-yellow);
    font-weight: 900;
    font-size: 2rem;
    text-transform: uppercase;
}

.cta-section p {
    font-size: 1.2rem;
    max-width: 750px;
    margin: 20px auto 30px;
}

/*Start shopping cart styles*/
.shop-section {
    background: #f5f5f5;
    min-height: 80vh;
    padding: 70px 0;
}

.product-card {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    height: 100%;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.product-img {
    width: 100%;
    height: 280px;
    object-fit: contain;
    background: #000;
}

.product-body {
    padding: 25px;
}

.product-body h3 {
    font-weight: 900;
}

.product-price,
.product-detail-price {
    color: var(--str8-yellow);
    font-size: 1.6rem;
    font-weight: 900;
}

.old-price {
    color: #777;
    text-decoration: line-through;
    font-size: 1rem;
    margin-right: 8px;
}

.product-detail-card {
    background: #0a0a0a;
    color: white;
    border-radius: 18px;
    padding: 35px;
}

.product-detail-card h1 {
    color: var(--str8-yellow);
    font-weight: 900;
    text-transform: uppercase;
}

.product-detail-type {
    color: var(--str8-blue);
    font-weight: 800;
}

.product-detail-img {
    width: 100%;
    max-height: 550px;
    object-fit: contain;
    background: #000;
    border-radius: 14px;
}

.product-description {
    margin: 20px 0;
    line-height: 1.8;
}

/*cart details*/
.cart-card {
    background: #fff;
    border-radius: 18px;
    padding: 25px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.cart-item {
    display: grid;
    grid-template-columns: 100px 1fr 180px 120px 110px;
    gap: 20px;
    align-items: center;
    border-bottom: 1px solid #ddd;
    padding: 20px 0;
}

.cart-img {
    width: 90px;
    height: 90px;
    object-fit: contain;
    background: #000;
    border-radius: 10px;
}

.cart-info h4 {
    font-weight: 900;
}

.cart-qty-form {
    display: flex;
    gap: 8px;
}

.cart-total {
    font-weight: 900;
    font-size: 1.1rem;
}

.cart-summary {
    text-align: right;
    padding-top: 25px;
}


/*End cart details*/
/*End shopping cart styles*/

/*Membership style*/
.membership-feature-list {
    margin-bottom: 20px;
}

.feature-item {
    padding: 15px 0;
    border-bottom: 1px solid rgba(255,255,255,.1);
}

.feature-item:last-child {
    border-bottom: none;
}

.feature-item h5 {
    color: var(--str8-yellow);
    font-weight: 700;
}

.feature-item i {
    margin-right: 8px;
}

.feature-item p {
    margin: 8px 0 0 30px;
}
/*End membership style*/
/*Media hub*/
/*Media hub navbar*/
.mediahub-nav {
    background: #000;
    border-bottom: 1px solid #222;
    padding: 14px 0;
    position: sticky;
    top: 0;
    z-index: 50;
}

.mediahub-nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}

.mediahub-nav-brand {
    color: var(--str8-yellow);
    font-weight: 900;
    font-size: 1.2rem;
    text-decoration: none;
}

.mediahub-nav-brand i {
    margin-right: 6px;
}

.mediahub-nav-links {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

.mediahub-nav-links a {
    color: #fff;
    text-decoration: none;
    font-weight: 700;
}

.mediahub-nav-links a:hover {
    color: var(--str8-yellow);
}/*continue 786px*/

/*End media hub nav-bar*/
/*Media-hub section*/
.mediahub-section {
    background: #050505;
    color: #fff;
    min-height: 90vh;
}

.mediahub-hero {
    min-height: 520px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
}

.mediahub-hero-content {
    max-width: 650px;
    padding: 80px 0;
}

.mediahub-hero-content h1 {
    color: var(--str8-yellow);
    font-size: 3.5rem;
    font-weight: 900;
    text-transform: uppercase;
}

.mediahub-hero-content p {
    font-size: 1.2rem;
    line-height: 1.7;
}

.media-row h2 {
    color: var(--str8-yellow);
    font-weight: 900;
    margin-bottom: 18px;
}


.media-scroll-row {
    display: flex;
    gap: 18px;
    overflow-x: auto;
    padding-bottom: 15px;
}

.media-card {
    min-width: 260px;
    max-width: 260px;
    background: #111;
    border-radius: 14px;
    overflow: hidden;
    flex: 0 0 auto;
}

.media-card a {
    color: #fff;
    text-decoration: none;
}

.media-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    background: #000;
}

.media-card-body {
    padding: 15px;
}

.media-card-body h4 {
    font-size: 1rem;
    font-weight: 800;
    margin-bottom: 10px;
}

/*End media cards and players*/

/*.media-channel-card*/
.media-channel-card {
    width: 220px;
    min-width: 220px;
    background: #111;
    border-radius: 18px;
    overflow: hidden;
    flex: 0 0 auto;
    transition: .25s;
}

.media-channel-card:hover {
    transform: translateY(-6px);
}

.media-channel-card a {
    text-decoration: none;
    color: #fff;
}

.channel-logo-box {
    height: 120px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 18px;
}

.channel-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
}


.channel-body {
    padding: 16px;
}

.channel-body h4 {
    font-size: 1rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.channel-body p {
    color: #ccc;
    margin-bottom: 0;
}
/*End .media-channel-card*/


/*mediahub/media_detail.html*/
.media-detail-hero {
    min-height: 460px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    background-color: #050505;
}

.media-detail-hero-content {
    max-width: 750px;
    padding: 80px 0;
}

.media-detail-hero-content h1 {
    color: var(--str8-yellow);
    font-size: 3.2rem;
    font-weight: 900;
    text-transform: uppercase;
}

.media-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin-top: 20px;
}

.media-meta span {
    color: #ddd;
    font-weight: 600;
}

.media-meta i {
    color: var(--str8-yellow);
    margin-right: 6px;
}

.media-player-card {
    background: #111;
    padding: 20px;
    border-radius: 18px;
}

.media-video-player {
    width: 100%;
    background: #000;
    border-radius: 14px;
}

/*Live radio*/

/*End live radio*/

.media-player iframe {
    width: 100%;
    min-height: 520px;
    border-radius: 14px;
}

.locked-media-box {
    text-align: center;
    padding: 70px 25px;
    background: #0a0a0a;
    border: 1px solid #222;
    border-radius: 18px;
}

.locked-media-box i {
    font-size: 4rem;
    color: var(--str8-yellow);
}

.locked-media-box h2 {
    color: var(--str8-yellow);
    margin-top: 20px;
}

.media-detail-info {
    background: #0a0a0a;
    padding: 35px;
    border-radius: 18px;
}

.media-detail-info h2 {
    color: var(--str8-yellow);
    font-weight: 900;
}

.media-description {
    line-height: 1.8;
}

.media-info-box {
    background: #111;
    padding: 20px;
    border-radius: 14px;
    border-left: 5px solid var(--str8-yellow);
}

.media-info-box strong {
    color: var(--str8-blue);
}

.media-tags {
    background: #111;
    padding: 15px;
    border-radius: 12px;
}
/*End mediahub/media_detail.html*/
/*Media search*/
.mediahub-search-box {
    background: #0a0a0a;
    border: 1px solid #222;
    padding: 25px;
    border-radius: 18px;
}
/*End media search*/

/*.media-category-section*/
.media-category-section h2{
    color:var(--str8-yellow);
    font-weight:900;
    margin-bottom:25px;
}

.media-category-card{
    display:block;
    background:#111;
    border:1px solid #222;
    border-radius:16px;
    padding:30px 20px;
    text-align:center;
    color:#fff;
    text-decoration:none;
    transition:.25s;
    height:100%;
}

.media-category-card:hover{
    background:#1b1b1b;
    border-color:var(--str8-yellow);
    transform:translateY(-5px);
    color:#fff;
}

.media-category-card i{
    font-size:2.6rem;
    color:var(--str8-yellow);
    margin-bottom:15px;
}

.media-category-card h5{
    font-weight:800;
    margin-bottom:10px;
}
/*End .media-category-section*/
/*End media hub*/

/* MOBILE RESPONSIVE ARE BELOW THIS LINE */

@media (max-width: 768px) {
    .hero-section {
        padding: 60px 0;
        text-align: center;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .d-flex.justify-content-between {
        flex-direction: column;
        gap: 15px;
    }
}
/*end home page*/
/*Media hub navbar*/

    .mediahub-nav .container {
        flex-direction: column;
        align-items: flex-start;
    }

    .mediahub-nav-links {
        gap: 12px;
    }
/*End media hub-navbar*/

    .media-detail-hero-content h1 {
        font-size: 2.1rem;
    }

    .media-player iframe {
        min-height: 280px;
    }

    .media-meta {
        gap: 10px;
    }

/*hero*/

    .hero-banner-img {
        height: 55vh;
        min-height: 320px;
        object-fit: contain;
        background-color: #000;
    }


    .hero-caption {
        bottom: 12%;
        padding: 0 20px;
    }

    .hero-caption .btn {
        width: 100%;
    }
/*end hero*/

/*Cart details*/
    .cart-item {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .cart-img {
        margin: 0 auto;
    }

    .cart-qty-form {
        justify-content: center;
    }

    .cart-summary {
        text-align: center;
    }

    .cart-summary .btn {
        width: 100%;
        margin-bottom: 10px;
    }

/*End cart details*/

.footer {
    background: var(--str8-black);
    color: white;
    padding: 50px 0;
}

.footer a {
    color: white;
    text-decoration: none;
}

.footer a:hover {
    color: var(--str8-yellow);
}

/*ALLUAH STYLE*/
.auth-section {
    min-height: 80vh;
    background:
        linear-gradient(rgba(0, 0, 0, 0.86), rgba(0, 0, 0, 0.86)),
        url("../images/auth-bg.jpg");
    background-size: cover;
    background-position: center;
    padding: 80px 0;
}

.auth-card {
    background: rgba(10, 10, 10, 0.95);
    color: white;
    border: 1px solid #222;
    border-radius: 18px;
    padding: 35px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
}

.auth-card h1 {
    color: var(--str8-yellow);
    font-weight: 900;
    text-transform: uppercase;
    text-align: center;
}

.auth-subtitle {
    color: #ddd;
    text-align: center;
    margin-bottom: 25px;
}

.auth-card label {
    color: var(--str8-blue);
    font-weight: 700;
}

.auth-card input {
    width: 100%;
    border-radius: 10px;
    border: 1px solid #333;
    padding: 12px;
    background: #111;
    color: white;
}

.auth-card input:focus {
    border-color: var(--str8-yellow);
    outline: none;
    box-shadow: 0 0 0 0.2rem rgba(255, 208, 0, 0.2);
}

.auth-card .form-check-input {
    width: auto;
    margin-right: 8px;
}

.auth-link {
    color: var(--str8-blue);
    font-weight: 700;
    text-decoration: none;
}

.auth-link:hover {
    color: var(--str8-yellow);
}

.errorlist {
    color: #ff7676;
    list-style: none;
    padding-left: 0;
    font-size: 0.9rem;
}

/*END ALLUATH STYLE*/


/*Dashboard Style*/
.dashboard-section {
    background: #f5f5f5;
    min-height: 80vh;
    padding: 70px 0;
}

.dashboard-header {
    background: #0a0a0a;
    color: white;
    padding: 35px;
    border-radius: 18px;
    margin-bottom: 35px;
}

.dashboard-header h1 {
    color: var(--str8-yellow);
    font-weight: 900;
    text-transform: uppercase;
}

.dashboard-card {
    background: white;
    border-radius: 18px;
    padding: 30px;
    height: 100%;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    border-top: 5px solid var(--str8-yellow);
}

.dashboard-card i {
    font-size: 3rem;
    color: var(--str8-blue);
    margin-bottom: 15px;
}

.dashboard-card h4 {
    font-weight: 900;
    color: #0a0a0a;
}

/*dashboard summary counts.*/
.dashboard-summary-card {
    background: #0a0a0a;
    color: white;
    border-radius: 18px;
    padding: 25px;
    text-align: center;
    border-bottom: 5px solid var(--str8-yellow);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.dashboard-summary-card h5 {
    color: var(--str8-blue);
    font-weight: 800;
    text-transform: uppercase;
}

.dashboard-summary-card h2 {
    color: var(--str8-yellow);
    font-size: 3rem;
    font-weight: 900;
}

/*End dashboard summary counts.*/


/*End Dashboard style */

/*Profile card*/
.profile-section {
    background: #f5f5f5;
    min-height: 80vh;
    padding: 70px 0;
}

.profile-card {
    max-width: 850px;
    margin: 0 auto;
    background: #0a0a0a;
    color: white;
    padding: 35px;
    border-radius: 18px;
}

.profile-card h1 {
    color: var(--str8-yellow);
    font-weight: 900;
    text-transform: uppercase;
}

.profile-card h4 {
    color: var(--str8-blue);
    font-weight: 800;
}

.profile-info p {
    background: #111;
    padding: 12px 15px;
    border-radius: 10px;
}

/*profile images*/
.profile-img {
    width: 160px;
    height: 160px;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid var(--str8-yellow);
    background: #111;
}
/*End Profile card*/

/*Event Tickets*/
.events-section {
    background: #f5f5f5;
    min-height: 80vh;
    padding: 70px 0;
}

.page-header,
.event-detail-card,
.checkout-card,
.my-ticket-order {
    background: #0a0a0a;
    color: white;
    padding: 35px;
    border-radius: 18px;
    margin-bottom: 30px;
}

.page-header h1,
.event-detail-card h1,
.checkout-card h1 {
    color: var(--str8-yellow);
    font-weight: 900;
    text-transform: uppercase;
}

.event-list-card {
    background: white;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.event-list-card img {
    width: 100%;
    height: 260px;
    object-fit: contain;
    background: #000;
}

.event-list-body {
    padding: 25px;
}

.event-list-body h3 {
    font-weight: 900;
}

.event-detail-img {
    width: 100%;
    max-height: 650px;
    object-fit: contain;
    background: #000;
    border-radius: 14px;
    margin-bottom: 25px;
}

.ticket-type-card {
    background: #111;
    color: white;
    border: 1px solid #222;
    border-radius: 14px;
    padding: 25px;
}

.ticket-type-card h4 {
    color: var(--str8-blue);
    font-weight: 800;
}

.ticket-price {
    color: var(--str8-yellow);
    font-size: 1.5rem;
    font-weight: 900;
}

.single-ticket-card {
    background: white;
    color: #111;
    border-radius: 14px;
    padding: 20px;
    text-align: center;
}

.ticket-qr {
    width: 180px;
    height: 180px;
    object-fit: contain;
}
/*End Events tickets*/

/*Guest ticket*/
.guest-box {
    background: #111;
    border: 1px solid #222;
    border-radius: 14px;
    padding: 20px;
}

.guest-box h4 {
    color: var(--str8-blue);
    font-weight: 800;
}
/*End guest ticket*/

/*Ticket qrcode*/
.ticket-qr-large {
    width: 280px;
    height: 280px;
    object-fit: contain;
    background: white;
    padding: 10px;
    border-radius: 12px;
}


.ticket-page-wrap {
    background: #f5f5f5;
    padding: 40px 15px;
}

.ticket-print-card {
    max-width: 900px;
    min-height: 10in;
    margin: 0 auto;
    background: #fff;
    color: #111;
    border: 2px solid #111;
    padding: 35px;
}

.ticket-print-header {
    text-align: center;
    margin-bottom: 25px;
}

.ticket-print-header p {
    font-weight: 900;
    margin-bottom: 5px;
}

.ticket-print-header h1 {
    color: #c5161d;
    font-weight: 900;
    text-transform: uppercase;
}

.ticket-print-body {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 35px;
    align-items: center;
}

.ticket-info p {
    margin-bottom: 16px;
    font-size: 1rem;
}

.ticket-status {
    background: #198754;
    color: #fff;
    padding: 5px 12px;
    border-radius: 5px;
    font-weight: 700;
}

.ticket-code {
    word-break: break-all;
}

.ticket-qr-box {
    text-align: center;
    border: 1px solid #ccc;
    padding: 15px;
    border-radius: 10px;
}

.ticket-qr-box img {
    width: 280px;
    height: 280px;
    object-fit: contain;
}

.ticket-qr-box p {
    color: #c5161d;
    font-weight: 800;
    margin-top: 10px;
}

.ticket-print-footer {
    border-top: 1px dashed #999;
    margin-top: 35px;
    padding-top: 25px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    text-align: center;
}

.ticket-print-footer strong {
    font-size: 0.9rem;
}

.ticket-print-footer p {
    font-size: 0.85rem;
    margin-top: 8px;
}

.ticket-thank-you {
    text-align: center;
    margin-top: 20px;
    font-weight: 700;
}

.ticket-actions {
    text-align: center;
    margin-top: 25px;
}

@media print {
    @page {
        size: letter portrait;
        margin: 0.35in;
    }

    body {
        background: #fff !important;
    }

    .top-bar,
    .navbar,
    .footer,
    .no-print,
    .ticket-actions {
        display: none !important;
    }

    .ticket-page-wrap {
        padding: 0 !important;
        background: #fff !important;
    }

    .ticket-print-card {
        width: 100%;
        max-width: none;
        min-height: auto;
        margin: 0;
        padding: 20px;
        border: 2px solid #111;
        page-break-inside: avoid;
    }

    .ticket-print-header {
        margin-bottom: 15px;
    }

    .ticket-print-header h1 {
        font-size: 28px;
    }

    .ticket-print-body {
        grid-template-columns: 1fr 280px;
        gap: 25px;
    }

    .ticket-qr-box img {
        width: 250px;
        height: 250px;
    }

    .ticket-print-footer {
        margin-top: 25px;
        padding-top: 18px;
        gap: 12px;
    }

    .ticket-print-footer p {
        font-size: 12px;
    }

    a[href]::after {
        content: "";
    }
}
/*End ticket qrcode*/

/*Blog comments*/
.blog-body {
    line-height: 1.9;
    font-size: 1.05rem;
}

.comment-box {
    background: #111;
    border-left: 5px solid var(--str8-yellow);
    padding: 18px;
    border-radius: 10px;
    margin-bottom: 15px;
}

.comment-box strong {
    color: var(--str8-yellow);
    display: block;
}

.comment-box small {
    color: var(--str8-blue);
}


.blog-preview-section {
    background: white;
}

.blog-card {
    background: #0a0a0a;
    color: white;
    padding: 30px;
    border-radius: 16px;
}

.blog-card h4 {
    color: var(--str8-yellow);
    font-weight: 800;
}

.read-more {
    color: var(--str8-blue);
    font-weight: 700;
    text-decoration: none;
}

.read-more:hover {
    color: var(--str8-yellow);
}
/*featured-blog lates blog comments*/
.featured-blog-box {
    background: #0a0a0a;
    color: white;
    padding: 35px;
    border-radius: 18px;
}

.featured-blog-box h2 {
    color: var(--str8-yellow);
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 25px;
}

.featured-blog-box h3 {
    color: var(--str8-blue);
    font-weight: 900;
}

.featured-blog-img {
    width: 100%;
    max-height: 360px;
    object-fit: contain;
    background: #000;
    border-radius: 14px;
}

/*End featured-blog lates blog comments*/

/*End blog comments*/

/* Mobile responsive ticket layout */
@media (max-width: 768px) {
    /*Ticket layout*/
    .ticket-page-wrap {
        padding: 20px 10px;
    }

    .ticket-print-card {
        width: 100%;
        max-width: 100%;
        min-height: auto;
        padding: 20px;
        border-width: 1px;
    }

    .ticket-print-header h1 {
        font-size: 1.7rem;
        line-height: 1.2;
    }

    .ticket-print-body {
        display: block;
    }

    .ticket-info {
        margin-bottom: 25px;
    }

    .ticket-info p {
        font-size: 0.95rem;
        margin-bottom: 14px;
    }

    .ticket-qr-box {
        width: 100%;
        padding: 12px;
    }

    .ticket-qr-box img {
        width: 100%;
        max-width: 260px;
        height: auto;
    }

    .ticket-print-footer {
        display: block;
        text-align: left;
        margin-top: 25px;
    }

    .ticket-print-footer div {
        border-bottom: 1px solid #ddd;
        padding: 12px 0;
    }

    .ticket-print-footer div:last-child {
        border-bottom: none;
    }

    .ticket-actions .btn {
        width: 100%;
        margin-bottom: 10px;
    }

    /*End ticket lout*/
}

@media (max-width: 650px) {

 .cta-section h2{
    font-size: 1.2rem;
 }


    .hero-banner-img {
        height: 55vh;
        min-height: 300px;
       
    }
   .hero-buttons{
    font-size: 1rem;
}
     
}

@media (max-width: 550px) {
    .hero-banner-img {
        min-height: 200px;
       
    }

    .hero-caption {
    bottom: 8%;
    }

     .hero-buttons{
       margin-bottom: 8%;
       }
     
}

@media (max-width: 450px) {

    /*ticket layout*/
    .ticket-print-card {
        padding: 15px;
    }

    .ticket-print-header h1 {
        font-size: 1.2rem;
    }

    .ticket-code {
        font-size: 0.8rem;
    }

    .ticket-qr-box img {
        max-width: 220px;
    }
/*End Ticket layout*/

    .cta-section h2{
    font-size: 1rem;
 }

 cta-section p {
    font-size: 1rem;
 }

     .hero-banner-img {
         height: 38vh;
        min-height: 10px;
       }
       .hero-buttons{
       margin-bottom: 12%;
       }

    .hero-caption {
    bottom: 6%;
    }
}

@media (max-width: 375px) {
    .hero-buttons{
    font-size: .8rem;
}
     .hero-banner-img {
         height: 30vh;
        min-height: 10px;
       }
       .hero-buttons{
       margin-bottom: 15%;
       }

    .hero-caption {
    bottom: 7%;
    }
}

/* Services page */
.services-page {
    min-height: 70vh;
   background-color: #000;
    color: #fff;
}

.services-page-header {
    max-width: 760px;
}

.services-eyebrow {
    color: var(--str8-blue);
    font-weight: 800;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.services-page-header h1 {
    margin: .35rem 0 .75rem;
    color: var(--str8-yellow);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    text-transform: uppercase;
}

.services-page-header p {
    color: #d7d7d7;
    font-size: 1.1rem;
}

.service-page-card {
    display: flex;
    flex-direction: column;
    min-height: 430px;
}

.service-page-card h2 {
    min-height: 3.2rem;
    color: var(--str8-yellow);
    font-size: 1.25rem;
    font-weight: 800;
}

.service-summary {
    min-height: 4.5rem;
    color: #ededed;
}

.service-more {
    margin-bottom: 1.5rem;
}

.service-more summary {
    width: fit-content;
    color: var(--str8-blue);
    cursor: pointer;
    font-weight: 700;
    list-style: none;
}

.service-more summary::-webkit-details-marker {
    display: none;
}

.service-more summary::after {
    content: " +";
}

.service-more[open] summary::after {
    content: " −";
}

.service-more .less-label,
.service-more[open] .more-label {
    display: none;
}

.service-more[open] .less-label {
    display: inline;
}

.service-more p {
    margin: .85rem 0 0;
    color: #c9c9c9;
}

.custom-audio-player {
    padding: 24px;
    border: 1px solid #2b2b2b;
    border-radius: 14px;
    background: linear-gradient(135deg, #171717, #080808);
}

.audio-player-title { color: #fff; font-size: 1.15rem; font-weight: 700; margin-bottom: 18px; }
.audio-player-title i { color: var(--str8-yellow); margin-right: 8px; }
.audio-player-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 12px; }
.audio-player-status { color: #bbb; margin-left: 4px; }

.custom-video-player { position: relative; overflow: hidden; border-radius: 14px; background: #000; }
.custom-video-player .media-video-player { display: block; border-radius: 0; aspect-ratio: 16 / 9; }
.video-controls { display: flex; align-items: center; gap: 12px; padding: 11px 14px; background: #080808; }
.video-controls button { color: #fff; border: 0; background: transparent; font-size: 1.15rem; }
.video-controls button:hover { color: var(--str8-yellow); }
.video-controls input { flex: 1; accent-color: var(--str8-yellow); }
.video-time { color: #ddd; min-width: 95px; font-size: .85rem; }
.commercial-overlay { position: absolute; top: 14px; left: 14px; z-index: 2; padding: 5px 10px; border-radius: 20px; background: rgba(0, 0, 0, .75); color: #fff; font-size: .8rem; }
.commercial-overlay span:first-child { color: var(--str8-yellow); font-weight: 800; margin-right: 6px; text-transform: uppercase; }
.commercial-overlay[hidden] { display: none; }
