﻿:root {
    --tt-blue: #0b2a4a; /* deep navy (H1/H2, links focus) */
    --tt-blue-600: #123861;
    --tt-red: #e1423a; /* heart red for "love" */
    --tt-ink: #1f2937; /* body text */
    --tt-muted: #6b7280; /* secondary text */
    --tt-bg: #f7f9fc; /* page background */
    --tt-card: #ffffff; /* white cards */
    --tt-border: #e5e7eb; /* subtle borders */
}

.tt-body {
    background: var(--tt-bg);
    color: var(--tt-ink);
    min-height: 100dvh;
    /*max-width: 900px;*/
    margin: auto;
}
/*
.tt-body {
    background: radial-gradient(80vw 80vh at 20% -10%, #1d2440 0%, transparent 50%), radial-gradient(80vw 80vh at 120% 10%, #152235 0%, transparent 0%), linear-gradient(180deg, var(--tt-grad-1), var(--tt-grad-2));
    color: #fff;
    min-height: 100dvh;
}*/

.tt-nav {
    backdrop-filter: saturate(140%) blur(12px);
    background: #f7f9fc;
    /*background: linear-gradient(180deg, rgba(10,10,14,0.45), rgba(10,10,14,0.15));*/
    border-bottom: 1px solid rgba(10,10,14,0.06);
    /*margin: auto;*/
}

#refund {
    scroll-margin-top: 90px; /* #Refund scrolls past header otherwise */
}

@media (min-width: 992px) {
    .container, .container-fluid {
        max-width: 920px;
    }
}
/*
.tt-logo-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff6bd6, #6bd6ff);
    box-shadow: 0 0 12px rgba(255,107,214,.8), 0 0 28px rgba(107,214,255,.6);
    display: inline-block;
}*/

.tt-header {
    position: sticky;
    top: 0;
    z-index: 1020;
    backdrop-filter: saturate(140%) blur(6px);
}

.tt-main {
    padding-top: 74px;
    /*padding-block: 40px;*/
}

.tt-hero {
    padding: clamp(64px, 12vw, 144px) 0 72px;
    text-align: center;
}

    .tt-hero h1 {
        font-weight: 800;
        letter-spacing: -0.02em;
        line-height: 1.25;
    }

    .tt-hero p.lead {
        color: #182e4d !important;
        font-weight: 600;
        max-width: 920px;
        /*margin: 16px auto 0;*/
    }

    .tt-hero-title {
        max-width: 66ch; /* ~22 characters wide → tends to 2 lines */
/*        margin-left: auto;
        margin-right: auto;*/
        line-height: 1.1;
    }

    /* Subtitle a bit wider than the title */
    .tt-hero-subtitle {
        max-width: 64ch;
        margin-left: auto;
        margin-right: auto;
    }




.tt-cta-group .btn {
    padding: 12px 18px;
}

.tt-card {
    background: var(--tt-card);
    border: 1px solid var(--tt-card-border);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,.25) inset, 0 12px 30px rgba(0,0,0,.2);
}

.tt-section {
    padding: 10px 0;
}

.tt-badge {
    background: linear-gradient(135deg, rgba(255,107,214,.15), rgba(107,214,255,.15));
    border: 1px solid rgba(255,255,255,.15);
    color: #fff;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: .85rem;
}

.tt-feature i {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(255,107,214,.25), rgba(107,214,255,.25));
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
}

.tt-divider {
    height: 1px;
    background: rgba(255,255,255,.08);
    margin: 24px 0;
}

.tt-footer {
    border-top: 1px solid rgba(10,10,10,0.08);
    /*background: linear-gradient(180deg, rgba(10,10,14,0.45), rgba(10,10,14,0.15));*/
}

.btn-primary {
    background-color: #182e4d;
    border-color: #182e4d;
    color: #ffffff;
    font-weight: bold;
    min-width: 180px;
}
    .btn-primary:hover, .btn-primary:focus, .btn-primary:active, .btn-primary:visited {
        background-color: rgba(24, 46, 77, 0.75);
        color: #ffffff;
    }
    .btn-primary:disabled {
        border-color: #182e4d;
        background-color: rgba(24, 46, 77, 0.45);
    }


.btn-outline-secondary {
    color: rgba(33, 37, 41, 0.75);
    font-weight: bold;
    min-width: 180px;
}

.btn-outline-secondary:hover, .btn-outline-secondary:focus, .btn-outline-secondary:active, .btn-outline-secondary:visited {
    background-color: rgba(33, 37, 41, 0.45);
}

.btn-light {
    background-color: transparent;
    border-color: transparent;
}


a {
    color: #182e4d;
}


    a:hover, a:focus, a:active {
        color: #d23931;
    }

.nav-link {
    color: #182e4d;
    font-weight:bold;
    padding-left: 8px;
}

    .nav-link.active {
        color: #d23931 !important;
    }

    .nav-link:hover {
        color: #d23931 !important;
    }

.tt-nav-hidden {
    transform: translateY(-100%);
    transition: transform 0.25s ease-in-out;
}

.tt-nav {
    transition: transform 0.25s ease-in-out;
}

.tt-vid-wrap {
    background: var(--tt-card);
    /*background: rgba(255,255,255,0.04);*/
    max-width: 900px;
    margin: auto;
}

.tt-vid-frame {
    position: relative;
    overflow: hidden;
    max-width: 900px;
    margin: auto;
    margin-top: 80px;
    border: 1px solid rgba(255,255,255,.15);
}

    .tt-vid-frame video {
        display: block;
        width: 100%;
        height: auto;
        aspect-ratio: 16/9;
    }

.tt-vid-badge {
    position: absolute;
    right: 16px;
    bottom: 16px;
    pointer-events: none;
}

.tt-vid-badge-inner {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(0,0,0,.5);
    border: 1px solid rgba(255,255,255,.15);
    border-radius: 12px;
    padding: 6px 10px;
    font-size: .9rem;
}

.tt-carousel-control {
    max-height: 50px;
    margin: auto;
}

.tt-vid-thumbs {
    padding: 10px 10px;
    background: rgba(255,255,255,.06);
    /*border-radius: 999px;*/
    border: 1px solid rgba(255,255,255,.12);
}

.tt-vid-thumb {
    width: 96px;
    height: 72px;
    padding: 0;
    border: 0;
    background: transparent;
    border-radius: 50%;
    position: relative;
}

    .tt-vid-thumb img {
        width: 72px;
        height: 72px;
        object-fit: cover;
        border-radius: 50%;
        border-color: #182e4d;
        border: 1px solid;
    }

    .tt-vid-thumb.active img {
        width: 96px;
        height: 72px;
        border-color: #d23931;
        box-shadow: 0 0 0 3px rgba(10,10,10,0.08); /*rgba(123,196,255,.25)*/
    }

.tt-vid-mute {
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255,255,255,.2);
}

.tt-vid-thumbs {
    overflow-x: auto;
    scrollbar-width: thin;
}

    .tt-vid-thumbs::-webkit-scrollbar {
        height: 8px;
    }

    .tt-vid-thumbs::-webkit-scrollbar-thumb {
        background: rgba(255,255,255,.2);
        border-radius: 8px;
    }


/* ===== FAQ section ===== */

#faq {
    /* keep same spacing feel as other sections */
    padding-top: 10px;
    padding-bottom: 10px;
}

    /* Align the whole accordion with your card look & feel */
    #faq .accordion {
        /* Bootstrap 5 accordion CSS variables */
        --bs-accordion-color: var(--tt-ink);
        --bs-accordion-bg: transparent;
        --bs-accordion-border-color: transparent;
        --bs-accordion-btn-color: var(--tt-ink);
        --bs-accordion-btn-bg: transparent;
        --bs-accordion-active-color: var(--tt-blue);
        --bs-accordion-active-bg: rgba(24, 46, 77, 0.04); /* soft blue tint */
        --bs-accordion-border-radius: 20px;
        --bs-accordion-inner-border-radius: 20px;
    }

    /* Each FAQ item uses the existing tt-card style */
    #faq .accordion-item.tt-card {
        border-radius: 20px;
        border: 1px solid var(--tt-border);
        background: var(--tt-card);
        /*box-shadow: 0 10px 30px rgba(0,0,0,.25) inset, 0 12px 30px rgba(0,0,0,.2);*/
        overflow: hidden;
    }

    /* Remove default accordion borders (tt-card already handles this) */
    #faq .accordion-item {
        border: none;
    }

    /* Header button styling */
    #faq .accordion-button {
        background-color: transparent;
        box-shadow: none;
        padding: 1.2rem 1.25rem;
        padding-left: 1.0rem; /* more room for the plus icon */
        font-weight: 600;
        font-size: 0.98rem;
        color: var(--tt-ink);
    }

        /* Remove the default Bootstrap chevron */
        #faq .accordion-button::after {
            display: none;
        }

        /* Hover + focus states */
        #faq .accordion-button:hover {
            background-color: rgba(24, 46, 77, 0.03);
            color: var(--tt-blue);
        }

        #faq .accordion-button:focus {
            box-shadow: 0 0 0 2px rgba(24, 46, 77, 0.15);
        }

        /* Active (open) state blends with your brand blue */
        #faq .accordion-button:not(.collapsed) {
            background-color: rgba(24, 46, 77, 0.04);
            color: var(--tt-blue);
        }

    /* Body text inside FAQ */
    #faq .accordion-body {
        padding: 0.85rem .55rem 1.25rem 1.45rem;
        font-size: 0.95rem;
        opacity: 0.75;
        /*color: var(--tt-muted);*/
    }

    /* ===== Plus / minus icon on the left ===== */

    #faq .faq-icon {
        width: 1.25rem;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-weight: 700;
        font-size: 1.1rem;
        color: var(--tt-blue);
    }

    /* Plus by default (collapsed) */
    #faq .accordion-button .faq-icon::before {
        content: "+";
    }

    /* Minus when the item is expanded */
    #faq .accordion-button:not(.collapsed) .faq-icon::before {
        content: "−";
    }

    /* Keep the question text nicely aligned with the icon */
    #faq .accordion-button span + span {
        /* the second span in the button = question text */
        display: inline-block;
    }

    #faq .accordion-button {
        display: flex; /* override Bootstrap default if needed */
        align-items: center; /* vertical centering of icon + text */
        gap: 0.2rem; /* small space between + and question */
    }

    /* Icon box: center glyph inside and remove baseline quirks */
    #faq .faq-icon {
        width: 1.25rem;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-weight: 700;
        font-size: 1.1rem;
        line-height: 1; /* important so + / − is truly centered */
        color: var(--tt-blue);
    }

    /* Question text span: keep it flex-aligned with icon */
    #faq .accordion-button span + span {
        display: inline-flex; /* instead of inline-block */
        align-items: center;
    }


/* ===== Trailer carousel: overlapping thumbs at TOP ===== */
.tt-trailer-carousel {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

    /* Make video frame the reference for absolute positioning */
    .tt-trailer-carousel .tt-vid-frame {
        position: relative;
    }

    /* Pill at the top with a narrow viewport */
    .tt-trailer-carousel .carousel-indicators.tt-trailer-indicators {
        /*position: absolute;*/
        left: 50%;
        top: 5px;
        bottom: auto;
        transform: translateX(-70%);
        margin: 0;
        padding: 4px 10px;
        width: 280px; /* narrow window -> 3 full + 2 clipped */
        max-width: 80%;
        display: flex;
        align-items: center;
        justify-content: flex-start; /* row starts at left; JS will scroll */
        overflow-x: hidden; /* we will scroll programmatically */
        border-radius: 999px;
        background: rgba(0, 0, 0, 0.25);
        backdrop-filter: blur(4px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.35);
        z-index: 10;
    }

        /* Remove Bootstrap's default dot styling */
        .tt-trailer-carousel .carousel-indicators.tt-trailer-indicators [data-bs-target] {
            box-sizing: border-box;
            flex: 0 0 auto;
            width: auto;
            height: auto;
            padding: 0;
            margin: 0;
            border: 0;
            background: transparent;
            text-indent: 0;
            cursor: pointer;
        }

    /* Each thumb button */
        .tt-trailer-carousel .carousel-indicators.tt-trailer-indicators .tt-trailer-thumb + .tt-trailer-thumb {
            margin-left: 10px !important; /* adjust: 8–12px as you like */
        }
    /*.tt-trailer-carousel .tt-trailer-thumb {
        position: relative;
        margin: 0 6px;*/ /* horizontal gap between thumbs */
    /*}*/

        /* Circular thumbnail images */
        .tt-trailer-carousel .tt-trailer-thumb img {
            width: 56px;
            height: 56px;
            border-radius: 999px;
            object-fit: cover;
            border: 3px solid #ffffff;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
            opacity: 0.7;
            transition: opacity 0.15s ease-out, transform 0.15s ease-out, box-shadow 0.15s ease-out, border-color 0.15s ease-out;
        }

        /* Hover */
        .tt-trailer-carousel .tt-trailer-thumb:hover img {
            opacity: 0.95;
            transform: translateY(-2px);
        }

        /* Active */
    .tt-trailer-carousel .tt-trailer-thumb.active img {
        opacity: 1;
        width: 84px;
        height: 56px;
        transform: translateY(0px) scale(1.05);
        border-color: var(--tt-red);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35), 0 0 0 2px rgba(225, 66, 58, 0.25);
    }

    /* Pill at the top with a narrow viewport */
    .tt-trailer-carousel .carousel-indicators.tt-trailer-indicators-mute {
        /*position: absolute;*/
        left: 60%;
        top: 5px;
        bottom: auto;
        transform: translateX(35%);
        margin: 0;
        padding: 4px 4px;
        width: 64px; /* narrow window -> 3 full + 2 clipped */
        /*max-width: 100%;*/
        display: flex;
        align-items: center;
        justify-content: flex-start; /* row starts at left; JS will scroll */
        overflow-x: hidden; /* we will scroll programmatically */
        border-radius: 999px;
        background: rgba(0, 0, 0, 0.25);
        backdrop-filter: blur(4px);
        box-shadow: 0 6px 12px rgba(0, 0, 0, 0.35);
        z-index: 10;
    }

    /* Circular thumbnail images */
    .tt-trailer-carousel .tt-trailer-thumb-mute {
        width: 56px;
        height: 56px;
        font-size: 1.8em;
        border-radius: 999px;
        object-fit: cover;
        border: 3px solid #ffffff;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
        opacity: 0.7;
        margin: auto;
        transition: opacity 0.15s ease-out, transform 0.15s ease-out, box-shadow 0.15s ease-out, border-color 0.15s ease-out;
    }

    /* Hover */
    .tt-trailer-carousel .tt-trailer-thumb-mute:hover {
        opacity: 0.95;
        transform: translateY(-2px);
    }

    /* Active */
    .tt-trailer-carousel .tt-trailer-thumb-mute.active {
        opacity: 1;
        width: 84px;
        height: 56px;
        transform: translateY(0px) scale(1.05);
        border-color: var(--tt-red);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35), 0 0 0 2px rgba(225, 66, 58, 0.25);
    }

/* ============================================================
   ORDER DETAILS
   ============================================================ */
.tt-order-collapse-toggle {
    background: transparent;
    border: 0;
    padding: 6px 10px;
    line-height: 1;
    border-radius: 999px;
    color: var(--tt-blue);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

    .tt-order-collapse-toggle:hover {
        color: var(--tt-red);
        background: rgba(24, 46, 77, 0.04); /* subtle tt-blue tint */
    }

    .tt-order-collapse-toggle:focus-visible {
        outline: none;
        box-shadow: 0 0 0 2px rgba(24, 46, 77, 0.15);
    }

    /* Icon switching (no JS needed) */
    .tt-order-collapse-toggle .tt-caret-up {
        display: none;
    }

    .tt-order-collapse-toggle[aria-expanded="true"] .tt-caret-down {
        display: none;
    }

    .tt-order-collapse-toggle[aria-expanded="true"] .tt-caret-up {
        display: inline-block;
    }

    /* Optional: slightly larger caret for tap targets */
    .tt-order-collapse-toggle i {
        font-size: 1.2rem;
    }


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

.tt-video-wrapper {
    position: relative;
    width: 100%;
    z-index: 1;
}

    .tt-video-wrapper video {
        width: 100%;
        display: block;
        border-radius: 1rem;
    }


/* ============================================================
   BIG PLAY / PAUSE BUTTON
   ============================================================ */

.tt-big-toggle {
    position: absolute;
    inset: 0;
    margin: auto;
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 36px;
    border: none;
    background: rgba(0,0,0,.6);
    color: #fff;
    cursor: pointer;
    pointer-events: none;
    transition: opacity 160ms ease;
}

.tt-video-wrapper.controls-hidden .tt-big-toggle {
    opacity: 0;
    pointer-events: none;
}

/* ============================================================
   BUFFERING SPINNER
   ============================================================ */

.tt-buffering {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.15);
    opacity: 0;
    pointer-events: none;
    transition: opacity 160ms ease;
    z-index: 4;
}

.tt-video-wrapper.buffering .tt-buffering {
    opacity: 1;
}

/* Spinner */
.tt-spinner {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 4px solid rgba(255,255,255,0.25);
    border-top-color: #ffffff;
    animation: tt-spin 0.9s linear infinite;
}

@keyframes tt-spin {
    to {
        transform: rotate(360deg);
    }
}


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

.tt-controls {
    position: absolute;
    bottom: 8px;
    left: 8px;
    right: 8px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 6px 10px;
    background: rgba(0,0,0,.6);
    border-radius: 8px;
    transition: opacity 180ms ease;
    z-index: 5;
}

    .tt-controls.tt-controls-hidden {
        opacity: 0;
        pointer-events: none;
    }


/* ============================================================
   CONTROLS ROWS
   ============================================================ */

.tt-controls-row {
    display: flex;
    align-items: center;
    width: 100%;
}

.tt-controls-top {
    justify-content: space-between;
}

.tt-controls-left,
.tt-controls-right {
    display: flex;
    align-items: center;
    gap: 8px;
}

.tt-controls-right {
    margin-left: auto;
}


/* ============================================================
   BUTTONS & TIME
   ============================================================ */

.tt-controls button {
    background: none;
    border: none;
    color: white;
    font-size: 16px;
    cursor: pointer;
}

.tt-time {
    font-size: 0.85rem;
    color: #fff;
    opacity: 0.9;
    white-space: nowrap;
}


/* ============================================================
   VOLUME
   ============================================================ */

.tt-volume {
    width: 80px;
    flex: 0 0 auto;
    accent-color: #ffffff;
    cursor: pointer;
    touch-action: none;
}

.tt-btn-fullscreen {
    margin-left: 4px;
}


/* ============================================================
   SEEK BAR (SINGLE SOURCE OF TRUTH)
   ============================================================ */

.tt-controls-bottom {
    width: 100%;
}

/* Wrapper */
.tt-seek-wrap {
    position: relative;
    width: 100%;
    height: 14px;
}

/* Visual track */
.tt-seek-track {
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 3px;
    background: rgba(255,255,255,0.25);
    border-radius: 999px;
    overflow: hidden;
    transition: height 120ms ease;
}

/* Buffered */
.tt-seek-buffer {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0%;
    background: rgba(255,255,255,0.4);
    border-radius: inherit;
}

/* Played */
.tt-seek-played {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0%;
    background: #ffffff;
    border-radius: inherit;
}

.tt-seek-track,
.tt-seek-buffer,
.tt-seek-played {
    pointer-events: none;
}

/* Hover thickening */
.tt-controls:hover .tt-seek-track {
    height: 6px;
}


/* ============================================================
   RANGE INPUT (INTERACTION ONLY)
   ============================================================ */

.tt-progress {
    position: relative;
    width: 100%;
    height: 14px;
    background: none;
    appearance: none;
    cursor: pointer;
    -webkit-appearance: none;
    z-index: 5;
    touch-action: none;
}

    /* Hide native track */
    .tt-progress::-webkit-slider-runnable-track {
        background: transparent;
    }

    /* THUMB — PERFECTLY CENTERED */
    .tt-progress::-webkit-slider-thumb {
        appearance: none;
        width: 14px;
        height: 14px;
        border-radius: 50%;
        background: #ffffff;
        margin-top: -5.5px; /* EXACT CENTERING: (14 - 3) / 2 */
    }

    .tt-progress::-moz-range-thumb {
        width: 14px;
        height: 14px;
        border-radius: 50%;
        background: #ffffff;
        border: none;
    }


/* ============================================================
   Blazor reconnect overlay – tactac.love style
   ============================================================ */

#components-reconnect-modal {
    position: fixed;
    inset: 0;
    z-index: 2100;
    display: none; /* hidden by default */
    align-items: center;
    justify-content: center;
    background: rgba(15, 23, 42, 0.18); /* soft dark overlay */
    backdrop-filter: blur(4px);
    pointer-events: none; /* only active when visible */
}

    /* Base: hide all inner states */
    #components-reconnect-modal .tt-reconnect {
        display: none;
    }

    /* While trying to reconnect */
    #components-reconnect-modal.components-reconnect-show {
        display: flex;
        pointer-events: auto;
    }

        #components-reconnect-modal.components-reconnect-show .tt-reconnect-show {
            display: flex;
        }

    /* When reconnection failed or was rejected */
    #components-reconnect-modal.components-reconnect-failed,
    #components-reconnect-modal.components-reconnect-rejected {
        display: flex;
        pointer-events: auto;
    }

        #components-reconnect-modal.components-reconnect-failed .tt-reconnect-failed,
        #components-reconnect-modal.components-reconnect-rejected .tt-reconnect-failed {
            display: flex;
        }

    /* Panel uses tactac.love card look & feel */
    #components-reconnect-modal .tt-reconnect-panel {
        background: var(--tt-card);
        border: 1px solid var(--tt-border);
        border-radius: 16px;
        box-shadow: 0 18px 45px rgba(15, 23, 42, 0.25);
        padding: 12px 16px;
        display: flex;
        align-items: center;
        gap: 12px;
        max-width: 320px;
        margin: 0 16px;
    }

    /* Reconnect overlay spinner – visible on white card */
    #components-reconnect-modal .tt-spinner {
        width: 30px;
        height: 30px;
        border-radius: 50%;
        border-width: 3px;
        border-style: solid;
        border-color: rgba(24, 46, 77, 0.15); /* soft blue ring */
        border-top-color: var(--tt-blue); /* brand blue */
        animation: tt-spin 0.9s linear infinite;
    }

    /* Text styling aligned with your brand colors */
    #components-reconnect-modal .tt-reconnect-text {
        display: flex;
        flex-direction: column;
        gap: 2px;
    }

    #components-reconnect-modal .tt-reconnect-title {
        font-size: 0.95rem;
        font-weight: 600;
        color: var(--tt-blue);
    }

    #components-reconnect-modal .tt-reconnect-subtitle {
        font-size: 0.8rem;
        color: var(--tt-muted);
    }

/* Small tweak for very small viewports */
@media (max-width: 400px) {
    #components-reconnect-modal .tt-reconnect-panel {
        max-width: 280px;
        padding: 10px 14px;
    }
}

@media (min-width: 576px) {
    .tt-trailer-carousel .carousel-indicators.tt-trailer-indicators-mute {
        left: 68%;
    }
}

@media (min-width: 768px) {
    .tt-trailer-carousel .carousel-indicators.tt-trailer-indicators-mute {
        left: 64%;
    }
}

@media (min-width: 992px) {
    .tt-trailer-carousel .carousel-indicators.tt-trailer-indicators-mute {
        left: 60%;
    }
}


/* Small screens */
@media (max-width: 576px) {
    .grecaptcha-badge {
        transform: scale(0.75);
        -webkit-transform: scale(0.75);
        transform-origin: right bottom;
        -webkit-transform-origin: right bottom;
    }

    html, body {
        overflow-x: hidden;
    }

    /*.fixed-top {
        box-sizing: border-box;
        left: 0;*/ /* keep it pinned to the left */
        /*right: auto;*/ /* STOP stretching to 100vw */
        /*width: 100%;*/ /* use layout viewport width instead */
    /*}*/

    .navbar-toggler {
        margin-right: 12px;
    }

    .container, .container-fluid {
        padding-right: 0px;
        padding-left: 0px;
    }

    .tt-hero, .tt-hero-subtitle {
        padding-right: 10px;
        padding-left: 10px;
    }

    .tt-trailer-carousel .carousel-indicators.tt-trailer-indicators {
        width: 240px;
        padding: 3px 8px;
        top: 10px;
    }

    .tt-trailer-carousel .carousel-indicators.tt-trailer-indicators-mute {
        left: 70%;
        width: 44px;
        top: 10px;
    }

    .tt-trailer-carousel .tt-trailer-thumb-mute {
        width: 36px;
        height: 36px;
        font-size: 1.2em;
    }

    .tt-vid-frame {
        margin-top: 55px;
    }

    .tt-trailer-carousel .tt-trailer-thumb img {
        width: 38px;
        height: 38px;
    }

    .tt-trailer-carousel .tt-trailer-thumb.active img {
        width: 57px;
        height: 38px;
    }

    .tt-hero-title {
        font-size: 1.45rem; /* slightly smaller than display-6 default */
        max-width: 24ch;
        margin: auto;
    }

    .tt-hero-subtitle {
        font-size: 1rem;
        max-width: 34ch;
        margin: auto;
    }

    .btn-primary, .btn-outline-secondary {
        font-weight: 500;
        min-width: 152px;
    }

        .btn-primary:hover, .btn-primary:focus, .btn-primary:active, .btn-outline-secondary:active, .btn-outline-secondary:focus {
            font-weight: 500;
            min-width: 152px;
        }


    .tt-carousel-control {
        margin-top: 15px;
    }

    .tt-big-toggle {
        margin-top: 15px;
        width: 62px;
        height: 62px;
        font-size: 28px;
    }

    /* Allow the slide content to overflow horizontally */
    .tt-trailer-carousel .carousel-inner {
        overflow: visible;
    }

    /* Stretch only the video frame to full viewport width */
    .tt-trailer-carousel .tt-vid-frame {
        position: relative;
        left: 50%;
        width: 100vw;
        max-width: none;
        margin-left: -50vw; /* center 100vw inside container */
        margin-right: 0;
        margin-top: 55px; /* keep your existing top spacing */
        border: none;
        border-radius: 0;
    }

    .tt-card .tt-vid-frame {
        position: relative;
        left: 50%;
        width: 100vw;
        max-width: none;
        margin-left: -50vw; /* center 100vw inside container */
        margin-right: 0;
        margin-top: 55px; /* keep your existing top spacing */
        border: none;
        border-radius: 0;
    }

    /* Remove rounded corners from the video wrapper + video itself */
    .tt-trailer-carousel .tt-video-wrapper,
    .tt-trailer-carousel .tt-video-wrapper video {
        border-radius: 0;
    }

    .rounded-4 {
        border-radius: 0 !important;
    }
}

/* Small screens */
@media (max-width: 400px) {

    .btn-primary, .btn-outline-secondary {
        font-weight: 500;
        min-width: 148px;
    }

        .btn-primary:hover, .btn-primary:focus, .btn-primary:active, .btn-outline-secondary:active, .btn-outline-secondary:focus {
            font-weight: 500;
            min-width: 148px;
        }

    .tt-trailer-carousel .carousel-indicators.tt-trailer-indicators {
        transform: translateX(-62%);
    }

    .tt-trailer-carousel .carousel-indicators.tt-trailer-indicators-mute {
        left: 78%;
    }

    .tt-volume {
        display: none;
    }
}