/* =========================================================
   REELIX — PREMIUM MOVIE & EVENT BOOKING PLATFORM
   Main Stylesheet
========================================================= */


/* =========================================================
   1. ROOT VARIABLES
========================================================= */

:root {

    --bg: #09090c;
    --bg-soft: #101015;
    --bg-card: #15151c;
    --bg-elevated: #1b1b23;

    --crimson: #e51b3e;
    --crimson-dark: #b90f2c;
    --crimson-light: #ff4262;

    --white: #ffffff;
    --text: #f5f5f7;
    --text-soft: #b4b4bd;
    --text-muted: #777781;

    --border: rgba(255, 255, 255, 0.09);
    --border-light: rgba(255, 255, 255, 0.15);

    --glass: rgba(20, 20, 27, 0.72);

    --shadow: 0 25px 70px rgba(0, 0, 0, 0.45);

    --radius-sm: 10px;
    --radius: 18px;
    --radius-lg: 28px;

    --container: 1320px;

    --font-body: "DM Sans", sans-serif;
    --font-heading: "Outfit", sans-serif;

    --transition: 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}


/* =========================================================
   2. RESET
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background: var(--bg);
    color: var(--text);
    overflow-x: hidden;
    line-height: 1.6;
}

body.modal-open {
    overflow: hidden;
}

button,
input,
select {
    font: inherit;
}

button {
    border: 0;
    cursor: pointer;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    display: block;
    width: 100%;
}

::selection {
    background: var(--crimson);
    color: white;
}


/* =========================================================
   3. CUSTOM SCROLLBAR
========================================================= */

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #09090c;
}

::-webkit-scrollbar-thumb {
    background: #383841;
    border-radius: 20px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--crimson);
}


/* =========================================================
   4. PAGE LOADER
========================================================= */

.page-loader {
    position: fixed;
    inset: 0;
    z-index: 99999;

    background: #09090c;

    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;

    transition:
        opacity 0.7s ease,
        visibility 0.7s ease;
}

.page-loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-logo {
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 800;
    letter-spacing: -2px;
}

.loader-logo b {
    color: var(--crimson);
}

.loader-line {
    width: 150px;
    height: 2px;
    margin-top: 18px;

    background: linear-gradient(
        90deg,
        transparent,
        var(--crimson),
        transparent
    );

    animation: loaderMove 1.4s infinite ease-in-out;
}

@keyframes loaderMove {

    0% {
        transform: scaleX(0);
        opacity: 0;
    }

    50% {
        transform: scaleX(1);
        opacity: 1;
    }

    100% {
        transform: scaleX(0);
        opacity: 0;
    }
}


/* =========================================================
   5. NAVBAR
========================================================= */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;

    z-index: 1000;

    transition:
        background 0.4s ease,
        box-shadow 0.4s ease,
        padding 0.4s ease;
}

.navbar.scrolled {
    background: rgba(9, 9, 12, 0.86);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);

    box-shadow:
        0 10px 40px rgba(0, 0, 0, 0.25);

    border-bottom: 1px solid var(--border);
}

.nav-container {
    max-width: var(--container);
    margin: auto;

    min-height: 88px;

    padding: 0 28px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 35px;
}


/* =========================================================
   6. LOGO
========================================================= */

.logo {
    display: flex;
    align-items: center;
    gap: 11px;

    flex-shrink: 0;
}

.logo-mark {
    width: 42px;
    height: 42px;

    border-radius: 13px;

    background:
        linear-gradient(
            145deg,
            var(--crimson-light),
            var(--crimson-dark)
        );

    display: grid;
    place-items: center;

    box-shadow:
        0 8px 25px rgba(229, 27, 62, 0.35);

    transform: rotate(-4deg);

    transition: var(--transition);
}

.logo:hover .logo-mark {
    transform: rotate(0deg) scale(1.08);
}

.logo-mark i {
    color: white;
    font-size: 15px;
    margin-left: 2px;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-text strong {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 800;
    letter-spacing: -1px;
}

.logo-text strong span {
    color: var(--crimson);
}

.logo-text small {
    margin-top: 5px;

    font-size: 6px;
    letter-spacing: 2px;
    color: var(--text-muted);
}


/* =========================================================
   7. MAIN NAV
========================================================= */

.main-nav {
    display: flex;
    align-items: center;
     
    margin-left: auto;
}

.main-nav a {
    position: relative;

    color: var(--text-soft);

    font-size: 14px;
    font-weight: 600;

    transition: var(--transition);
}

.main-nav a::after {
    content: "";

    position: absolute;
    left: 50%;
    bottom: -9px;

    width: 0;
    height: 2px;

    background: var(--crimson);

    transform: translateX(-50%);

    transition: var(--transition);
}

.main-nav a:hover,
.main-nav a.active {
    color: white;
}

.main-nav a:hover::after,
.main-nav a.active::after {
    width: 20px;
}


/* =========================================================
   8. NAV ACTIONS
========================================================= */

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.search-trigger,
.location-selector {
    background: transparent;
    color: var(--text-soft);

    display: flex;
    align-items: center;
    gap: 8px;

    padding: 10px 12px;

    font-size: 13px;

    transition: var(--transition);
}

.search-trigger:hover,
.location-selector:hover {
    color: white;
}

.location-selector {
    border-left: 1px solid var(--border);
    padding-left: 18px;
}

.location-selector i:first-child {
    color: var(--crimson);
}

.location-selector i:last-child {
    font-size: 9px;
    margin-left: 2px;
}

.signin-btn {
    background: white;
    color: #111;

    padding: 10px 19px;

    border-radius: 999px;

    font-size: 13px;
    font-weight: 700;

    transition: var(--transition);
}

.signin-btn:hover {
    background: var(--crimson);
    color: white;

    transform: translateY(-2px);

    box-shadow:
        0 10px 25px rgba(229, 27, 62, 0.3);
}


/* =========================================================
   9. MOBILE MENU BUTTON
========================================================= */

.mobile-menu-btn {
    width: 42px;
    height: 42px;

    display: none;

    flex-direction: column;
    align-items: center;
    justify-content: center;

    gap: 5px;

    background: rgba(255, 255, 255, 0.06);

    border: 1px solid var(--border);

    border-radius: 12px;
}

.mobile-menu-btn span {
    width: 19px;
    height: 2px;

    background: white;

    border-radius: 20px;

    transition: var(--transition);
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}


/* =========================================================
   10. MOBILE NAV
========================================================= */

.mobile-nav {
    display: none;

    padding: 18px 28px 25px;

    background: rgba(9, 9, 12, 0.97);

    border-top: 1px solid var(--border);

    animation: mobileNavIn 0.3s ease;
}

.mobile-nav.open {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.mobile-nav a {
    padding: 13px 10px;

    color: var(--text-soft);

    border-bottom: 1px solid var(--border);

    font-weight: 600;
}

.mobile-nav a:hover {
    color: white;
}

.mobile-location,
.mobile-signin {
    margin-top: 12px;

    width: 100%;

    padding: 13px;

    border-radius: 10px;
}

.mobile-location {
    background: rgba(255,255,255,0.06);
    color: white;
}

.mobile-location i {
    color: var(--crimson);
    margin-right: 7px;
}

.mobile-signin {
    background: var(--crimson);
    color: white;
    font-weight: 700;
}

@keyframes mobileNavIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* =========================================================
   11. HERO
========================================================= */

.hero {
    position: relative;

    height: min(850px, 100vh);
    min-height: 680px;

    overflow: hidden;
}

.hero-slider {
    height: 100%;
    position: relative;
}

.hero-slide {
    position: absolute;
    inset: 0;

    background-size: cover;
    background-position: center;

    opacity: 0;

    transform: scale(1.04);

    transition:
        opacity 1s ease,
        transform 7s ease;

    pointer-events: none;
}

.hero-slide.active {
    opacity: 1;
    transform: scale(1);

    pointer-events: auto;
}

.hero-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(7,7,10,0.98) 0%,
            rgba(7,7,10,0.86) 35%,
            rgba(7,7,10,0.3) 70%,
            rgba(7,7,10,0.5) 100%
        );

    z-index: 1;

    /* VERY IMPORTANT */
    pointer-events: none;
}


/* Overlay ke decorative layer ko bhi click block nahi karna */
.hero-overlay::after {
    pointer-events: none;
}

.hero-overlay::after {
    content: "";

    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            0deg,
            var(--bg) 0%,
            transparent 25%,
            transparent 75%,
            rgba(0,0,0,0.45) 100%
        );
}

.hero-content {
    position: relative;

    z-index: 10;

    max-width: var(--container);

    height: 100%;

    margin: auto;

    padding:
        190px 28px
        110px;

    display: flex;

    justify-content: center;

    flex-direction: column;

    align-items: flex-start;

    pointer-events: auto;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    color: #ff6b83;

    font-size: 11px;
    font-weight: 800;

    letter-spacing: 3px;

    margin-bottom: 18px;
}

.hero-eyebrow::before {
    content: "";

    width: 28px;
    height: 2px;

    background: var(--crimson);
}

.hero-content h1 {
    max-width: 700px;

    font-family: var(--font-heading);

    font-size: clamp(54px, 7vw, 96px);

    font-weight: 800;

    line-height: 0.92;

    letter-spacing: -4px;

    margin-bottom: 25px;

    animation: heroTextIn 0.8s ease;
}

.hero-content p {
    max-width: 550px;

    color: #d0d0d5;

    font-size: 16px;

    line-height: 1.7;

    margin-bottom: 25px;
}

.hero-meta {
    display: flex;
    align-items: center;
    gap: 16px;

    margin-bottom: 30px;

    color: #d2d2d8;

    font-size: 13px;
}

.hero-meta > span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.hero-meta > span:not(:last-child)::after {
    content: "•";

    margin-left: 10px;

    color: #55555e;
}

.hero-meta .rating {
    color: #ffd75a;

    font-weight: 700;
}

.hero-buttons {
    display: flex;
    align-items: center;
    gap: 12px;
}

.primary-btn,
.secondary-btn {
    min-height: 48px;

    padding: 0 23px;

    border-radius: 999px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;

    font-size: 13px;
    font-weight: 700;

    transition: var(--transition);
}

.primary-btn {
    background: var(--crimson);
    color: white;

    box-shadow:
        0 12px 30px rgba(229, 27, 62, 0.25);
}

.primary-btn:hover {
    background: var(--crimson-light);

    transform: translateY(-3px);

    box-shadow:
        0 18px 35px rgba(229, 27, 62, 0.35);
}

.secondary-btn {
    background: rgba(255,255,255,0.08);

    border: 1px solid rgba(255,255,255,0.18);

    color: white;

    backdrop-filter: blur(10px);
}

.secondary-btn:hover {
    background: white;
    color: #111;

    transform: translateY(-3px);
}

@keyframes heroTextIn {

    from {
        opacity: 0;
        transform: translateY(25px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* =========================================================
   12. HERO CONTROLS
========================================================= */

.hero-controls {
    position: absolute;

    z-index: 5;

    bottom: 48px;
    right: max(28px, calc((100% - var(--container)) / 2 + 28px));

    display: flex;
    align-items: center;
    gap: 12px;
}

.hero-controls > button {
    width: 42px;
    height: 42px;

    border-radius: 50%;

    border: 1px solid rgba(255,255,255,0.2);

    background: rgba(0,0,0,0.3);

    color: white;

    backdrop-filter: blur(8px);

    transition: var(--transition);
}

.hero-controls > button:hover {
    background: white;
    color: #111;
}

.hero-dots {
    display: flex;
    align-items: center;
    gap: 7px;
}

.hero-dots button {
    width: 6px;
    height: 6px;

    border-radius: 50%;

    background: rgba(255,255,255,0.35);

    transition: var(--transition);
}

.hero-dots button.active {
    width: 28px;

    border-radius: 20px;

    background: var(--crimson);
}

.hero-scroll {
    position: absolute;

    z-index: 4;

    left: max(28px, calc((100% - var(--container)) / 2 + 28px));
    bottom: 45px;

    display: flex;
    align-items: center;
    gap: 12px;

    color: #8d8d96;

    font-size: 9px;

    letter-spacing: 2px;

    writing-mode: horizontal-tb;
}

.hero-scroll i {
    color: var(--crimson);

    animation: scrollBounce 1.5s infinite;
}

@keyframes scrollBounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(5px);
    }
}


/* =========================================================
   13. CONTENT SECTION
========================================================= */

.content-section {
    max-width: var(--container);

    margin: auto;

   
}

.section-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    gap: 30px;

    margin-bottom: 38px;
}

.section-label {
    display: block;

    color: var(--crimson);

    font-size: 10px;
    font-weight: 800;

    letter-spacing: 2.5px;

    margin-bottom: 9px;
}

.section-heading h2,
.sports-header h2 {
    font-family: var(--font-heading);

    font-size: clamp(34px, 4vw, 48px);

    line-height: 1;

    letter-spacing: -2px;
}

.section-heading h2 span,
.sports-header h2 span {
    color: var(--crimson);
}

.section-navigation {
    display: flex;
    align-items: center;
    gap: 8px;
}

.scroll-btn {
    width: 40px;
    height: 40px;

    display: grid;
    place-items: center;

    background: rgba(255,255,255,0.05);

    border: 1px solid var(--border);

    color: white;

    border-radius: 50%;

    transition: var(--transition);
}

.scroll-btn:hover {
    background: var(--crimson);

    border-color: var(--crimson);

    transform: translateY(-2px);
}

.view-all {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    margin-left: 15px;

    color: var(--text-soft);

    font-size: 12px;
    font-weight: 700;

    transition: var(--transition);
}

.view-all:hover {
    color: var(--crimson);
}

.view-all i {
    font-size: 10px;
}


/* =========================================================
   14. MOVIE HORIZONTAL GRID
========================================================= */

.movie-horizontal-grid {
    display: flex;

    gap: 20px;

    overflow-x: auto;

    scroll-behavior: smooth;

    padding:
        5px
        5px
        25px;

    scrollbar-width: none;

    cursor: grab;
}

.movie-horizontal-grid:active {
    cursor: grabbing;
}

.movie-horizontal-grid::-webkit-scrollbar {
    display: none;
}


/* =========================================================
   15. MOVIE CARD
========================================================= */

.movie-card {
    flex: 0 0 225px;

    min-width: 225px;

    position: relative;

    transition: var(--transition);
}

.movie-horizontal-grid .movie-card {
    flex-basis: 225px;
}

.movie-card:hover {
    transform: translateY(-8px);
}

.movie-poster {
    position: relative;

    aspect-ratio: 0.69;

    overflow: hidden;

    border-radius: var(--radius);

    background: var(--bg-card);

    border: 1px solid var(--border);
}

.movie-poster::after {
    content: "";

    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            0deg,
            rgba(0,0,0,0.65),
            transparent 40%
        );

    pointer-events: none;
}

.movie-poster img {
    height: 100%;

    object-fit: cover;

    transition:
        transform 0.7s cubic-bezier(.2,.8,.2,1),
        filter 0.5s ease;
}

.movie-card:hover .movie-poster img {
    transform: scale(1.08);

    filter: brightness(0.72);
}


/* =========================================================
   16. POSTER OVERLAY
========================================================= */

.poster-overlay {
    position: absolute;

    inset: 0;

    z-index: 3;

    display: flex;
    align-items: flex-end;
    justify-content: center;

    padding: 18px;

    opacity: 0;

    transition: var(--transition);

    background:
        linear-gradient(
            0deg,
            rgba(0,0,0,0.75),
            transparent 55%
        );
}

.movie-card:hover .poster-overlay {
    opacity: 1;
}

.quick-book {
    width: 100%;

    padding: 11px;

    border-radius: 10px;

    background: white;
    color: #111;

    font-size: 12px;
    font-weight: 800;

    transform: translateY(12px);

    transition: var(--transition);
}

.movie-card:hover .quick-book {
    transform: translateY(0);
}

.quick-book:hover {
    background: var(--crimson);
    color: white;
}


/* =========================================================
   17. FAVOURITE BUTTON
========================================================= */

.favourite-btn {
    position: absolute;

    top: 12px;
    right: 12px;

    z-index: 5;

    width: 34px;
    height: 34px;

    border-radius: 50%;

    background: rgba(0,0,0,0.45);

    border: 1px solid rgba(255,255,255,0.14);

    color: white;

    backdrop-filter: blur(8px);

    display: grid;
    place-items: center;

    transition: var(--transition);
}

.favourite-btn:hover,
.favourite-btn.active {
    background: var(--crimson);

    border-color: var(--crimson);

    transform: scale(1.08);
}

.favourite-btn.active i::before {
    content: "\f004";
    font-weight: 900;
}


/* =========================================================
   18. MOVIE RATING
========================================================= */

.movie-rating {
    position: absolute;

    z-index: 4;

    left: 12px;
    bottom: 12px;

    padding: 5px 8px;

    border-radius: 7px;

    background: rgba(0,0,0,0.72);

    color: #ffd65c;

    font-size: 10px;
    font-weight: 800;

    backdrop-filter: blur(7px);
}

.movie-rating i {
    margin-right: 3px;
}


/* =========================================================
   19. MOVIE INFO
========================================================= */

.movie-info {
    padding: 14px 3px;
}

.movie-info h3 {
    font-family: var(--font-heading);

    font-size: 17px;

    line-height: 1.25;

    font-weight: 700;

    margin-bottom: 5px;

    white-space: nowrap;

    overflow: hidden;

    text-overflow: ellipsis;
}

.movie-info p {
    color: var(--text-muted);

    font-size: 11px;

    display: flex;
    align-items: center;
    gap: 7px;
}

.movie-info p span {
    color: #55555e;
}

.card-book-btn {
    margin-top: 13px;

    width: 100%;

    padding: 10px;

    border-radius: 9px;

    background: rgba(229,27,62,0.09);

    border: 1px solid rgba(229,27,62,0.25);

    color: #ff617c;

    font-size: 11px;

    font-weight: 700;

    display: flex;
    align-items: center;
    justify-content: space-between;

    transition: var(--transition);
}

.card-book-btn:hover {
    background: var(--crimson);

    color: white;

    border-color: var(--crimson);
}


/* =========================================================
   20. VIBE SECTION
========================================================= */

.vibe-section {
    margin-top: 50px;

   

    position: relative;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 20% 50%,
            rgba(229,27,62,0.14),
            transparent 35%
        ),
        linear-gradient(
            120deg,
            #111117,
            #0b0b0f
        );

    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.vibe-content {
    max-width: var(--container);
padding: 40px;
    margin: auto;
}

.vibe-content h2 {
    font-family: var(--font-heading);

    font-size: clamp(44px, 6vw, 70px);

    letter-spacing: -3px;

    line-height: 0.95;

    margin-bottom: 15px;
}

.vibe-content h2 em {
    color: var(--crimson);

    font-style: normal;
}

.vibe-content > p {
    color: var(--text-muted);

    margin-bottom: 38px;
}

.genre-buttons {
    display: flex;

    flex-wrap: wrap;

    gap: 11px;
}

.genre-btn {
    padding: 13px 18px;

    border-radius: 999px;

    border: 1px solid var(--border);

    background: rgba(255,255,255,0.035);

    color: var(--text-soft);

    display: flex;
    align-items: center;
    gap: 8px;

    font-size: 12px;
    font-weight: 700;

    transition: var(--transition);
}

.genre-icon {
    font-size: 15px;

    color: var(--crimson);
}

.genre-btn:hover {
    transform: translateY(-3px);

    border-color: rgba(229,27,62,0.45);

    color: white;
}

.genre-btn.active {
    background: var(--crimson);

    border-color: var(--crimson);

    color: white;

    box-shadow:
        0 10px 30px rgba(229,27,62,0.2);
}

.genre-btn.active .genre-icon {
    color: white;
}


/* =========================================================
   21. NOW SHOWING
========================================================= */

.now-showing-section {
    padding-top: 110px;
}

.movie-grid {
    display: grid;

    grid-template-columns:
        repeat(5, minmax(0, 1fr));

    gap: 28px 20px;
}

.filter-tabs {
    display: flex;

    gap: 6px;

    padding: 4px;

    border-radius: 999px;

    background: rgba(255,255,255,0.04);

    border: 1px solid var(--border);
}

.filter-tab {
    padding: 8px 14px;

    border-radius: 999px;

    background: transparent;

    color: var(--text-muted);

    font-size: 11px;

    font-weight: 700;

    transition: var(--transition);
}

.filter-tab:hover {
    color: white;
}

.filter-tab.active {
    background: white;
    color: #111;
}


/* =========================================================
   22. UPCOMING SECTION
========================================================= */

.upcoming-section {
    margin-top: 110px;

    padding:
        90px max(28px, calc((100% - var(--container)) / 2 + 28px));

    background:
        linear-gradient(
            180deg,
            #101015,
            #08080b
        );

    border-top: 1px solid var(--border);
}

.light-heading {
    max-width: var(--container);

    margin-left: auto;
    margin-right: auto;
}

.light-view {
    color: var(--text-soft);
}

.upcoming-grid {
    max-width: var(--container);

    margin: auto;

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 18px;
}

.upcoming-card {
    position: relative;

    height: 420px;

    overflow: hidden;

    border-radius: var(--radius-lg);

    border: 1px solid var(--border);

    transition: var(--transition);
}

.upcoming-card:hover {
    transform: translateY(-6px);

    border-color: rgba(229,27,62,0.35);
}

.upcoming-card img {
    height: 100%;

    object-fit: cover;

    transition: transform 0.8s ease;
}

.upcoming-card:hover img {
    transform: scale(1.06);
}

.upcoming-card::after {
    content: "";

    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            0deg,
            rgba(5,5,7,0.96),
            rgba(5,5,7,0.05) 65%
        );
}

.upcoming-overlay {
    position: absolute;

    z-index: 2;

    inset: auto 24px 24px;

    display: flex;

    flex-direction: column;

    gap: 16px;
}

.release-date {
    display: flex;

    align-items: center;

    justify-content: space-between;

    color: white;

    padding-bottom: 12px;

    border-bottom: 1px solid rgba(255,255,255,0.13);
}

.release-date small {
    font-size: 8px;

    letter-spacing: 2px;

    color: #9999a1;
}

.release-date strong {
    color: #ff657e;

    font-size: 12px;
}

.upcoming-genre {
    color: #ff657e;

    font-size: 9px;

    text-transform: uppercase;

    letter-spacing: 1.5px;
}

.upcoming-overlay h3 {
    font-family: var(--font-heading);

    font-size: 28px;

    line-height: 1.05;

    letter-spacing: -1px;
}

.reminder-btn {
    align-self: flex-start;

    padding: 10px 15px;

    border-radius: 999px;

    background: rgba(255,255,255,0.1);

    border: 1px solid rgba(255,255,255,0.18);

    color: white;

    backdrop-filter: blur(10px);

    font-size: 11px;

    font-weight: 700;

    display: flex;

    align-items: center;

    gap: 8px;

    transition: var(--transition);
}

.reminder-btn:hover,
.reminder-btn.active {
    background: var(--crimson);

    border-color: var(--crimson);
}


/* =========================================================
   23. EVENTS
========================================================= */

.events-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 18px;
}

.event-card {
    border-radius: var(--radius);

    overflow: hidden;

    background: var(--bg-card);

    border: 1px solid var(--border);

    transition: var(--transition);
}

.event-card:hover {
    transform: translateY(-7px);

    border-color: rgba(229,27,62,0.25);

    box-shadow: var(--shadow);
}

.event-image {
    position: relative;

    height: 230px;

    overflow: hidden;
}

.event-image img {
    height: 100%;

    object-fit: cover;

    transition: transform 0.7s ease;
}

.event-card:hover .event-image img {
    transform: scale(1.08);
}

.event-type {
    position: absolute;

    top: 14px;
    left: 14px;

    padding: 6px 9px;

    border-radius: 6px;

    background: rgba(0,0,0,0.65);

    border: 1px solid rgba(255,255,255,0.12);

    backdrop-filter: blur(8px);

    color: white;

    font-size: 9px;

    font-weight: 800;

    text-transform: uppercase;

    letter-spacing: 1px;
}

.event-details {
    padding: 18px;
}

.event-date {
    display: flex;

    align-items: center;

    justify-content: space-between;

    margin-bottom: 12px;
}

.event-date strong {
    color: var(--crimson);

    font-size: 12px;
}

.event-date span {
    color: var(--text-muted);

    font-size: 10px;
}

.event-details h3 {
    font-family: var(--font-heading);

    font-size: 19px;

    margin-bottom: 17px;
}

.event-book-btn {
    width: 100%;

    display: flex;

    align-items: center;

    justify-content: space-between;

    padding: 10px 0;

    color: var(--text-soft);

    background: transparent;

    border-top: 1px solid var(--border);

    font-size: 11px;

    font-weight: 700;

    transition: var(--transition);
}

.event-book-btn:hover {
    color: var(--crimson);
}


/* =========================================================
   24. SPORTS SECTION
========================================================= */

.sports-section {
    margin-top: 100px;

    padding:
        100px max(28px, calc((100% - var(--container)) / 2 + 28px));

    background:
        radial-gradient(
            circle at 90% 20%,
            rgba(229,27,62,0.12),
            transparent 30%
        ),
        #0d0d12;

    border-top: 1px solid var(--border);
}

.sports-header {
    max-width: var(--container);

    margin: auto auto 38px;

    display: flex;

    justify-content: space-between;

    align-items: flex-end;
}

.sports-header p {
    color: var(--text-muted);

    margin-top: 12px;
}

.sports-grid {
    max-width: var(--container);

    margin: auto;

    display: grid;

    grid-template-columns:
        1.4fr 1fr 1fr;

    gap: 18px;
}

.sport-card {
    position: relative;

    height: 330px;

    overflow: hidden;

    border-radius: var(--radius-lg);

    border: 1px solid var(--border);
}

.sport-card img {
    height: 100%;

    object-fit: cover;

    transition: transform 0.8s ease;
}

.sport-card:hover img {
    transform: scale(1.08);
}

.sport-card::after {
    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            0deg,
            rgba(5,5,8,0.95),
            transparent 65%
        );
}

.sport-overlay {
    position: absolute;

    z-index: 2;

    left: 22px;
    right: 22px;
    bottom: 20px;
}

.sport-overlay > span {
    color: #ff637c;

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 2px;

    text-transform: uppercase;
}

.sport-overlay h3 {
    font-family: var(--font-heading);

    font-size: 25px;

    margin: 4px 0 13px;
}

.sport-btn {
    padding: 8px 13px;

    border-radius: 999px;

    background: rgba(255,255,255,0.09);

    border: 1px solid rgba(255,255,255,0.15);

    color: white;

    font-size: 10px;

    font-weight: 700;

    display: inline-flex;

    align-items: center;

    gap: 7px;

    transition: var(--transition);
}

.sport-btn:hover {
    background: white;
    color: #111;
}


/* =========================================================
   25. FINAL CTA
========================================================= */

.final-cta {
    position: relative;

    margin-top: 100px;

    min-height: 500px;

    

    place-items: center;

    text-align: center;

    overflow: hidden;

    background:
        radial-gradient(
            circle at center,
            rgba(229,27,62,0.18),
            transparent 38%
        );
}

.cta-glow {
    position: absolute;

    width: 500px;
    height: 500px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(229,27,62,0.14),
            transparent 65%
        );

    filter: blur(25px);

    animation: ctaGlow 5s infinite alternate ease-in-out;
}

@keyframes ctaGlow {

    from {
        transform: scale(0.8);
    }

    to {
        transform: scale(1.2);
    }
}

.cta-content {
    position: relative;

    z-index: 2;

    padding: 60px 25px;
}

.cta-content > span {
    color: var(--crimson);

    font-size: 9px;

    letter-spacing: 3px;

    font-weight: 800;
}

.cta-content h2 {
    font-family: var(--font-heading);

    font-size: clamp(45px, 7vw, 82px);

    line-height: 0.9;

    letter-spacing: -4px;

    margin: 20px 0;
}

.cta-content h2 em {
    color: var(--crimson);

    font-style: normal;
}

.cta-content p {
    max-width: 500px;

    margin: auto auto 28px;

    color: var(--text-muted);

    font-size: 14px;
}


/* =========================================================
   26. FOOTER
========================================================= */

.footer {
    border-top: 1px solid var(--border);

    background: #070709;
}

.footer-main {
    max-width: var(--container);

    margin: auto;

    
    

    grid-template-columns:
        1.7fr
        1fr
        1fr
        1fr
        1.4fr;

    gap: 45px;
}

.footer-brand > p {
    max-width: 270px;

    margin: 22px 0;

    color: var(--text-muted);

    font-size: 12px;

    line-height: 1.7;
}

.social-links {
    display: flex;

    gap: 8px;
}

.social-links a {
    width: 34px;
    height: 34px;

    border-radius: 50%;

    display: grid;
    place-items: center;

    background: rgba(255,255,255,0.05);

    border: 1px solid var(--border);

    color: var(--text-soft);

    font-size: 12px;

    transition: var(--transition);
}

.social-links a:hover {
    background: var(--crimson);

    color: white;

    border-color: var(--crimson);

    transform: translateY(-3px);
}

.footer-column,
.footer-app {
    display: flex;

    flex-direction: column;

    align-items: flex-start;
    padding: 40px;
}

.footer-column h4,
.footer-app h4 {
    font-size: 9px;

    letter-spacing: 2px;

    color: white;

    margin-bottom: 19px;
}

.footer-column a {
    color: var(--text-muted);

    font-size: 11px;

    margin-bottom: 11px;

    transition: var(--transition);
}

.footer-column a:hover {
    color: white;

    transform: translateX(3px);
}

.footer-app > p {
    color: var(--text-muted);

    font-size: 11px;

    max-width: 200px;

    margin-bottom: 15px;
}

.app-buttons {
    display: flex;

    flex-direction: column;

    gap: 8px;
}

.app-button {
    display: flex;

    align-items: center;

    gap: 10px;

    width: 155px;

    padding: 8px 11px;

    border-radius: 8px;

    background: #111116;

    border: 1px solid var(--border);

    transition: var(--transition);
}

.app-button:hover {
    border-color: rgba(255,255,255,0.25);

    transform: translateY(-2px);
}

.app-button i {
    font-size: 20px;
}

.app-button span {
    font-size: 10px;

    font-weight: 700;

    line-height: 1.1;
}

.app-button small {
    display: block;

    font-size: 6px;

    color: var(--text-muted);

    margin-bottom: 3px;
}

.footer-bottom {
    max-width: var(--container);

    margin: auto;

    padding:
        18px 28px
        25px;

    border-top: 1px solid var(--border);

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    color: #55555e;

    font-size: 9px;
}


/* =========================================================
   27. SEARCH OVERLAY
========================================================= */

.search-overlay {
    position: fixed;

    inset: 0;

    z-index: 5000;

    background:
        rgba(4,4,6,0.86);

    backdrop-filter: blur(22px);

    opacity: 0;
    visibility: hidden;

    transition:
        opacity 0.35s ease,
        visibility 0.35s ease;
}

.search-overlay.active {
    opacity: 1;
    visibility: visible;
}

.search-panel {
    max-width: 900px;

    margin: 0 auto;

    padding:
        130px 28px
        50px;

    position: relative;
}

.close-search {
    position: absolute;

    top: 30px;
    right: 28px;

    width: 40px;
    height: 40px;

    border-radius: 50%;

    background: rgba(255,255,255,0.08);

    color: white;

    border: 1px solid var(--border);

    transition: var(--transition);
}

.close-search:hover {
    background: var(--crimson);

    transform: rotate(90deg);
}

.search-heading span {
    color: var(--crimson);

    font-size: 9px;

    letter-spacing: 3px;

    font-weight: 800;
}

.search-heading h2 {
    font-family: var(--font-heading);

    font-size: clamp(35px, 5vw, 60px);

    letter-spacing: -2px;

    line-height: 1;

    margin:
        10px
        0
        30px;
}

.large-search-box {
    height: 62px;

    padding: 0 20px;

    border-radius: 15px;

    background: rgba(255,255,255,0.07);

    border: 1px solid rgba(255,255,255,0.14);

    display: flex;

    align-items: center;

    gap: 13px;
}

.large-search-box > i {
    color: var(--crimson);
}

.large-search-box input {
    flex: 1;

    background: transparent;

    border: 0;
    outline: 0;

    color: white;

    font-size: 15px;
}

.large-search-box input::placeholder {
    color: #686871;
}

.large-search-box button {
    background: transparent;

    color: var(--text-muted);

    font-size: 10px;
}

.search-results {
    margin-top: 25px;

    max-height: 420px;

    overflow-y: auto;
}

.search-hint {
    color: var(--text-muted);

    font-size: 13px;
}

.search-result-item {
    padding: 14px;

    border-bottom: 1px solid var(--border);

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 15px;

    transition: var(--transition);
}

.search-result-item:hover {
    background: rgba(255,255,255,0.04);
}

.search-result-item strong {
    font-size: 14px;
}

.search-result-item span {
    color: var(--text-muted);

    font-size: 10px;
}

.no-results {
    padding: 40px 10px;

    text-align: center;

    color: var(--text-muted);
}


/* =========================================================
   28. MODAL BASE
========================================================= */

.modal-overlay {
    position: fixed;

    inset: 0;

    z-index: 6000;

    padding: 25px;

    background:
        rgba(0,0,0,0.78);

    backdrop-filter: blur(14px);

    display: flex;

    align-items: center;
    justify-content: center;

    opacity: 0;
    visibility: hidden;

    transition:
        opacity 0.3s ease,
        visibility 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-close {
    position: absolute;

    top: 18px;
    right: 18px;

    width: 36px;
    height: 36px;

    border-radius: 50%;

    background: rgba(255,255,255,0.07);

    color: white;

    border: 1px solid var(--border);

    display: grid;
    place-items: center;

    transition: var(--transition);
}

.modal-close:hover {
    background: var(--crimson);

    transform: rotate(90deg);
}


/* =========================================================
   29. BOOKING MODAL
========================================================= */

.booking-modal {
    position: relative;

    width: min(650px, 100%);

    max-height: 90vh;

    overflow-y: auto;

    padding: 40px;

    border-radius: 25px;

    background:
        linear-gradient(
            145deg,
            #1a1a22,
            #101015
        );

    border: 1px solid var(--border-light);

    box-shadow:
        0 35px 100px rgba(0,0,0,0.65);

    transform:
        translateY(25px)
        scale(0.97);

    transition: var(--transition);
}

.modal-overlay.active .booking-modal,
.modal-overlay.active .trailer-modal,
.modal-overlay.active .location-modal,
.modal-overlay.active .signin-modal,
.modal-overlay.active .success-modal {
    transform:
        translateY(0)
        scale(1);
}

.modal-top {
    padding-right: 40px;

    margin-bottom: 30px;
}

.modal-top h2,
.location-modal h2,
.signin-modal h2,
.success-modal h2 {
    font-family: var(--font-heading);

    font-size: 34px;

    line-height: 1;

    letter-spacing: -1px;

    margin-bottom: 10px;
}

.modal-top p,
.signin-modal > p,
.success-modal > p {
    color: var(--text-muted);

    font-size: 12px;
}

.booking-form {
    display: flex;

    flex-direction: column;

    gap: 24px;
}

.form-group label {
    display: block;

    margin-bottom: 10px;

    color: #d9d9df;

    font-size: 11px;

    font-weight: 700;
}

.date-options {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 8px;
}

.date-option {
    
    border-radius: 10px;

    background: rgba(255,255,255,0.04);

    border: 1px solid var(--border);

    color: white;

    display: flex;

    flex-direction: column;

    gap: 3px;

    align-items: center;

    transition: var(--transition);
}

.date-option small {
    color: var(--text-muted);

    font-size: 8px;

    font-weight: 700;
}

.date-option strong {
    font-family: var(--font-heading);

    font-size: 18px;
}

.date-option:hover,
.date-option.active {
    background: var(--crimson);

    border-color: var(--crimson);
}

.date-option.active small {
    color: rgba(255,255,255,0.7);
}

.form-group select {
    width: 100%;

    height: 46px;

    padding: 0 14px;

    outline: none;

    color: white;

    background: #15151c;

    border: 1px solid var(--border);

    border-radius: 10px;
}

.form-group select option {
    background: #15151c;

    color: white;
}

.time-options {
    display: flex;

    flex-wrap: wrap;

    gap: 8px;
}

.time-option {
    padding: 10px 14px;

    border-radius: 8px;

    background: rgba(255,255,255,0.04);

    border: 1px solid var(--border);

    color: var(--text-soft);

    font-size: 11px;

    transition: var(--transition);
}

.time-option:hover,
.time-option.active {
    background: rgba(229,27,62,0.12);

    color: #ff6b83;

    border-color: rgba(229,27,62,0.4);
}

.ticket-counter {
    display: inline-flex;

    align-items: center;

    gap: 18px;

    padding: 5px;

    border-radius: 999px;

    background: rgba(255,255,255,0.05);

    border: 1px solid var(--border);
}

.ticket-counter button {
    width: 32px;
    height: 32px;

    border-radius: 50%;

    background: rgba(255,255,255,0.08);

    color: white;

    display: grid;

    place-items: center;

    font-size: 10px;

    transition: var(--transition);
}

.ticket-counter button:hover {
    background: var(--crimson);
}

.ticket-counter span {
    min-width: 18px;

    text-align: center;

    font-weight: 700;
}

.booking-summary {
    padding: 18px 0;

    border-top: 1px solid var(--border);

    border-bottom: 1px solid var(--border);

    display: flex;

    flex-direction: column;

    gap: 10px;
}

.booking-summary > div {
    display: flex;

    justify-content: space-between;

    color: var(--text-muted);

    font-size: 11px;
}

.booking-summary strong {
    color: white;
}

.booking-summary .total-row {
    margin-top: 5px;

    padding-top: 13px;

    border-top: 1px dashed var(--border);

    color: white;

    font-size: 13px;
}

.booking-summary .total-row strong {
    color: var(--crimson);

    font-size: 20px;

    font-family: var(--font-heading);
}

.proceed-btn {
    width: 100%;

    min-height: 48px;

    border-radius: 11px;

    background: var(--crimson);

    color: white;

    font-size: 12px;

    font-weight: 800;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 9px;

    transition: var(--transition);

    box-shadow:
        0 12px 25px rgba(229,27,62,0.2);
}

.proceed-btn:hover {
    background: var(--crimson-light);

    transform: translateY(-2px);
}


/* =========================================================
   30. TRAILER MODAL
========================================================= */

.trailer-modal {
    position: relative;

    width: min(950px, 100%);

    padding: 30px;

    border-radius: 22px;

    background: #101015;

    border: 1px solid var(--border);

    box-shadow: var(--shadow);

    transform:
        translateY(25px)
        scale(0.97);

    transition: var(--transition);
}

.trailer-header {
    margin-bottom: 20px;

    padding-right: 40px;
}

.trailer-header span {
    color: var(--crimson);

    font-size: 8px;

    letter-spacing: 2px;

    font-weight: 800;
}

.trailer-header h2 {
    font-family: var(--font-heading);

    font-size: 28px;

    margin-top: 5px;
}

.trailer-video {
    width: 100%;

    aspect-ratio: 16 / 9;

    overflow: hidden;

    border-radius: 13px;

    background: black;
}

.trailer-video iframe {
    width: 100%;
    height: 100%;

    border: 0;
}


/* =========================================================
   31. LOCATION MODAL
========================================================= */

.location-modal {
    position: relative;

    width: min(500px, 100%);

    padding: 40px;

    border-radius: 24px;

    background: #131319;

    border: 1px solid var(--border);

    box-shadow: var(--shadow);

    transform:
        translateY(25px)
        scale(0.97);

    transition: var(--transition);
}

.location-modal h2 {
    max-width: 370px;

    margin-bottom: 25px;
}

.location-list {
    display: flex;

    flex-direction: column;

    gap: 7px;
}

.location-option {
    width: 100%;

    padding: 12px;

    border-radius: 11px;

    background: rgba(255,255,255,0.035);

    border: 1px solid var(--border);

    color: white;

    display: flex;

    align-items: center;

    gap: 12px;

    text-align: left;

    transition: var(--transition);
}

.location-option:hover {
    background: rgba(229,27,62,0.1);

    border-color: rgba(229,27,62,0.35);

    transform: translateX(4px);
}

.location-icon {
    width: 34px;
    height: 34px;

    display: grid;
    place-items: center;

    border-radius: 9px;

    background: rgba(229,27,62,0.1);

    color: var(--crimson);
}

.location-option > i {
    margin-left: auto;

    color: var(--text-muted);

    font-size: 9px;
}


/* =========================================================
   32. SIGN IN MODAL
========================================================= */

.signin-modal {
    position: relative;

    width: min(430px, 100%);

    padding: 45px 40px 35px;

    border-radius: 24px;

    background: #131319;

    border: 1px solid var(--border);

    box-shadow: var(--shadow);

    transform:
        translateY(25px)
        scale(0.97);

    transition: var(--transition);

    text-align: center;
}

.signin-icon {
    width: 60px;
    height: 60px;

    margin: 0 auto 20px;

    display: grid;
    place-items: center;

    border-radius: 18px;

    background: rgba(229,27,62,0.12);

    color: var(--crimson);

    font-size: 20px;
}

.signin-modal .section-label {
    margin-bottom: 8px;
}

.signin-input {
    height: 50px;

    margin:
        25px 0
        12px;

    padding: 0 15px;

    display: flex;

    align-items: center;

    gap: 10px;

    border-radius: 10px;

    background: rgba(255,255,255,0.04);

    border: 1px solid var(--border);
}

.signin-input span {
    color: var(--text-muted);

    font-size: 12px;
}

.signin-input input {
    flex: 1;

    border: 0;
    outline: 0;

    background: transparent;

    color: white;

    font-size: 13px;
}

.signin-input input::placeholder {
    color: #606069;
}

.terms-text {
    display: block;

    margin-top: 15px;

    color: #55555e;

    font-size: 9px;
}


/* =========================================================
   33. SUCCESS MODAL
========================================================= */

.success-modal {
    position: relative;

    width: min(470px, 100%);

    padding: 45px 40px 35px;

    border-radius: 25px;

    background:
        linear-gradient(
            145deg,
            #18181f,
            #101015
        );

    border: 1px solid var(--border);

    box-shadow: var(--shadow);

    text-align: center;

    transform:
        translateY(25px)
        scale(0.97);

    transition: var(--transition);
}

.success-icon {
    width: 68px;
    height: 68px;

    margin: 0 auto 20px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background: rgba(60,200,120,0.12);

    color: #56d99a;

    border: 1px solid rgba(60,200,120,0.2);

    font-size: 23px;
}

.success-ticket {
    margin:
        25px 0;

    padding: 18px;

    border-radius: 13px;

    background: rgba(255,255,255,0.04);

    border: 1px solid var(--border);

    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 18px;

    text-align: left;
}

.success-ticket > div {
    display: flex;

    flex-direction: column;

    gap: 3px;
}

.success-ticket span {
    color: var(--text-muted);

    font-size: 7px;

    letter-spacing: 1px;

    font-weight: 800;
}

.success-ticket strong {
    font-family: var(--font-heading);

    font-size: 13px;
}


/* =========================================================
   34. TOAST
========================================================= */

.toast-container {
    position: fixed;

    z-index: 10000;

    right: 22px;
    bottom: 22px;

    display: flex;

    flex-direction: column;

    align-items: flex-end;

    gap: 8px;
}

.toast {
    min-width: 270px;

    padding: 13px 15px;

    border-radius: 11px;

    background: rgba(24,24,31,0.96);

    border: 1px solid var(--border-light);

    box-shadow:
        0 15px 40px rgba(0,0,0,0.35);

    backdrop-filter: blur(15px);

    display: flex;

    align-items: center;

    gap: 10px;

    color: white;

    font-size: 11px;

    animation:
        toastIn 0.4s ease forwards;
}

.toast i {
    color: var(--crimson);
}

.toast.success i {
    color: #57d99b;
}

.toast.removing {
    animation:
        toastOut 0.35s ease forwards;
}

@keyframes toastIn {

    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes toastOut {

    from {
        opacity: 1;
        transform: translateX(0);
    }

    to {
        opacity: 0;
        transform: translateX(30px);
    }
}


/* =========================================================
   35. SEARCH FILTER ANIMATION
========================================================= */

.searchable-card.filtered-out {
    display: none;
}

.movie-card.filter-hide {
    display: none;
}

.movie-card.filter-show {
    animation: cardReveal 0.45s ease;
}

@keyframes cardReveal {

    from {
        opacity: 0;
        transform: translateY(15px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* =========================================================
   36. SCROLL REVEAL
========================================================= */

.reveal {
    opacity: 0;

    transform: translateY(30px);

    transition:
        opacity 0.8s ease,
        transform 0.8s ease;
}

.reveal.visible {
    opacity: 1;

    transform: translateY(0);
}


/* =========================================================
   37. RESPONSIVE — 1200px
========================================================= */

@media (max-width: 1200px) {

    .main-nav {
        gap: 20px;
    }

    .main-nav a {
        font-size: 13px;
    }

    .search-trigger span {
        display: none;
    }

    .movie-grid {
        grid-template-columns:
            repeat(4, 1fr);
    }

    .events-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .footer-main {
        grid-template-columns:
            1.5fr
            1fr
            1fr
            1fr;
    }

    .footer-app {
        grid-column: span 2;
    }
}


/* =========================================================
   38. RESPONSIVE — 900px
========================================================= */

@media (max-width: 900px) {

    .nav-container {
        min-height: 75px;

        padding:
            0 20px;
    }

    .main-nav,
    .location-selector {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .nav-actions {
        margin-left: auto;
    }

    .signin-btn {
        padding: 9px 15px;
    }

    .hero {
        min-height: 650px;
    }

    .hero-content {
        padding:
            150px 25px
            100px;
    }

    .hero-content h1 {
        font-size: clamp(48px, 9vw, 76px);
    }

    .movie-grid {
        grid-template-columns:
            repeat(3, 1fr);
    }

    .upcoming-grid {
        grid-template-columns:
            1fr 1fr;
    }

    .upcoming-card:last-child {
        grid-column: span 2;
    }

    .sports-grid {
        grid-template-columns:
            1fr 1fr;
    }

    .sport-card:first-child {
        grid-column: span 2;
    }

    .footer-main {
        grid-template-columns:
            1fr 1fr 1fr;
    }

    .footer-brand {
        grid-column: span 3;
    }

    .footer-app {
        grid-column: span 1;
    }
}


/* =========================================================
   39. RESPONSIVE — 650px
========================================================= */

@media (max-width: 650px) {

    .nav-container {
        padding: 0 16px;
    }

    .logo-mark {
        width: 38px;
        height: 38px;
    }

    .logo-text strong {
        font-size: 20px;
    }

    .signin-btn {
        display: none;
    }

    .hero {
        min-height: 620px;

        height: 85vh;
    }

    .hero-overlay {
        background:
            linear-gradient(
                0deg,
                rgba(7,7,10,1) 0%,
                rgba(7,7,10,0.65) 45%,
                rgba(7,7,10,0.3) 100%
            );
    }

    .hero-content {
        padding:
            120px 20px
            110px;

        justify-content: flex-end;
    }

    .hero-content h1 {
        font-size: 50px;

        letter-spacing: -2.5px;
    }

    .hero-content p {
        font-size: 13px;

        max-width: 430px;
    }

    .hero-meta {
        gap: 8px;

        flex-wrap: wrap;

        font-size: 10px;
    }

    .hero-buttons {
        width: 100%;
    }

    .primary-btn,
    .secondary-btn {
        flex: 1;

        min-height: 45px;

        padding: 0 14px;

        font-size: 11px;
    }

    .hero-controls {
        bottom: 20px;

        right: 20px;
    }

    .hero-scroll {
        display: none;
    }

    .content-section {
        padding:
            75px 20px
            20px;
    }

    .section-heading {
        align-items: flex-start;

        flex-direction: column;

        gap: 20px;

        margin-bottom: 25px;
    }

    .section-heading h2 {
        font-size: 36px;
    }

    .section-navigation {
        width: 100%;

        justify-content: flex-end;
    }

    .section-navigation .view-all {
        margin-left: auto;
    }

    .movie-horizontal-grid {
        gap: 14px;
    }

    .movie-horizontal-grid .movie-card {
        flex-basis: 180px;

        min-width: 180px;
    }

    .movie-grid {
        grid-template-columns:
            repeat(2, 1fr);

        gap: 22px 12px;
    }

    .movie-grid .movie-card {
        min-width: 0;
    }

    .movie-info h3 {
        font-size: 14px;
    }

    .movie-info p {
        font-size: 9px;
    }

    .card-book-btn {
        font-size: 9px;

        padding: 8px;
    }

    .vibe-section {
        margin-top: 70px;

        padding:
            70px 20px;
    }

    .vibe-content h2 {
        font-size: 48px;
    }

    .genre-buttons {
        gap: 7px;
    }

    .genre-btn {
        padding: 10px 13px;

        font-size: 10px;
    }

    .filter-tabs {
        width: 100%;

        overflow-x: auto;

        justify-content: flex-start;

        scrollbar-width: none;
    }

    .filter-tab {
        white-space: nowrap;
    }

    .upcoming-section {
        margin-top: 75px;

        padding:
            70px 20px;
    }

    .upcoming-grid {
        grid-template-columns:
            1fr;
    }

    .upcoming-card,
    .upcoming-card:last-child {
        grid-column: auto;

        height: 330px;
    }

    .events-grid {
        grid-template-columns:
            1fr;
    }

    .event-image {
        height: 250px;
    }

    .sports-section {
        margin-top: 70px;

        padding:
            70px 20px;
    }

    .sports-header {
        align-items: flex-start;

        flex-direction: column;

        gap: 20px;
    }

    .sports-grid {
        grid-template-columns:
            1fr;
    }

    .sport-card,
    .sport-card:first-child {
        grid-column: auto;

        height: 290px;
    }

    .final-cta {
        margin-top: 70px;

        min-height: 430px;
    }

    .cta-content h2 {
        font-size: 52px;

        letter-spacing: -2.5px;
    }

    .footer-main {
        padding:
            60px 20px
            40px;

        grid-template-columns:
            1fr 1fr;

        gap: 35px 20px;
    }

    .footer-brand {
        grid-column: span 2;
    }

    .footer-app {
        grid-column: span 2;
    }

    .footer-bottom {
        padding:
            18px 20px
            25px;

        flex-direction: column;

        align-items: flex-start;
    }

    .booking-modal,
    .location-modal,
    .signin-modal,
    .success-modal {
        padding: 30px 20px;
    }

    .modal-top h2,
    .location-modal h2,
    .signin-modal h2,
    .success-modal h2 {
        font-size: 28px;
    }

    .date-options {
        gap: 5px;
    }

    .date-option {
        padding: 10px 4px;
    }

    .date-option strong {
        font-size: 16px;
    }

    .trailer-modal {
        padding: 20px;
    }

    .trailer-header h2 {
        font-size: 23px;
    }

    .toast-container {
        left: 15px;

        right: 15px;

        bottom: 15px;
    }

    .toast {
        min-width: 0;

        width: 100%;
    }

}


/* =========================================================
   40. RESPONSIVE — 420px
========================================================= */

@media (max-width: 420px) {

    .logo-text small {
        display: none;
    }

    .logo-text strong {
        font-size: 18px;
    }

    .hero-content h1 {
        font-size: 44px;
    }

    .hero-content p {
        font-size: 12px;
    }

    .hero-meta > span:not(:last-child)::after {
        margin-left: 5px;
    }

    .movie-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .movie-poster {
        border-radius: 12px;
    }

    .favourite-btn {
        width: 30px;
        height: 30px;

        top: 8px;
        right: 8px;
    }

    .movie-rating {
        left: 8px;
        bottom: 8px;

        padding: 4px 6px;
    }

    .upcoming-card {
        height: 290px;
    }

    .event-image {
        height: 220px;
    }

    .success-ticket {
        gap: 12px;
    }

}



/* ============================================================
   TIKTIKTICKET.IN — PREMIUM HEADER
   BookMyShow Inspired • Modern • Clean • Responsive
============================================================ */


/* ============================================================
   HEADER ROOT
============================================================ */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 82px;
    z-index: 9999;

    background: rgba(10, 9, 14, 0.96);
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);

    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);

    transition:
        background 0.3s ease,
        box-shadow 0.3s ease,
        height 0.3s ease;
}


/* Scrolled Header */

.navbar.scrolled {
    height: 72px;

    background: rgba(9, 8, 12, 0.98);

    box-shadow:
        0 10px 40px rgba(0, 0, 0, 0.35);
}


/* ============================================================
   NAV CONTAINER
============================================================ */

.nav-container {
    width: min(1280px, calc(100% - 70px));
    height: 100%;

    margin: 0 auto;

    display: flex;
    align-items: center;

    gap: 30px;
}


/* ============================================================
   LOGO
============================================================ */

.brand-logo {
    display: flex;
    align-items: center;

    gap: 11px;

    min-width: 235px;

    text-decoration: none;

    color: #fff;

    flex-shrink: 0;

    transition: transform 0.25s ease;
}


.brand-logo:hover {
    transform: translateY(-1px);
}


/* Logo Icon */

.brand-logo-icon {
    width: 46px;
    height: 46px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 13px;

    color: #fff;

    font-size: 19px;

    background:
        linear-gradient(
            145deg,
            #ff3155,
            #e51646
        );

    box-shadow:
        0 7px 20px rgba(239, 29, 74, 0.30);

    position: relative;

    overflow: hidden;
}


.brand-logo-icon::before {
    content: "";

    position: absolute;

    width: 100%;
    height: 100%;

    top: -100%;
    left: -100%;

    background: linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,0.35),
        transparent
    );

    transition: 0.6s ease;
}


.brand-logo:hover .brand-logo-icon::before {
    top: 100%;
    left: 100%;
}


/* Logo Text */

.brand-logo-text {
    display: flex;
    align-items: baseline;

    line-height: 1;

    white-space: nowrap;
}


.brand-logo-text strong {
    font-size: 21px;
    font-weight: 800;

    letter-spacing: -0.7px;

    color: #ffffff;
}


.brand-logo-text .brand-ticket {
    color: #ff3155;
    margin-left: 1px;
}


.brand-logo-text span {
    font-size: 11px;

    font-weight: 700;

    color: #8f8c94;

    margin-left: 2px;

    letter-spacing: 0.4px;
}


/* ============================================================
   SEARCH
============================================================ */

.header-search {
    height: 44px;

    flex: 1;

    max-width: 390px;

    border: 1px solid rgba(255,255,255,0.08);

    border-radius: 7px;

    background: #ffffff;

    color: #25232a;

    display: flex;
    align-items: center;

    gap: 13px;

    padding: 0 17px;

    cursor: pointer;

    font-size: 14px;

    text-align: left;

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        border-color 0.2s ease;
}


.header-search i {
    color: #77737b;

    font-size: 15px;

    flex-shrink: 0;
}


.header-search span {
    overflow: hidden;

    text-overflow: ellipsis;

    white-space: nowrap;

    color: #4b484e;
}


.header-search:hover {
    transform: translateY(-1px);

    border-color: rgba(255, 49, 85, 0.3);

    box-shadow:
        0 7px 20px rgba(0, 0, 0, 0.20);
}


/* ============================================================
   MAIN NAVIGATION
============================================================ */

.main-nav {
    height: 100%;

    display: flex;
    align-items: center;

 

    margin-left: auto;
}


.main-nav a {
    position: relative;

    height: 100%;

    padding: 0 15px;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 7px;

    color: #aaa6af;

    text-decoration: none;

    font-size: 14px;

    font-weight: 600;

    white-space: nowrap;

    transition:
        color 0.25s ease,
        transform 0.25s ease;
}


.main-nav a i {
    display: none;
}


.main-nav a:hover {
    color: #ffffff;

    transform: translateY(-1px);
}


/* Active Navigation */

.main-nav a.active {
    color: #ffffff;
}


.main-nav a.active::after {
    content: "";

    position: absolute;

    bottom: 0;

    left: 50%;

    width: 22px;
    height: 3px;

    transform: translateX(-50%);

    border-radius: 10px;

    background: #ff3155;

    box-shadow:
        0 0 10px rgba(255, 49, 85, 0.6);
}


/* ============================================================
   RIGHT ACTIONS
============================================================ */

.nav-actions {
    display: flex;

    align-items: center;

    gap: 15px;

    margin-left: auto;
}


/* ============================================================
   LOCATION
============================================================ */

.location-selector {
    height: 44px;

    display: flex;
    align-items: center;

    gap: 7px;

    padding: 0 10px;

    border: none;

    background: transparent;

    color: #b8b4bc;

    cursor: pointer;

    font-size: 13px;

    font-weight: 500;

    white-space: nowrap;

    transition: color 0.25s ease;
}


.location-selector:hover {
    color: #ffffff;
}


.location-selector > i:first-child {
    color: #ff3155;

    font-size: 15px;
}


.location-arrow {
    font-size: 9px !important;

    color: #77737d !important;

    margin-left: 2px;
}


/* ============================================================
   SIGN IN BUTTON
============================================================ */

.signin-btn {
    height: 42px;

    min-width: 82px;

    padding: 0 18px;

    border: none;

    border-radius: 24px;

    background: #ffffff;

    color: #17151b;

    font-size: 13px;

    font-weight: 700;

    cursor: pointer;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        background 0.25s ease;
}


.signin-btn:hover {
    transform: translateY(-2px);

    background: #ff3155;

    color: #ffffff;

    box-shadow:
        0 8px 22px rgba(255, 49, 85, 0.30);
}


/* ============================================================
   MOBILE MENU BUTTON
============================================================ */

.mobile-menu-btn {
    display: none;

    width: 42px;
    height: 42px;

    border: 1px solid rgba(255,255,255,0.1);

    border-radius: 10px;

    background: rgba(255,255,255,0.04);

    cursor: pointer;

    align-items: center;
    justify-content: center;

    flex-direction: column;

    gap: 5px;
}


.mobile-menu-btn span {
    width: 19px;
    height: 2px;

    border-radius: 5px;

    background: #ffffff;

    transition:
        transform 0.3s ease,
        opacity 0.3s ease;
}


.mobile-menu-btn.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}


.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}


.mobile-menu-btn.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}


/* ============================================================
   MOBILE NAVIGATION
============================================================ */

.mobile-nav {
    display: none;
}


/* ============================================================
   SEARCH OVERLAY
============================================================ */

.search-overlay {
    position: fixed;

    inset: 0;

    z-index: 10001;

    display: flex;
    justify-content: center;
    align-items: flex-start;

    padding-top: 110px;

    background:
        rgba(5, 4, 8, 0.88);

    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);

    opacity: 0;

    visibility: hidden;

    transition:
        opacity 0.3s ease,
        visibility 0.3s ease;
}


.search-overlay.active {
    opacity: 1;

    visibility: visible;
}


/* Search Panel */

.search-panel {
    width: min(720px, calc(100% - 30px));

    max-height: calc(100vh - 150px);

    overflow-y: auto;

    padding: 38px;

    border-radius: 24px;

    background:
        linear-gradient(
            145deg,
            #1d1b22,
            #111015
        );

    border: 1px solid rgba(255,255,255,0.08);

    box-shadow:
        0 30px 100px rgba(0,0,0,0.65);

    transform: translateY(-25px) scale(0.98);

    transition: transform 0.35s ease;
}


.search-overlay.active .search-panel {
    transform: translateY(0) scale(1);
}


/* Close Search */

.close-search {
    position: absolute;

    top: 28px;
    right: 30px;

    width: 42px;
    height: 42px;

    border-radius: 50%;

    border: 1px solid rgba(255,255,255,0.1);

    background: rgba(255,255,255,0.07);

    color: #ffffff;

    cursor: pointer;

    font-size: 17px;

    transition: 0.25s ease;
}


.close-search:hover {
    background: #ff3155;

    border-color: #ff3155;

    transform: rotate(90deg);
}


/* Search Heading */

.search-heading span {
    display: inline-block;

    margin-bottom: 10px;

    color: #ff3155;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 2px;
}


.search-heading h2 {
    margin: 0;

    color: #ffffff;

    font-size: 32px;

    line-height: 1.2;
}


.search-heading p {
    margin: 10px 0 25px;

    color: #99959f;

    font-size: 14px;
}


/* Large Search */

.large-search-box {
    height: 58px;

    display: flex;
    align-items: center;

    gap: 13px;

    padding: 0 17px;

    border-radius: 14px;

    background: #ffffff;

    border: 2px solid transparent;

    transition: border-color 0.25s ease;
}


.large-search-box:focus-within {
    border-color: #ff3155;
}


.large-search-box > i {
    color: #77737c;
}


.large-search-box input {
    flex: 1;

    border: none;

    outline: none;

    background: transparent;

    color: #1c1920;

    font-size: 15px;
}


.large-search-box input::placeholder {
    color: #96929a;
}


.large-search-box button {
    border: none;

    background: transparent;

    color: #ff3155;

    font-size: 13px;

    font-weight: 700;

    cursor: pointer;
}


/* Search Results */

.search-results {
    margin-top: 20px;
}


.search-result-item {
    display: flex;
    align-items: center;

    gap: 14px;

    padding: 15px;

    margin-bottom: 8px;

    border-radius: 13px;

    background: rgba(255,255,255,0.045);

    border: 1px solid rgba(255,255,255,0.05);

    cursor: pointer;

    transition: 0.25s ease;
}


.search-result-item:hover {
    background: rgba(255,49,85,0.10);

    border-color: rgba(255,49,85,0.25);

    transform: translateX(4px);
}


.search-result-icon {
    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 11px;

    background: rgba(255,49,85,0.12);

    color: #ff3155;
}


.search-result-info {
    flex: 1;

    display: flex;
    flex-direction: column;

    gap: 4px;
}


.search-result-info strong {
    color: #ffffff;

    font-size: 14px;
}


.search-result-info span {
    color: #8d8992;

    font-size: 12px;
}


.search-result-item > i {
    color: #77737d;

    font-size: 12px;
}


/* Empty Search */

.search-empty {
    padding: 45px 20px;

    text-align: center;

    color: #88848d;
}


.search-empty > i {
    color: #ff3155;

    font-size: 30px;

    margin-bottom: 15px;
}


.search-empty h3 {
    color: #ffffff;

    margin: 8px 0;
}


.search-empty p {
    margin: 0;

    font-size: 13px;
}


/* ============================================================
   MODAL OVERLAY
============================================================ */

.modal-overlay {
    position: fixed;

    inset: 0;

    z-index: 10000;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 20px;

    background:
        rgba(4, 3, 7, 0.82);

    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);

    opacity: 0;

    visibility: hidden;

    transition:
        opacity 0.3s ease,
        visibility 0.3s ease;
}


.modal-overlay.active {
    opacity: 1;

    visibility: visible;
}


/* ============================================================
   COMMON MODAL
============================================================ */

.location-modal,
.signin-modal,
.otp-modal {
    width: min(470px, 100%);

    position: relative;

    padding: 38px;

    border-radius: 24px;

    background:
        linear-gradient(
            145deg,
            #211f27,
            #121116
        );

    border: 1px solid rgba(255,255,255,0.08);

    box-shadow:
        0 35px 100px rgba(0,0,0,0.65);

    transform: translateY(20px) scale(0.96);

    transition: transform 0.35s ease;
}


.modal-overlay.active .location-modal,
.modal-overlay.active .signin-modal,
.modal-overlay.active .otp-modal {
    transform: translateY(0) scale(1);
}


/* ============================================================
   MODAL CLOSE
============================================================ */

.modal-close {
    position: absolute;

    top: 17px;
    right: 17px;

    width: 36px;
    height: 36px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255,255,255,0.08);

    border-radius: 50%;

    background: rgba(255,255,255,0.05);

    color: #aaa6af;

    cursor: pointer;

    transition: 0.25s ease;
}


.modal-close:hover {
    background: #ff3155;

    color: #ffffff;

    border-color: #ff3155;

    transform: rotate(90deg);
}


/* ============================================================
   LOCATION MODAL
============================================================ */

.location-modal-header {
    text-align: center;

    padding: 10px 15px 22px;
}


.location-big-icon {
    width: 58px;
    height: 58px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin: 0 auto 18px;

    border-radius: 17px;

    background:
        rgba(255,49,85,0.12);

    color: #ff3155;

    font-size: 23px;
}


.location-modal-header > span {
    color: #ff3155;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 2px;
}


.location-modal-header h2 {
    margin: 8px 0;

    color: #ffffff;

    font-size: 24px;
}


.location-modal-header p {
    margin: 0;

    color: #92909a;

    font-size: 13px;

    line-height: 1.6;
}


/* Location List */

.location-list {
    display: flex;

    flex-direction: column;

    gap: 7px;
}


.location-option {
    width: 100%;

    min-height: 53px;

    display: flex;
    align-items: center;

    gap: 10px;

    padding: 8px 13px;

    border-radius: 12px;

    border: 1px solid transparent;

    background: rgba(255,255,255,0.035);

    color: #ddd9e0;

    cursor: pointer;

    text-align: left;

    transition: 0.25s ease;
}


.location-option:hover,
.location-option.selected {
    background: rgba(255,49,85,0.09);

    border-color: rgba(255,49,85,0.25);
}


.location-option-left {
    display: flex;
    align-items: center;

    gap: 11px;

    flex: 1;

    font-size: 14px;

    font-weight: 600;
}


.location-icon {
    width: 34px;
    height: 34px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 9px;

    background: rgba(255,255,255,0.05);

    color: #ff3155;

    font-size: 13px;
}


.location-current {
    padding: 4px 8px;

    border-radius: 20px;

    background: rgba(255,49,85,0.12);

    color: #ff3155;

    font-size: 10px;

    font-weight: 700;
}


.location-option > i {
    color: #66626c;

    font-size: 11px;
}


/* ============================================================
   SIGN IN MODAL
============================================================ */

.signin-modal,
.otp-modal {
    text-align: center;

    max-width: 430px;
}


.signin-icon,
.otp-icon {
    width: 66px;
    height: 66px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin: 5px auto 20px;

    border-radius: 20px;

    background:
        linear-gradient(
            145deg,
            #ff3155,
            #d91645
        );

    color: #ffffff;

    font-size: 23px;

    box-shadow:
        0 12px 30px rgba(255,49,85,0.22);
}


.signin-label {
    color: #ff3155;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 2px;
}


.signin-modal h2,
.otp-modal h2 {
    margin: 8px 0;

    color: #ffffff;

    font-size: 27px;
}


.signin-modal > p,
.otp-modal > p {
    margin: 0 auto 23px;

    max-width: 340px;

    color: #94919a;

    font-size: 13px;

    line-height: 1.6;
}


.otp-modal > p strong {
    color: #ffffff;
}


/* ============================================================
   PHONE INPUT
============================================================ */

.signin-input {
    height: 54px;

    display: flex;
    align-items: center;

    margin-bottom: 13px;

    border: 1px solid rgba(255,255,255,0.1);

    border-radius: 12px;

    background: rgba(255,255,255,0.045);

    overflow: hidden;

    transition: 0.25s ease;
}


.signin-input:focus-within {
    border-color: #ff3155;

    box-shadow:
        0 0 0 3px rgba(255,49,85,0.08);
}


.signin-input > span {
    height: 100%;

    display: flex;
    align-items: center;

    padding: 0 14px;

    color: #aaa6af;

    font-size: 13px;

    border-right: 1px solid rgba(255,255,255,0.08);
}


.signin-input input {
    flex: 1;

    height: 100%;

    border: none;

    outline: none;

    background: transparent;

    padding: 0 14px;

    color: #ffffff;

    font-size: 14px;
}


.signin-input input::placeholder {
    color: #69666e;
}


/* ============================================================
   PROCEED BUTTON
============================================================ */

.proceed-btn {
    width: 100%;

    height: 53px;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 10px;

    border: none;

    border-radius: 12px;

    background:
        linear-gradient(
            135deg,
            #ff3155,
            #df1747
        );

    color: #ffffff;

    font-size: 14px;

    font-weight: 700;

    cursor: pointer;

    box-shadow:
        0 10px 25px rgba(255,49,85,0.20);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}


.proceed-btn:hover {
    transform: translateY(-2px);

    box-shadow:
        0 15px 32px rgba(255,49,85,0.30);
}


.proceed-btn i {
    transition: transform 0.25s ease;
}


.proceed-btn:hover i {
    transform: translateX(4px);
}


/* Terms */

.terms-text {
    display: block;

    margin-top: 17px;

    color: #6e6a73;

    font-size: 10px;

    line-height: 1.6;
}


.terms-text a {
    color: #aaa6af;

    text-decoration: none;
}


.terms-text a:hover {
    color: #ff3155;
}


/* ============================================================
   OTP
============================================================ */

.otp-inputs {
    display: flex;

    justify-content: center;

    gap: 9px;

    margin: 20px 0;
}


.otp-input {
    width: 48px;
    height: 55px;

    border-radius: 11px;

    border: 1px solid rgba(255,255,255,0.1);

    background: rgba(255,255,255,0.045);

    color: #ffffff;

    text-align: center;

    font-size: 20px;

    font-weight: 700;

    outline: none;

    transition: 0.25s ease;
}


.otp-input:focus {
    border-color: #ff3155;

    background: rgba(255,49,85,0.07);

    box-shadow:
        0 0 0 3px rgba(255,49,85,0.08);
}


.resend-otp {
    margin-top: 15px;

    border: none;

    background: transparent;

    color: #ff3155;

    font-size: 12px;

    font-weight: 700;

    cursor: pointer;
}


/* ============================================================
   HEADER TOAST
============================================================ */

.header-toast-container {
    position: fixed;

    right: 25px;
    bottom: 25px;

    z-index: 11000;

    display: flex;

    flex-direction: column;

    gap: 10px;
}


.header-toast {
    min-width: 270px;

    display: flex;
    align-items: center;

    gap: 10px;

    padding: 13px 16px;

    border-radius: 12px;

    background: #1e1c23;

    border: 1px solid rgba(255,255,255,0.08);

    box-shadow:
        0 15px 40px rgba(0,0,0,0.35);

    color: #ffffff;

    font-size: 13px;

    animation:
        toastIn 0.3s ease;
}


.header-toast > i {
    color: #35d07f;

    font-size: 16px;
}


.header-toast.hide {
    animation:
        toastOut 0.3s ease forwards;
}


@keyframes toastIn {

    from {
        opacity: 0;
        transform: translateY(15px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}


@keyframes toastOut {

    from {
        opacity: 1;
        transform: translateY(0);
    }

    to {
        opacity: 0;
        transform: translateY(15px);
    }

}


/* ============================================================
   BODY STATES
============================================================ */

body.menu-open,
body.search-open,
body.modal-open {
    overflow: hidden;
}


/* ============================================================
   RESPONSIVE — TABLET
============================================================ */

@media (max-width: 1150px) {

    .nav-container {
        width: min(100% - 35px, 1100px);

        gap: 18px;
    }


    .brand-logo {
        min-width: auto;
    }


    .header-search {
        max-width: 280px;
    }


    .main-nav a {
        padding: 0 9px;

        font-size: 13px;
    }


    .location-selector {
        padding: 0 5px;
    }

}


/* ============================================================
   RESPONSIVE — MOBILE
============================================================ */

@media (max-width: 900px) {

    .navbar {
        height: 70px;
    }


    .navbar.scrolled {
        height: 66px;
    }


    .nav-container {
        width: calc(100% - 30px);

        gap: 12px;
    }


    /* Logo */

    .brand-logo-icon {
        width: 40px;
        height: 40px;

        border-radius: 11px;

        font-size: 16px;
    }


    .brand-logo-text strong {
        font-size: 18px;
    }


    .brand-logo-text span {
        font-size: 9px;
    }


    /* Hide Desktop Elements */

    .header-search,
    .main-nav,
    .location-selector,
    .signin-btn {
        display: none;
    }


    /* Mobile Button */

    .mobile-menu-btn {
        display: flex;

        margin-left: auto;
    }


    /* Mobile Nav */

    .mobile-nav {
        position: absolute;

        top: 70px;
        left: 0;

        width: 100%;

        display: block;

        background:
            rgba(13,12,17,0.98);

        border-top: 1px solid rgba(255,255,255,0.07);

        box-shadow:
            0 20px 40px rgba(0,0,0,0.35);

        max-height: calc(100vh - 70px);

        overflow-y: auto;

        opacity: 0;

        visibility: hidden;

        transform: translateY(-10px);

        transition:
            opacity 0.3s ease,
            visibility 0.3s ease,
            transform 0.3s ease;
    }


    .mobile-nav.active {
        opacity: 1;

        visibility: visible;

        transform: translateY(0);
    }


    .mobile-nav-inner {
        padding: 18px 18px 25px;
    }


    /* Mobile Search */

    .mobile-search-btn {
        width: 100%;

        height: 50px;

        display: flex;
        align-items: center;

        gap: 11px;

        padding: 0 15px;

        border: 1px solid rgba(255,255,255,0.08);

        border-radius: 12px;

        background: rgba(255,255,255,0.045);

        color: #8e8a93;

        font-size: 13px;

        cursor: pointer;
    }


    .mobile-search-btn i {
        color: #ff3155;
    }


    /* Mobile Links */

    .mobile-nav-links {
        margin-top: 14px;

        display: flex;

        flex-direction: column;

        gap: 6px;
    }


    .mobile-nav-links a,
    .mobile-location {
        min-height: 54px;

        display: flex;
        align-items: center;

        gap: 12px;

        padding: 8px 12px;

        border-radius: 12px;

        border: 1px solid transparent;

        background: rgba(255,255,255,0.035);

        color: #d5d2d8;

        text-decoration: none;

        font-size: 14px;

        font-weight: 600;

        transition: 0.25s ease;
    }


    .mobile-nav-links a:hover,
    .mobile-nav-links a.active,
    .mobile-location:hover {
        background: rgba(255,49,85,0.08);

        border-color: rgba(255,49,85,0.20);

        color: #ffffff;
    }


    .mobile-nav-links a > i {
        margin-left: auto;

        color: #66626b;

        font-size: 10px;
    }


    .mobile-nav-icon {
        width: 35px;
        height: 35px;

        display: flex;
        align-items: center;
        justify-content: center;

        border-radius: 9px;

        background: rgba(255,255,255,0.05);

        color: #ff3155;

        font-size: 13px;
    }


    /* Mobile Location */

    .mobile-location {
        width: 100%;

        margin-top: 8px;

        justify-content: space-between;

        cursor: pointer;
    }


    .mobile-location > span {
        display: flex;

        align-items: center;

        gap: 12px;
    }


    .mobile-location > span > i {
        color: #ff3155;
    }


    .mobile-location > i {
        color: #66626b;

        font-size: 10px;
    }


    /* Mobile Sign In */

    .mobile-signin {
        width: 100%;

        height: 52px;

        margin-top: 10px;

        border: none;

        border-radius: 12px;

        background:
            linear-gradient(
                135deg,
                #ff3155,
                #dd1646
            );

        color: #ffffff;

        font-size: 14px;

        font-weight: 700;

        cursor: pointer;

        box-shadow:
            0 10px 25px rgba(255,49,85,0.18);
    }

}


/* ============================================================
   SMALL MOBILE
============================================================ */

@media (max-width: 480px) {

    .nav-container {
        width: calc(100% - 22px);
    }


    .brand-logo-text strong {
        font-size: 16px;
    }


    .brand-logo-icon {
        width: 38px;
        height: 38px;
    }


    .search-panel,
    .location-modal,
    .signin-modal,
    .otp-modal {
        padding: 30px 20px;

        border-radius: 20px;
    }


    .search-heading h2 {
        font-size: 25px;
    }


    .location-modal-header h2,
    .signin-modal h2,
    .otp-modal h2 {
        font-size: 22px;
    }


    .otp-inputs {
        gap: 6px;
    }


    .otp-input {
        width: 42px;
        height: 50px;
    }


    .header-toast-container {
        right: 15px;
        left: 15px;

        bottom: 15px;
    }


    .header-toast {
        min-width: 0;

        width: 100%;
    }

}


/* ============================================================
   TIKTIKTICKET.IN — PREMIUM EVENTS PAGE
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

:root {
    --primary: #ff1744;
    --primary-dark: #d50032;
    --primary-light: #ff4d6d;

    --dark: #0b0b10;
    --dark-2: #121218;
    --dark-3: #1b1b23;

    --text: #111118;
    --muted: #777782;
    --light: #f7f7f9;
    --white: #ffffff;

    --border: #e9e9ee;

    --shadow-sm: 0 5px 20px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 15px 40px rgba(0, 0, 0, 0.10);
    --shadow-lg: 0 25px 70px rgba(0, 0, 0, 0.16);

    --radius-sm: 12px;
    --radius-md: 18px;
    --radius-lg: 28px;

    --transition: 0.3s ease;
}


/* ============================================================
   RESET
   ============================================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Inter", Arial, sans-serif;
    background: #f7f7f9;
    color: var(--text);
    overflow-x: hidden;
}

body.menu-open,
body.modal-open,
body.search-open {
    overflow: hidden;
}

button,
input {
    font-family: inherit;
}

button {
    cursor: pointer;
}

a {
    text-decoration: none;
    color: inherit;
}


/* ============================================================
   HEADER
   ============================================================ */

.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;

    width: 100%;

    background:
        linear-gradient(
            135deg,
            #0b0b10 0%,
            #111119 55%,
            #160d13 100%
        );

    border-bottom: 1px solid rgba(255, 255, 255, 0.07);

    transition:
        background 0.3s ease,
        box-shadow 0.3s ease,
        padding 0.3s ease;
}

.navbar.scrolled {
    background: rgba(11, 11, 16, 0.94);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);

    box-shadow:
        0 10px 40px rgba(0, 0, 0, 0.25);
}

.nav-container {
    width: min(1400px, 94%);
    min-height: 82px;

    margin: auto;

    display: flex;
    align-items: center;

    gap: 28px;
}


/* ============================================================
   LOGO
   ============================================================ */

.brand-logo {
    display: flex;
    align-items: center;
    gap: 11px;

    min-width: 205px;

    transition: transform var(--transition);
}

.brand-logo:hover {
    transform: translateY(-1px);
}

.brand-logo-icon {
    width: 48px;
    height: 48px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 14px;

    color: white;

    background:
        linear-gradient(
            135deg,
            #ff1744,
            #d50032
        );

    box-shadow:
        0 8px 25px rgba(255, 23, 68, 0.35);

    font-size: 20px;

    transform: rotate(-2deg);

    transition: var(--transition);
}

.brand-logo:hover .brand-logo-icon {
    transform: rotate(3deg) scale(1.05);
}

.brand-logo-text {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;

    line-height: 1;
}

.brand-logo-text strong {
    font-size: 19px;
    font-weight: 800;
    letter-spacing: -0.7px;

    color: white;
}

.brand-logo-text .brand-ticket {
    color: var(--primary);
    margin-left: 2px;
}

.brand-logo-text span {
    width: 100%;

    margin-top: 5px;

    color: #777782;

    font-size: 7px;
    font-weight: 700;
    letter-spacing: 2px;
}


/* ============================================================
   HEADER SEARCH
   ============================================================ */

.header-search {
    flex: 1;

    max-width: 360px;
    min-height: 46px;

    border: 1px solid rgba(255,255,255,0.10);
    border-radius: 12px;

    background: rgba(255,255,255,0.07);

    color: #9d9da7;

    display: flex;
    align-items: center;
    gap: 11px;

    padding: 0 17px;

    text-align: left;

    transition: var(--transition);
}

.header-search i {
    color: #aaaab4;
    font-size: 14px;
}

.header-search span {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;

    font-size: 12px;
}

.header-search:hover {
    border-color: rgba(255, 23, 68, 0.45);

    background: rgba(255, 255, 255, 0.10);

    color: white;

    transform: translateY(-1px);
}


/* ============================================================
   MAIN NAV
   ============================================================ */

.main-nav {
    display: flex;
    align-items: center;
 

    margin-left: auto;
}

.main-nav a {
    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 7px;

    padding: 29px 13px;

    color: #9d9da7;

    font-size: 13px;
    font-weight: 600;

    transition: var(--transition);
}

.main-nav a i {
    display: none;
}

.main-nav a::after {
    content: "";

    position: absolute;

    left: 14px;
    right: 14px;
    bottom: 0;

    height: 3px;

    border-radius: 10px 10px 0 0;

    background: var(--primary);

    transform: scaleX(0);

    transition: transform var(--transition);
}

.main-nav a:hover {
    color: white;
}

.main-nav a:hover::after,
.main-nav a.active::after {
    transform: scaleX(1);
}

.main-nav a.active {
    color: white;
}


/* ============================================================
   RIGHT ACTIONS
   ============================================================ */

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.location-selector {
    min-height: 42px;

    padding: 0 12px;

    border: 0;
    background: transparent;

    color: #aaaab4;

    display: flex;
    align-items: center;
    gap: 7px;

    font-size: 12px;

    transition: var(--transition);
}

.location-selector i:first-child {
    color: var(--primary);
}

.location-arrow {
    font-size: 9px;
}

.location-selector:hover {
    color: white;
}

.signin-btn {
    border: 0;

    min-width: 88px;
    height: 42px;

    border-radius: 22px;

    background: white;
    color: #111118;

    font-size: 12px;
    font-weight: 700;

    transition: var(--transition);

    box-shadow: 0 5px 18px rgba(255,255,255,0.10);
}

.signin-btn:hover {
    background: var(--primary);
    color: white;

    transform: translateY(-2px);

    box-shadow:
        0 8px 25px rgba(255,23,68,0.30);
}


/* ============================================================
   MOBILE MENU BUTTON
   ============================================================ */

.mobile-menu-btn {
    display: none;

    width: 44px;
    height: 44px;

    border: 1px solid rgba(255,255,255,0.10);
    border-radius: 12px;

    background: rgba(255,255,255,0.06);
}

.mobile-menu-btn span {
    display: block;

    width: 20px;
    height: 2px;

    margin: 4px auto;

    background: white;

    border-radius: 10px;

    transition: var(--transition);
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}


/* ============================================================
   EVENTS HERO
   ============================================================ */

.events-hero {
    position: relative;

    min-height: 430px;

    display: flex;
    align-items: center;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 85% 20%,
            rgba(255, 23, 68, 0.28),
            transparent 32%
        ),
        radial-gradient(
            circle at 10% 90%,
            rgba(255, 23, 68, 0.13),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            #09090d,
            #15151d 55%,
            #100c11
        );
}

.events-hero::before {
    content: "";

    position: absolute;

    width: 500px;
    height: 500px;

    right: -180px;
    top: -220px;

    border-radius: 50%;

    border: 1px solid rgba(255,255,255,0.06);

    box-shadow:
        0 0 0 80px rgba(255,255,255,0.015),
        0 0 0 160px rgba(255,255,255,0.01);
}

.events-hero::after {
    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(0,0,0,0.20),
            transparent 60%
        );

    pointer-events: none;
}

.events-hero-content {
    position: relative;
    z-index: 2;

    width: min(1200px, 90%);

    margin: auto;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 9px;

    padding: 9px 15px;

    border: 1px solid rgba(255, 23, 68, 0.25);

    border-radius: 30px;

    background: rgba(255, 23, 68, 0.08);

    color: #ff5b7a;

    font-size: 11px;
    font-weight: 800;

    letter-spacing: 1.5px;
}

.section-label i {
    font-size: 12px;
}

.events-hero h1 {
    max-width: 780px;

    margin-top: 25px;

    color: white;

    font-size: clamp(44px, 6vw, 76px);

    line-height: 0.98;

    letter-spacing: -4px;

    font-weight: 800;
}

.events-hero h1 span {
    display: block;

    color: transparent;

    background:
        linear-gradient(
            90deg,
            #ff1744,
            #ff5576
        );

    -webkit-background-clip: text;
    background-clip: text;
}

.events-hero p {
    max-width: 650px;

    margin-top: 25px;

    color: #aaaab4;

    font-size: 16px;

    line-height: 1.8;
}


/* ============================================================
   COMMON SECTION
   ============================================================ */

.event-categories,
.featured-events {
    width: min(1200px, 90%);

    margin: auto;
}

.event-categories {
    padding: 90px 0 50px;
}

.featured-events {
    padding: 50px 0 100px;
}

.section-heading span,
.section-heading-row span {
    display: block;

    color: #9999a4;

    font-size: 11px;
    font-weight: 800;

    letter-spacing: 2px;
}

.section-heading h2,
.section-heading-row h2 {
    margin-top: 10px;

    font-size: 38px;
    letter-spacing: -1.8px;

    color: #111118;
}


/* ============================================================
   CATEGORY GRID
   ============================================================ */

.category-grid {
    display: grid;

    grid-template-columns: repeat(5, 1fr);

    gap: 15px;

    margin-top: 35px;
}

.event-category-card {
    position: relative;

    min-height: 190px;

    padding: 25px 20px;

    border: 1px solid var(--border);

    border-radius: var(--radius-md);

    background: white;

    box-shadow: var(--shadow-sm);

    overflow: hidden;

    transition:
        transform var(--transition),
        box-shadow var(--transition),
        border-color var(--transition);
}

.event-category-card::after {
    content: "";

    position: absolute;

    width: 110px;
    height: 110px;

    right: -45px;
    bottom: -45px;

    border-radius: 50%;

    background: rgba(255,23,68,0.05);

    transition: var(--transition);
}

.event-category-card:hover {
    transform: translateY(-8px);

    border-color: rgba(255,23,68,0.20);

    box-shadow: var(--shadow-md);
}

.event-category-card:hover::after {
    transform: scale(1.5);

    background: rgba(255,23,68,0.10);
}

.category-icon {
    width: 53px;
    height: 53px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 15px;

    background: #fff0f3;

    color: var(--primary);

    font-size: 20px;

    margin-bottom: 25px;

    transition: var(--transition);
}

.event-category-card:hover .category-icon {
    background: var(--primary);
    color: white;

    transform: rotate(-5deg) scale(1.08);
}

.event-category-card h3 {
    position: relative;
    z-index: 2;

    font-size: 17px;
    font-weight: 700;

    color: #15151b;
}

.event-category-card p {
    position: relative;
    z-index: 2;

    margin-top: 7px;

    color: #858590;

    font-size: 12px;

    line-height: 1.5;
}


/* ============================================================
   FEATURED HEADER
   ============================================================ */

.section-heading-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    gap: 30px;

    margin-bottom: 35px;
}

.view-all {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    color: var(--primary);

    font-size: 13px;
    font-weight: 700;

    transition: var(--transition);
}

.view-all:hover {
    gap: 13px;
}


/* ============================================================
   EVENT GRID
   ============================================================ */

.event-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 20px;
}

.event-card {
    background: white;

    border: 1px solid var(--border);

    border-radius: var(--radius-md);

    overflow: hidden;

    box-shadow: var(--shadow-sm);

    transition:
        transform var(--transition),
        box-shadow var(--transition),
        border-color var(--transition);
}

.event-card:hover {
    transform: translateY(-8px);

    box-shadow: var(--shadow-lg);

    border-color: rgba(255,23,68,0.15);
}


/* ============================================================
   EVENT IMAGE
   ============================================================ */

.event-image {
    position: relative;

    height: 220px;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 20% 20%,
            rgba(255,255,255,0.12),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            #191921,
            #2b1820
        );
}

.event-placeholder {
    width: 100%;
    height: 100%;

    display: flex;
    align-items: center;
    justify-content: center;

    color: rgba(255,255,255,0.8);

    font-size: 48px;

    background:
        radial-gradient(
            circle,
            rgba(255,23,68,0.20),
            transparent 55%
        );

    transition: transform 0.5s ease;
}

.event-card:hover .event-placeholder {
    transform: scale(1.08);
}

.event-badge {
    position: absolute;

    top: 15px;
    left: 15px;

    padding: 7px 11px;

    border-radius: 7px;

    background: var(--primary);

    color: white;

    font-size: 9px;
    font-weight: 800;

    letter-spacing: 1px;

    box-shadow:
        0 5px 15px rgba(255,23,68,0.30);
}


/* ============================================================
   EVENT INFO
   ============================================================ */

.event-info {
    padding: 22px;
}

.event-type {
    color: var(--primary);

    font-size: 10px;
    font-weight: 800;

    letter-spacing: 1.5px;
}

.event-info h3 {
    margin-top: 7px;

    color: #111118;

    font-size: 18px;

    line-height: 1.25;

    letter-spacing: -0.4px;
}

.event-info p {
    display: flex;
    align-items: center;
    gap: 9px;

    margin-top: 12px;

    color: #7c7c86;

    font-size: 12px;
}

.event-info p i {
    width: 14px;

    color: var(--primary);

    font-size: 11px;
}

.event-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 10px;

    margin-top: 22px;

    padding-top: 18px;

    border-top: 1px solid #eeeeF2;
}

.event-bottom strong {
    color: #17171d;

    font-size: 14px;
}

.event-bottom button {
    border: 0;

    padding: 10px 13px;

    border-radius: 9px;

    background: #fff0f3;

    color: var(--primary);

    font-size: 11px;
    font-weight: 700;

    transition: var(--transition);
}

.event-bottom button i {
    margin-left: 4px;
}

.event-bottom button:hover {
    background: var(--primary);

    color: white;

    transform: translateX(2px);
}


/* ============================================================
   CTA
   ============================================================ */

.events-cta {
    position: relative;

    width: min(1200px, 90%);

    margin: 0 auto 90px;

    padding: 70px 50px;

    overflow: hidden;

    border-radius: var(--radius-lg);

    text-align: center;

    background:
        radial-gradient(
            circle at 50% 0%,
            rgba(255,255,255,0.15),
            transparent 40%
        ),
        linear-gradient(
            135deg,
            #121219,
            #240d15
        );

    box-shadow:
        0 25px 70px rgba(0,0,0,0.18);
}

.events-cta::before,
.events-cta::after {
    content: "";

    position: absolute;

    border-radius: 50%;

    border: 1px solid rgba(255,255,255,0.07);
}

.events-cta::before {
    width: 260px;
    height: 260px;

    left: -100px;
    top: -130px;
}

.events-cta::after {
    width: 350px;
    height: 350px;

    right: -160px;
    bottom: -200px;
}

.events-cta > div {
    position: relative;
    z-index: 2;
}

.events-cta i {
    width: 60px;
    height: 60px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border-radius: 18px;

    background: var(--primary);

    color: white;

    font-size: 23px;

    box-shadow:
        0 12px 30px rgba(255,23,68,0.30);
}

.events-cta h2 {
    margin-top: 22px;

    color: white;

    font-size: clamp(28px, 4vw, 42px);

    letter-spacing: -1.5px;
}

.events-cta p {
    margin-top: 12px;

    color: #aaaab4;

    font-size: 14px;
}


/* ============================================================
   SEARCH OVERLAY
   ============================================================ */

.search-overlay {
    position: fixed;

    inset: 0;

    z-index: 3000;

    display: flex;
    align-items: flex-start;
    justify-content: center;

    padding-top: 100px;

    background: rgba(5,5,8,0.78);

    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);

    opacity: 0;
    visibility: hidden;

    transition: 0.3s ease;
}

.search-overlay.active {
    opacity: 1;
    visibility: visible;
}

.search-panel {
    position: relative;

    width: min(760px, 92%);

    max-height: 80vh;

    overflow-y: auto;

    padding: 45px;

    border-radius: 25px;

    background: #121218;

    border: 1px solid rgba(255,255,255,0.08);

    box-shadow: 0 30px 100px rgba(0,0,0,0.45);

    transform: translateY(-20px);

    transition: 0.3s ease;
}

.search-overlay.active .search-panel {
    transform: translateY(0);
}

.close-search,
.modal-close {
    position: absolute;

    top: 18px;
    right: 18px;

    width: 38px;
    height: 38px;

    border: 1px solid rgba(255,255,255,0.10);

    border-radius: 50%;

    background: rgba(255,255,255,0.06);

    color: white;

    transition: var(--transition);
}

.close-search:hover,
.modal-close:hover {
    background: var(--primary);

    transform: rotate(90deg);
}

.search-heading span,
.signin-label {
    color: var(--primary);

    font-size: 10px;
    font-weight: 800;

    letter-spacing: 2px;
}

.search-heading h2 {
    margin-top: 12px;

    color: white;

    font-size: 32px;
}

.search-heading p {
    margin-top: 8px;

    color: #888892;

    font-size: 13px;
}

.large-search-box {
    display: flex;
    align-items: center;
    gap: 12px;

    margin-top: 30px;

    padding: 0 18px;

    height: 58px;

    border: 1px solid rgba(255,255,255,0.10);

    border-radius: 14px;

    background: rgba(255,255,255,0.05);
}

.large-search-box > i {
    color: var(--primary);
}

.large-search-box input {
    flex: 1;

    border: 0;
    outline: 0;

    background: transparent;

    color: white;

    font-size: 14px;
}

.large-search-box button {
    border: 0;

    background: transparent;

    color: #888892;

    font-size: 12px;
}

.search-results {
    margin-top: 20px;
}

.search-empty {
    padding: 50px 20px;

    text-align: center;

    color: #777782;
}

.search-empty i {
    color: var(--primary);

    font-size: 30px;

    margin-bottom: 15px;
}

.search-empty h3 {
    color: white;

    margin-bottom: 8px;
}

.search-result-item {
    display: flex;
    align-items: center;
    gap: 14px;

    padding: 15px;

    margin-bottom: 8px;

    border-radius: 12px;

    background: rgba(255,255,255,0.04);

    color: white;
}

.search-result-icon {
    width: 40px;
    height: 40px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 10px;

    background: rgba(255,23,68,0.12);

    color: var(--primary);
}

.search-result-info {
    flex: 1;
}

.search-result-info strong {
    display: block;

    font-size: 13px;
}

.search-result-info span {
    display: block;

    margin-top: 4px;

    color: #777782;

    font-size: 11px;
}


/* ============================================================
   MODALS
   ============================================================ */

.modal-overlay {
    position: fixed;

    inset: 0;

    z-index: 4000;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 20px;

    background: rgba(0,0,0,0.72);

    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    opacity: 0;
    visibility: hidden;

    transition: 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.location-modal,
.signin-modal,
.otp-modal {
    position: relative;

    width: min(480px, 100%);

    max-height: 90vh;

    overflow-y: auto;

    padding: 38px;

    border-radius: 24px;

    background: #ffffff;

    box-shadow: 0 30px 100px rgba(0,0,0,0.30);

    transform: scale(0.94) translateY(15px);

    transition: 0.3s ease;
}

.modal-overlay.active .location-modal,
.modal-overlay.active .signin-modal,
.modal-overlay.active .otp-modal {
    transform: scale(1) translateY(0);
}

.location-modal .modal-close,
.signin-modal .modal-close,
.otp-modal .modal-close {
    background: #f4f4f6;

    color: #222;
}

.location-modal-header {
    text-align: center;

    padding-bottom: 20px;
}

.location-big-icon,
.signin-icon,
.otp-icon {
    width: 60px;
    height: 60px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin: 0 auto 18px;

    border-radius: 18px;

    background: #fff0f3;

    color: var(--primary);

    font-size: 23px;
}

.location-modal-header > span {
    color: var(--primary);

    font-size: 10px;
    font-weight: 800;

    letter-spacing: 2px;
}

.location-modal-header h2,
.signin-modal h2,
.otp-modal h2 {
    margin-top: 8px;

    color: #15151b;

    font-size: 27px;

    letter-spacing: -1px;
}

.location-modal-header p,
.signin-modal > p,
.otp-modal > p {
    margin-top: 9px;

    color: #777782;

    font-size: 13px;

    line-height: 1.6;
}

.location-list {
    margin-top: 20px;
}

.location-option {
    width: 100%;

    display: flex;
    align-items: center;

    padding: 13px;

    margin-bottom: 7px;

    border: 1px solid #eeeeF2;

    border-radius: 12px;

    background: white;

    color: #222;

    transition: var(--transition);
}

.location-option:hover,
.location-option.selected {
    border-color: rgba(255,23,68,0.25);

    background: #fff7f8;
}

.location-option-left {
    display: flex;
    align-items: center;
    gap: 10px;

    flex: 1;

    text-align: left;

    font-size: 13px;
    font-weight: 600;
}

.location-icon {
    width: 35px;
    height: 35px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 9px;

    background: #fff0f3;

    color: var(--primary);
}

.location-current {
    margin-right: 10px;

    color: var(--primary);

    font-size: 10px;
    font-weight: 700;
}


/* ============================================================
   SIGN IN
   ============================================================ */

.signin-modal,
.otp-modal {
    text-align: center;
}

.signin-input {
    display: flex;
    align-items: center;

    height: 55px;

    margin-top: 25px;

    border: 1px solid #dedee5;

    border-radius: 12px;

    overflow: hidden;
}

.signin-input > span {
    padding: 0 15px;

    color: #666672;

    font-size: 13px;

    border-right: 1px solid #eeeeF2;
}

.signin-input input {
    flex: 1;

    height: 100%;

    padding: 0 14px;

    border: 0;
    outline: 0;

    font-size: 14px;
}

.proceed-btn {
    width: 100%;

    height: 52px;

    margin-top: 15px;

    border: 0;

    border-radius: 12px;

    background:
        linear-gradient(
            135deg,
            var(--primary),
            var(--primary-dark)
        );

    color: white;

    font-size: 13px;
    font-weight: 700;

    box-shadow:
        0 10px 25px rgba(255,23,68,0.25);

    transition: var(--transition);
}

.proceed-btn:hover {
    transform: translateY(-2px);

    box-shadow:
        0 15px 30px rgba(255,23,68,0.30);
}

.proceed-btn i {
    margin-left: 8px;
}

.terms-text {
    display: block;

    margin-top: 18px;

    color: #9999a4;

    font-size: 10px;

    line-height: 1.6;
}

.terms-text a {
    color: var(--primary);
}


/* ============================================================
   OTP
   ============================================================ */

.otp-inputs {
    display: flex;
    justify-content: center;

    gap: 8px;

    margin-top: 25px;
}

.otp-input {
    width: 46px;
    height: 52px;

    border: 1px solid #ddddE5;

    border-radius: 10px;

    outline: 0;

    text-align: center;

    font-size: 18px;
    font-weight: 700;

    transition: var(--transition);
}

.otp-input:focus {
    border-color: var(--primary);

    box-shadow:
        0 0 0 4px rgba(255,23,68,0.08);
}

.resend-otp {
    margin-top: 15px;

    border: 0;

    background: transparent;

    color: var(--primary);

    font-size: 12px;
    font-weight: 700;
}


/* ============================================================
   MOBILE NAV
   ============================================================ */

.mobile-nav {
    display: none;
}


/* ============================================================
   TOAST
   ============================================================ */

.header-toast-container {
    position: fixed;

    right: 25px;
    bottom: 25px;

    z-index: 6000;
}

.header-toast {
    display: flex;
    align-items: center;
    gap: 10px;

    padding: 14px 18px;

    margin-top: 10px;

    border-radius: 12px;

    background: #17171e;

    color: white;

    box-shadow: 0 15px 40px rgba(0,0,0,0.25);

    font-size: 12px;

    animation: toastIn 0.3s ease;
}

.header-toast i {
    color: #34d399;
}

.header-toast.hide {
    animation: toastOut 0.3s ease forwards;
}

@keyframes toastIn {
    from {
        opacity: 0;
        transform: translateY(15px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes toastOut {
    from {
        opacity: 1;
        transform: translateY(0);
    }

    to {
        opacity: 0;
        transform: translateY(15px);
    }
}


/* ============================================================
   RESPONSIVE — TABLET
   ============================================================ */

@media (max-width: 1100px) {

    .nav-container {
        gap: 15px;
    }

    .brand-logo {
        min-width: 180px;
    }

    .header-search {
        max-width: 250px;
    }

    .main-nav a {
        padding-left: 8px;
        padding-right: 8px;
    }

    .category-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .event-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}


/* ============================================================
   RESPONSIVE — MOBILE
   ============================================================ */

@media (max-width: 850px) {

    .nav-container {
        min-height: 72px;
    }

    .brand-logo {
        min-width: auto;
    }

    .brand-logo-text strong {
        font-size: 17px;
    }

    .brand-logo-icon {
        width: 43px;
        height: 43px;
    }

    .header-search,
    .main-nav,
    .location-selector {
        display: none;
    }

    .nav-actions {
        margin-left: auto;
    }

    .mobile-menu-btn {
        display: block;
    }

    .signin-btn {
        min-width: 78px;
        height: 39px;
    }


    /* MOBILE NAV */

    .mobile-nav {
        position: absolute;

        left: 0;
        right: 0;
        top: 72px;

        display: block;

        max-height: 0;

        overflow: hidden;

        background: #101016;

        border-top: 1px solid rgba(255,255,255,0.07);

        transition:
            max-height 0.4s ease;
    }

    .mobile-nav.active {
        max-height: calc(100vh - 72px);

        overflow-y: auto;
    }

    .mobile-nav-inner {
        padding: 18px;
    }

    .mobile-search-btn {
        width: 100%;

        height: 50px;

        display: flex;
        align-items: center;
        gap: 10px;

        padding: 0 15px;

        border: 1px solid rgba(255,255,255,0.08);

        border-radius: 12px;

        background: rgba(255,255,255,0.05);

        color: #9999a4;

        text-align: left;
    }

    .mobile-search-btn i {
        color: var(--primary);
    }

    .mobile-nav-links {
        margin-top: 15px;
    }

    .mobile-nav-links a,
    .mobile-location {
        width: 100%;

        min-height: 55px;

        display: flex;
        align-items: center;

        gap: 12px;

        padding: 0 12px;

        margin-bottom: 7px;

        border: 1px solid rgba(255,255,255,0.06);

        border-radius: 12px;

        background: rgba(255,255,255,0.03);

        color: #aaaab4;

        font-size: 13px;
        font-weight: 600;
    }

    .mobile-nav-links a > i,
    .mobile-location > i {
        margin-left: auto;

        font-size: 10px;

        color: #666672;
    }

    .mobile-nav-links a.active {
        color: white;

        border-color: rgba(255,23,68,0.25);

        background: rgba(255,23,68,0.08);
    }

    .mobile-nav-icon {
        width: 35px;
        height: 35px;

        display: flex;
        align-items: center;
        justify-content: center;

        border-radius: 9px;

        background: rgba(255,23,68,0.10);

        color: var(--primary);
    }

    .mobile-location {
        justify-content: flex-start;

        color: #aaaab4;

        border: 0;

        background: transparent;
    }

    .mobile-location > span {
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .mobile-location i {
        color: var(--primary);
    }

    .mobile-signin {
        width: 100%;

        height: 50px;

        margin-top: 8px;

        border: 0;

        border-radius: 12px;

        background: var(--primary);

        color: white;

        font-weight: 700;
    }


    /* HERO */

    .events-hero {
        min-height: 400px;
    }

    .events-hero h1 {
        letter-spacing: -2.5px;
    }

    .events-hero p {
        font-size: 14px;
    }


    /* CATEGORY */

    .category-grid {
        grid-template-columns: repeat(2, 1fr);
    }


    /* CTA */

    .events-cta {
        padding: 55px 25px;
    }

}


/* ============================================================
   SMALL MOBILE
   ============================================================ */

@media (max-width: 550px) {

    .nav-container {
        width: 92%;
    }

    .brand-logo-text {
        display: none;
    }

    .brand-logo-icon {
        width: 42px;
        height: 42px;
    }

    .signin-btn {
        min-width: 75px;
    }

    .events-hero {
        min-height: 390px;
    }

    .events-hero-content {
        width: 88%;
    }

    .events-hero h1 {
        font-size: 44px;
        letter-spacing: -2px;
    }

    .events-hero p {
        line-height: 1.7;
    }

    .event-categories,
    .featured-events {
        width: 88%;
    }

    .event-categories {
        padding-top: 65px;
    }

    .section-heading h2,
    .section-heading-row h2 {
        font-size: 30px;
    }

    .category-grid {
        grid-template-columns: 1fr 1fr;

        gap: 10px;
    }

    .event-category-card {
        min-height: 175px;

        padding: 18px;
    }

    .category-icon {
        width: 46px;
        height: 46px;

        margin-bottom: 20px;
    }

    .event-category-card h3 {
        font-size: 15px;
    }

    .event-category-card p {
        font-size: 11px;
    }

    .section-heading-row {
        align-items: flex-start;
        flex-direction: column;
    }

    .event-grid {
        grid-template-columns: 1fr;
    }

    .event-image {
        height: 230px;
    }

    .events-cta {
        width: 88%;

        margin-bottom: 60px;
    }

    .search-panel,
    .location-modal,
    .signin-modal,
    .otp-modal {
        padding: 30px 20px;
    }

    .otp-input {
        width: 42px;
        height: 48px;
    }

}


/* ============================================================
   REDUCE MOTION
   ============================================================ */

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
    }

}


/* ============================================================
   TIKTIKTICKET.IN — STREAM PAGE CSS
   Premium OTT / Entertainment Design
============================================================ */


/* ============================================================
   STREAM PAGE VARIABLES
============================================================ */

.stream-page {
    --stream-bg: #08080b;
    --stream-card: #111116;
    --stream-card-light: #18181f;
    --stream-text: #ffffff;
    --stream-muted: #a7a7b2;
    --stream-border: rgba(255, 255, 255, 0.08);
    --stream-accent: #ff3158;
    --stream-accent-dark: #d91f43;
    --stream-purple: #7c3aed;

    background:
        radial-gradient(
            circle at 85% 8%,
            rgba(124, 58, 237, 0.16),
            transparent 28%
        ),
        radial-gradient(
            circle at 10% 20%,
            rgba(255, 49, 88, 0.10),
            transparent 30%
        ),
        var(--stream-bg);

    color: var(--stream-text);
    min-height: 100vh;
    overflow: hidden;
}


/* ============================================================
   COMMON
============================================================ */

.stream-page *,
.stream-page *::before,
.stream-page *::after {
    box-sizing: border-box;
}

.stream-page a {
    text-decoration: none;
    color: inherit;
}

.stream-page button {
    font-family: inherit;
}


/* ============================================================
   HERO
============================================================ */

.stream-hero {
    position: relative;

    min-height: 650px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 70px;

    padding:
        120px
        7%
        90px;

    overflow: hidden;

    background:
        linear-gradient(
            90deg,
            rgba(8, 8, 11, 1) 0%,
            rgba(8, 8, 11, 0.95) 38%,
            rgba(8, 8, 11, 0.65) 70%,
            rgba(8, 8, 11, 0.9) 100%
        );
}


/* Decorative glow */

.stream-hero::before {
    content: "";

    position: absolute;

    width: 500px;
    height: 500px;

    right: -130px;
    top: -180px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(255, 49, 88, 0.18),
            transparent 70%
        );

    pointer-events: none;
}


/* Bottom fade */

.stream-hero::after {
    content: "";

    position: absolute;

    left: 0;
    right: 0;
    bottom: 0;

    height: 130px;

    background:
        linear-gradient(
            transparent,
            var(--stream-bg)
        );

    pointer-events: none;
}


/* ============================================================
   HERO CONTENT
============================================================ */

.stream-hero-content {
    position: relative;
    z-index: 2;

    max-width: 650px;
}


.stream-hero-content .section-label {
    display: inline-flex;

    align-items: center;
    gap: 9px;

    padding: 9px 15px;

    margin-bottom: 25px;

    border: 1px solid rgba(255, 49, 88, 0.25);

    border-radius: 50px;

    background:
        rgba(255, 49, 88, 0.08);

    color: #ff6a86;

    font-size: 11px;
    font-weight: 800;

    letter-spacing: 1.8px;
}


.stream-hero-content h1 {
    margin: 0;

    font-size: clamp(45px, 5vw, 76px);

    line-height: 1.03;

    letter-spacing: -3px;

    font-weight: 800;
}


.stream-hero-content h1 span {
    display: block;

    margin-top: 5px;

    background:
        linear-gradient(
            90deg,
            #ff3158,
            #ff6682,
            #9b72ff
        );

    -webkit-background-clip: text;
    background-clip: text;

    -webkit-text-fill-color: transparent;
}


.stream-hero-content p {
    max-width: 570px;

    margin: 28px 0 0;

    color: var(--stream-muted);

    font-size: 17px;

    line-height: 1.75;
}


/* ============================================================
   HERO BUTTONS
============================================================ */

.stream-hero-actions {
    display: flex;

    align-items: center;

    gap: 14px;

    margin-top: 35px;
}


.primary-stream-btn,
.secondary-stream-btn {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 10px;

    min-height: 50px;

    padding: 0 23px;

    border-radius: 12px;

    font-size: 14px;

    font-weight: 700;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        background 0.3s ease;
}


.primary-stream-btn {
    background:
        linear-gradient(
            135deg,
            #ff3158,
            #e52348
        );

    box-shadow:
        0 12px 30px rgba(255, 49, 88, 0.25);
}


.primary-stream-btn:hover {
    transform: translateY(-3px);

    box-shadow:
        0 18px 40px rgba(255, 49, 88, 0.35);
}


.secondary-stream-btn {
    border: 1px solid var(--stream-border);

    background:
        rgba(255, 255, 255, 0.045);

    color: #e8e8ed;
}


.secondary-stream-btn:hover {
    background:
        rgba(255, 255, 255, 0.09);

    transform: translateY(-3px);
}


/* ============================================================
   HERO VISUAL
============================================================ */

.stream-hero-visual {
    position: relative;
    z-index: 2;

    flex: 0 0 440px;

    display: flex;

    justify-content: center;
}


.hero-screen {
    position: relative;

    width: 430px;
    height: 290px;

    padding: 18px;

    border:
        1px solid rgba(255, 255, 255, 0.12);

    border-radius: 24px;

    background:
        linear-gradient(
            145deg,
            #202027,
            #0d0d11
        );

    box-shadow:
        0 35px 80px rgba(0, 0, 0, 0.55),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);

    transform:
        perspective(1000px)
        rotateY(-8deg)
        rotateX(3deg);

    transition:
        transform 0.5s ease;
}


.hero-screen:hover {
    transform:
        perspective(1000px)
        rotateY(0deg)
        rotateX(0deg)
        translateY(-8px);
}


.hero-screen::before {
    content: "";

    position: absolute;

    width: 180px;
    height: 180px;

    top: -50px;
    right: -40px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(255, 49, 88, 0.32),
            transparent 70%
        );

    filter: blur(5px);
}


/* ============================================================
   SCREEN TOP
============================================================ */

.screen-top {
    position: relative;
    z-index: 2;

    display: flex;

    align-items: center;

    gap: 8px;

    color: #d5d5da;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 1.5px;
}


.live-dot {
    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: #ff3158;

    box-shadow:
        0 0 12px rgba(255, 49, 88, 0.8);

    animation:
        livePulse 1.5s infinite;
}


@keyframes livePulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.35;
    }
}


/* ============================================================
   SCREEN CONTENT
============================================================ */

.screen-content {
    height: 190px;

    display: flex;

    flex-direction: column;

    align-items: center;
    justify-content: center;

    gap: 14px;

    border-radius: 16px;

    margin-top: 14px;

    background:
        radial-gradient(
            circle at center,
            rgba(124, 58, 237, 0.32),
            transparent 45%
        ),
        linear-gradient(
            145deg,
            #171720,
            #09090c
        );
}


.screen-content i {
    width: 62px;
    height: 62px;

    display: flex;

    align-items: center;
    justify-content: center;

    padding-left: 3px;

    border-radius: 50%;

    background:
        linear-gradient(
            135deg,
            #ff3158,
            #8b5cf6
        );

    box-shadow:
        0 15px 35px rgba(255, 49, 88, 0.25);
}


.screen-content span {
    font-size: 15px;

    font-weight: 800;

    letter-spacing: 4px;
}


/* ============================================================
   SCREEN CONTROLS
============================================================ */

.screen-controls {
    display: flex;

    align-items: center;
    justify-content: center;

    gap: 25px;

    margin-top: 13px;

    color: #9999a3;

    font-size: 12px;
}


.play-control {
    width: 31px;
    height: 31px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: white;

    color: #09090c;
}


/* ============================================================
   SECTION HEADING
============================================================ */

.stream-categories,
.trending-streams {
    padding: 90px 7%;
}


.section-heading {
    margin-bottom: 35px;
}


.section-heading > span,
.section-heading-row span {
    display: block;

    margin-bottom: 9px;

    color: #ff4b6d;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 2px;
}


.section-heading h2,
.section-heading-row h2 {
    margin: 0;

    font-size: clamp(28px, 3vw, 40px);

    line-height: 1.15;

    letter-spacing: -1.5px;
}


/* ============================================================
   CATEGORY GRID
============================================================ */

.stream-category-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 16px;
}


.stream-category-card {
    position: relative;

    min-height: 150px;

    display: flex;

    align-items: center;

    gap: 18px;

    padding: 25px;

    overflow: hidden;

    border:
        1px solid var(--stream-border);

    border-radius: 18px;

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.055),
            rgba(255, 255, 255, 0.018)
        );

    transition:
        transform 0.35s ease,
        border-color 0.35s ease,
        background 0.35s ease;
}


.stream-category-card::after {
    content: "";

    position: absolute;

    width: 100px;
    height: 100px;

    right: -45px;
    bottom: -45px;

    border-radius: 50%;

    background:
        rgba(255, 49, 88, 0.12);

    filter: blur(20px);
}


.stream-category-card:hover {
    transform: translateY(-7px);

    border-color:
        rgba(255, 49, 88, 0.35);

    background:
        linear-gradient(
            145deg,
            rgba(255, 49, 88, 0.10),
            rgba(255, 255, 255, 0.025)
        );
}


.stream-category-icon {
    flex-shrink: 0;

    width: 55px;
    height: 55px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 15px;

    background:
        rgba(255, 49, 88, 0.10);

    color: #ff4b6d;

    font-size: 20px;

    transition:
        transform 0.3s ease;
}


.stream-category-card:hover .stream-category-icon {
    transform:
        rotate(-5deg)
        scale(1.08);
}


.stream-category-card h3 {
    margin: 0 0 6px;

    font-size: 16px;
}


.stream-category-card p {
    margin: 0;

    color: var(--stream-muted);

    font-size: 12px;

    line-height: 1.5;
}


.stream-category-card > .fa-arrow-right {
    margin-left: auto;

    color: #777781;

    font-size: 12px;

    transition:
        transform 0.3s ease,
        color 0.3s ease;
}


.stream-category-card:hover > .fa-arrow-right {
    color: #ff4b6d;

    transform: translateX(5px);
}


/* ============================================================
   SECTION HEADING ROW
============================================================ */

.section-heading-row {
    display: flex;

    align-items: flex-end;
    justify-content: space-between;

    gap: 20px;

    margin-bottom: 35px;
}


.view-all {
    display: inline-flex;

    align-items: center;

    gap: 8px;

    color: #ff4b6d;

    font-size: 13px;

    font-weight: 700;

    transition:
        gap 0.3s ease;
}


.view-all:hover {
    gap: 13px;
}


/* ============================================================
   STREAM GRID
============================================================ */

.stream-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 22px;
}


/* ============================================================
   STREAM CARD
============================================================ */

.stream-card {
    overflow: hidden;

    border:
        1px solid var(--stream-border);

    border-radius: 18px;

    background:
        var(--stream-card);

    transition:
        transform 0.35s ease,
        border-color 0.35s ease,
        box-shadow 0.35s ease;
}


.stream-card:hover {
    transform: translateY(-8px);

    border-color:
        rgba(255, 255, 255, 0.14);

    box-shadow:
        0 25px 55px rgba(0, 0, 0, 0.35);
}


/* ============================================================
   STREAM IMAGE
============================================================ */

.stream-card-image {
    position: relative;

    height: 285px;

    overflow: hidden;
}


.stream-poster {
    width: 100%;
    height: 100%;

    display: flex;

    align-items: center;
    justify-content: center;

    background:
        radial-gradient(
            circle at 50% 40%,
            rgba(124, 58, 237, 0.4),
            transparent 45%
        ),
        linear-gradient(
            145deg,
            #242431,
            #0c0c10
        );

    color:
        rgba(255, 255, 255, 0.18);

    font-size: 70px;

    transition:
        transform 0.5s ease;
}


.stream-card:nth-child(2) .stream-poster {
    background:
        radial-gradient(
            circle at 30% 30%,
            rgba(255, 49, 88, 0.35),
            transparent 50%
        ),
        linear-gradient(
            145deg,
            #2a1d27,
            #0c0c10
        );
}


.stream-card:nth-child(3) .stream-poster {
    background:
        radial-gradient(
            circle at 70% 30%,
            rgba(59, 130, 246, 0.35),
            transparent 50%
        ),
        linear-gradient(
            145deg,
            #172238,
            #080b12
        );
}


.stream-card:nth-child(4) .stream-poster {
    background:
        radial-gradient(
            circle at 50% 30%,
            rgba(245, 158, 11, 0.30),
            transparent 50%
        ),
        linear-gradient(
            145deg,
            #302317,
            #0c0c10
        );
}


.stream-card:hover .stream-poster {
    transform: scale(1.07);
}


/* ============================================================
   IMAGE OVERLAY
============================================================ */

.stream-card-image::after {
    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            transparent 45%,
            rgba(0, 0, 0, 0.75)
        );

    pointer-events: none;
}


/* ============================================================
   STREAM BADGE
============================================================ */

.stream-badge {
    position: absolute;

    z-index: 3;

    top: 15px;
    left: 15px;

    padding: 7px 10px;

    border-radius: 6px;

    background:
        rgba(255, 49, 88, 0.92);

    color: white;

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 1px;
}


/* ============================================================
   PLAY BUTTON
============================================================ */

.stream-play-btn {
    position: absolute;

    z-index: 4;

    left: 50%;
    top: 50%;

    transform:
        translate(-50%, -50%)
        scale(0.7);

    width: 58px;
    height: 58px;

    display: flex;

    align-items: center;
    justify-content: center;

    border: 0;

    border-radius: 50%;

    background:
        rgba(255, 255, 255, 0.94);

    color: #111116;

    cursor: pointer;

    opacity: 0;

    box-shadow:
        0 10px 35px rgba(0, 0, 0, 0.4);

    transition:
        opacity 0.3s ease,
        transform 0.3s ease;
}


.stream-card:hover .stream-play-btn {
    opacity: 1;

    transform:
        translate(-50%, -50%)
        scale(1);
}


.stream-play-btn:hover {
    transform:
        translate(-50%, -50%)
        scale(1.08) !important;
}


/* ============================================================
   STREAM CARD INFO
============================================================ */

.stream-card-info {
    padding: 20px;
}


.stream-type {
    display: inline-block;

    margin-bottom: 8px;

    color: #ff4b6d;

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 1.5px;
}


.stream-card-info h3 {
    margin: 0;

    font-size: 18px;

    letter-spacing: -0.3px;
}


.stream-card-info p {
    margin: 8px 0 15px;

    color: var(--stream-muted);

    font-size: 12px;
}


.stream-meta {
    display: flex;

    align-items: center;

    gap: 10px;
}


.stream-meta span {
    display: inline-flex;

    align-items: center;

    gap: 5px;

    padding: 5px 8px;

    border-radius: 5px;

    background:
        rgba(255, 255, 255, 0.06);

    color: #c8c8cf;

    font-size: 10px;

    font-weight: 700;
}


.stream-meta span:first-child {
    color: #ffc44d;
}


.stream-meta span:first-child i {
    font-size: 9px;
}


/* ============================================================
   LIVE STREAM SECTION
============================================================ */

.live-stream-section {
    position: relative;

    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 60px;

    margin: 30px 7% 100px;

    padding: 65px;

    overflow: hidden;

    border:
        1px solid rgba(255, 49, 88, 0.16);

    border-radius: 28px;

    background:
        radial-gradient(
            circle at 80% 50%,
            rgba(255, 49, 88, 0.15),
            transparent 35%
        ),
        linear-gradient(
            135deg,
            #161116,
            #0c0c10
        );
}


.live-stream-section::before {
    content: "";

    position: absolute;

    width: 350px;
    height: 350px;

    left: -180px;
    bottom: -220px;

    border-radius: 50%;

    background:
        rgba(124, 58, 237, 0.15);

    filter: blur(50px);
}


.live-stream-content {
    position: relative;
    z-index: 2;

    max-width: 600px;
}


.live-indicator {
    display: inline-flex;

    align-items: center;

    gap: 8px;

    margin-bottom: 18px;

    color: #ff4b6d;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 1.7px;
}


.live-indicator span {
    width: 8px;
    height: 8px;

    border-radius: 50%;

    background: #ff3158;

    box-shadow:
        0 0 14px rgba(255, 49, 88, 0.8);

    animation:
        livePulse 1.5s infinite;
}


.live-stream-content h2 {
    margin: 0;

    font-size: clamp(30px, 4vw, 48px);

    line-height: 1.12;

    letter-spacing: -1.5px;
}


.live-stream-content h2 span {
    color: #ff4b6d;
}


.live-stream-content p {
    max-width: 530px;

    margin: 20px 0 27px;

    color: var(--stream-muted);

    line-height: 1.7;

    font-size: 14px;
}


.live-watch-btn {
    display: inline-flex;

    align-items: center;

    gap: 10px;

    padding: 13px 21px;

    border-radius: 10px;

    background:
        #ffffff;

    color: #111116;

    font-size: 13px;

    font-weight: 800;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}


.live-watch-btn:hover {
    transform: translateY(-3px);

    box-shadow:
        0 15px 30px rgba(0, 0, 0, 0.35);
}


/* ============================================================
   LIVE VISUAL
============================================================ */

.live-visual {
    position: relative;
    z-index: 2;

    flex: 0 0 310px;
}


.live-screen {
    width: 300px;
    height: 210px;

    display: flex;

    flex-direction: column;

    align-items: center;
    justify-content: center;

    gap: 15px;

    border:
        1px solid rgba(255, 255, 255, 0.10);

    border-radius: 22px;

    background:
        radial-gradient(
            circle,
            rgba(255, 49, 88, 0.20),
            transparent 45%
        ),
        #101014;

    box-shadow:
        0 25px 60px rgba(0, 0, 0, 0.4);
}


.live-screen i {
    font-size: 48px;

    color: #ff4b6d;

    animation:
        broadcastPulse 2s infinite;
}


.live-screen span {
    font-size: 13px;

    font-weight: 800;

    letter-spacing: 3px;
}


@keyframes broadcastPulse {

    0% {
        transform: scale(1);
        opacity: 0.8;
    }

    50% {
        transform: scale(1.1);
        opacity: 1;
    }

    100% {
        transform: scale(1);
        opacity: 0.8;
    }
}


/* ============================================================
   STREAM CTA
============================================================ */

.stream-cta {
    position: relative;

    display: flex;

    align-items: center;

    gap: 25px;

    margin: 0 7% 80px;

    padding: 40px 45px;

    border:
        1px solid var(--stream-border);

    border-radius: 22px;

    background:
        linear-gradient(
            110deg,
            rgba(255, 49, 88, 0.09),
            rgba(124, 58, 237, 0.08)
        );
}


.stream-cta-icon {
    flex-shrink: 0;

    width: 60px;
    height: 60px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 17px;

    background:
        linear-gradient(
            135deg,
            #ff3158,
            #8b5cf6
        );

    box-shadow:
        0 12px 30px rgba(255, 49, 88, 0.20);

    font-size: 20px;
}


.stream-cta > div:nth-child(2) {
    flex: 1;
}


.stream-cta > div:nth-child(2) > span {
    color: #ff4b6d;

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 1.5px;
}


.stream-cta h2 {
    margin: 7px 0;

    font-size: 24px;

    letter-spacing: -0.6px;
}


.stream-cta p {
    margin: 0;

    color: var(--stream-muted);

    font-size: 12px;

    line-height: 1.6;
}


.cta-stream-btn {
    flex-shrink: 0;

    display: inline-flex;

    align-items: center;

    gap: 9px;

    padding: 13px 20px;

    border-radius: 10px;

    background:
        #ffffff;

    color: #101014;

    font-size: 12px;

    font-weight: 800;

    transition:
        transform 0.3s ease;
}


.cta-stream-btn:hover {
    transform: translateY(-3px);
}


/* ============================================================
   RESPONSIVE — TABLET
============================================================ */

@media (max-width: 1100px) {

    .stream-hero {
        padding:
            110px 5% 80px;
    }


    .stream-hero-visual {
        flex-basis: 360px;
    }


    .hero-screen {
        width: 360px;
        height: 250px;
    }


    .screen-content {
        height: 160px;
    }


    .stream-category-grid,
    .stream-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }


    .stream-categories,
    .trending-streams {
        padding-left: 5%;
        padding-right: 5%;
    }


    .live-stream-section {
        margin-left: 5%;
        margin-right: 5%;
    }


    .stream-cta {
        margin-left: 5%;
        margin-right: 5%;
    }

}


/* ============================================================
   RESPONSIVE — MOBILE
============================================================ */

@media (max-width: 768px) {

    .stream-hero {
        min-height: auto;

        flex-direction: column;

        align-items: flex-start;

        gap: 45px;

        padding:
            100px 22px 75px;
    }


    .stream-hero-content {
        max-width: 100%;
    }


    .stream-hero-content h1 {
        font-size: 43px;

        letter-spacing: -2px;
    }


    .stream-hero-content p {
        font-size: 14px;

        line-height: 1.7;
    }


    .stream-hero-actions {
        flex-wrap: wrap;
    }


    .primary-stream-btn,
    .secondary-stream-btn {
        min-height: 47px;

        padding: 0 17px;
    }


    .stream-hero-visual {
        width: 100%;

        flex-basis: auto;
    }


    .hero-screen {
        width: 100%;
        max-width: 430px;

        height: 260px;

        transform: none;
    }


    .hero-screen:hover {
        transform: translateY(-5px);
    }


    .stream-categories,
    .trending-streams {
        padding:
            65px 22px;
    }


    .section-heading h2,
    .section-heading-row h2 {
        font-size: 29px;
    }


    .stream-category-grid {
        grid-template-columns: 1fr;

        gap: 12px;
    }


    .stream-category-card {
        min-height: 120px;
    }


    .stream-grid {
        grid-template-columns: 1fr 1fr;

        gap: 12px;
    }


    .stream-card-image {
        height: 230px;
    }


    .stream-card-info {
        padding: 15px;
    }


    .stream-card-info h3 {
        font-size: 15px;
    }


    .stream-card-info p {
        font-size: 10px;
    }


    .stream-play-btn {
        opacity: 1;

        width: 46px;
        height: 46px;

        transform:
            translate(-50%, -50%)
            scale(0.9);
    }


    .section-heading-row {
        align-items: flex-start;
    }


    .view-all {
        margin-top: 24px;

        white-space: nowrap;
    }


    .live-stream-section {
        flex-direction: column;

        align-items: flex-start;

        margin:
            10px 22px 65px;

        padding: 35px 25px;
    }


    .live-visual {
        width: 100%;

        flex-basis: auto;
    }


    .live-screen {
        width: 100%;
        height: 190px;
    }


    .stream-cta {
        flex-direction: column;

        align-items: flex-start;

        margin:
            0 22px 60px;

        padding: 30px 25px;
    }


    .cta-stream-btn {
        margin-top: 5px;
    }

}


/* ============================================================
   RESPONSIVE — SMALL MOBILE
============================================================ */

@media (max-width: 480px) {

    .stream-hero-content h1 {
        font-size: 37px;
    }


    .stream-hero-actions {
        flex-direction: column;

        align-items: stretch;
    }


    .primary-stream-btn,
    .secondary-stream-btn {
        width: 100%;
    }


    .hero-screen {
        height: 225px;

        padding: 13px;
    }


    .screen-content {
        height: 140px;
    }


    .screen-content i {
        width: 52px;
        height: 52px;
    }


    .stream-grid {
        grid-template-columns: 1fr;
    }


    .stream-card-image {
        height: 270px;
    }


    .section-heading-row {
        flex-direction: column;

        align-items: flex-start;
    }


    .view-all {
        margin-top: 0;
    }


    .live-stream-content h2 {
        font-size: 31px;
    }


    .stream-cta h2 {
        font-size: 21px;
    }

}


/* ============================================================
   REDUCED MOTION
============================================================ */

@media (prefers-reduced-motion: reduce) {

    .stream-page *,
    .stream-page *::before,
    .stream-page *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }

}

/* ============================================================
   TIKTIKTICKET.IN — PLAYS PAGE CSS
   Premium Theatre / Entertainment Design
============================================================ */


/* ============================================================
   ROOT
============================================================ */

:root {
    --plays-dark: #0b0b0f;
    --plays-dark-2: #121218;
    --plays-card: #17171f;
    --plays-card-2: #1d1d27;

    --plays-accent: #ff3b6b;
    --plays-accent-dark: #e92c5c;
    --plays-gold: #ffc857;

    --plays-white: #ffffff;
    --plays-text: #eeeeef;
    --plays-muted: #9b9ba6;
    --plays-border: rgba(255, 255, 255, 0.08);

    --plays-radius: 22px;
    --plays-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}


/* ============================================================
   RESET
============================================================ */

.plays-page,
.plays-page * {
    box-sizing: border-box;
}

.plays-page {
    width: 100%;
    overflow: hidden;
    background: #fafafa;
    color: #15151a;
}

.plays-page a {
    text-decoration: none;
}

.plays-page button {
    font-family: inherit;
}


/* ============================================================
   HERO
============================================================ */

.plays-hero {
    position: relative;
    min-height: 620px;

    display: flex;
    align-items: center;

    background:
        radial-gradient(
            circle at 75% 35%,
            rgba(255, 59, 107, 0.24),
            transparent 35%
        ),
        radial-gradient(
            circle at 20% 80%,
            rgba(255, 200, 87, 0.12),
            transparent 30%
        ),
        linear-gradient(
            120deg,
            #09090d 0%,
            #111119 55%,
            #09090d 100%
        );

    isolation: isolate;
}


/* cinematic glow */

.plays-hero::before {
    content: "";

    position: absolute;
    width: 500px;
    height: 500px;

    right: -160px;
    top: 50%;

    transform: translateY(-50%);

    border-radius: 50%;

    background: rgba(255, 59, 107, 0.14);

    filter: blur(100px);

    z-index: -1;
}


/* bottom fade */

.plays-hero::after {
    content: "";

    position: absolute;

    left: 0;
    right: 0;
    bottom: 0;

    height: 150px;

    background: linear-gradient(
        to top,
        #fafafa,
        transparent
    );

    pointer-events: none;
}


/* ============================================================
   HERO CONTENT
============================================================ */

.plays-hero-content {
    position: relative;

    width: min(1180px, 92%);

    margin: 0 auto;

    padding: 120px 0 110px;

    z-index: 2;
}

.plays-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    padding: 9px 16px;

    border: 1px solid rgba(255, 59, 107, 0.35);

    border-radius: 50px;

    background: rgba(255, 59, 107, 0.08);

    color: #ff6d91;

    font-size: 12px;
    font-weight: 800;

    letter-spacing: 1.8px;

    backdrop-filter: blur(10px);

    animation: playsFadeUp 0.8s ease forwards;
}

.plays-label i {
    font-size: 13px;
}


/* ============================================================
   HERO TITLE
============================================================ */

.plays-hero h1 {
    max-width: 760px;

    margin: 25px 0 20px;

    color: #ffffff;

    font-size: clamp(48px, 7vw, 82px);

    line-height: 0.98;

    letter-spacing: -3px;

    font-weight: 850;

    animation: playsFadeUp 0.9s ease forwards;
}

.plays-hero h1 span {
    display: block;

    background: linear-gradient(
        90deg,
        #ff3b6b,
        #ff718f,
        #ffc857
    );

    -webkit-background-clip: text;
    background-clip: text;

    -webkit-text-fill-color: transparent;
}


/* ============================================================
   HERO DESCRIPTION
============================================================ */

.plays-hero-content > p {
    max-width: 590px;

    margin: 0 0 32px;

    color: #b8b8c2;

    font-size: 17px;

    line-height: 1.75;

    animation: playsFadeUp 1s ease forwards;
}


/* ============================================================
   HERO BUTTON
============================================================ */

.plays-hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;

    padding: 15px 23px;

    border-radius: 12px;

    background: linear-gradient(
        135deg,
        var(--plays-accent),
        #ff5b83
    );

    color: #ffffff;

    font-size: 14px;
    font-weight: 800;

    box-shadow:
        0 12px 30px rgba(255, 59, 107, 0.25);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.plays-hero-btn:hover {
    transform: translateY(-4px);

    box-shadow:
        0 18px 40px rgba(255, 59, 107, 0.38);
}

.plays-hero-btn i {
    transition: transform 0.3s ease;
}

.plays-hero-btn:hover i {
    transform: translateY(3px);
}


/* ============================================================
   SECTION COMMON
============================================================ */

.plays-categories,
.popular-plays {
    width: min(1180px, 92%);

    margin: 0 auto;
}


/* ============================================================
   CATEGORIES
============================================================ */

.plays-categories {
    position: relative;

    padding: 70px 0 55px;
}

.plays-section-heading {
    margin-bottom: 35px;
}

.plays-section-heading > span,
.plays-section-heading-row span {
    display: block;

    margin-bottom: 9px;

    color: var(--plays-accent);

    font-size: 11px;
    font-weight: 900;

    letter-spacing: 2px;
}

.plays-section-heading h2,
.plays-section-heading-row h2 {
    margin: 0;

    color: #17171c;

    font-size: clamp(30px, 4vw, 42px);

    line-height: 1.1;

    letter-spacing: -1.5px;
}

.plays-section-heading p {
    max-width: 600px;

    margin-top: 13px;

    color: #777782;

    font-size: 15px;

    line-height: 1.7;
}


/* ============================================================
   CATEGORY GRID
============================================================ */

.plays-category-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 15px;
}


/* ============================================================
   CATEGORY CARD
============================================================ */

.plays-category-card {
    position: relative;

    min-height: 165px;

    display: flex;
    flex-direction: column;

    justify-content: space-between;

    padding: 23px;

    border: 1px solid #e8e8ec;

    border-radius: 18px;

    background: #ffffff;

    overflow: hidden;

    transition:
        transform 0.35s ease,
        border-color 0.35s ease,
        box-shadow 0.35s ease;
}

.plays-category-card::before {
    content: "";

    position: absolute;

    width: 110px;
    height: 110px;

    right: -45px;
    bottom: -45px;

    border-radius: 50%;

    background: rgba(255, 59, 107, 0.08);

    transition:
        transform 0.4s ease;
}

.plays-category-card:hover {
    transform: translateY(-7px);

    border-color: rgba(255, 59, 107, 0.25);

    box-shadow:
        0 18px 45px rgba(0, 0, 0, 0.09);
}

.plays-category-card:hover::before {
    transform: scale(2);
}


/* ============================================================
   CATEGORY ICON
============================================================ */

.plays-category-icon {
    width: 48px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 14px;

    background: rgba(255, 59, 107, 0.09);

    color: var(--plays-accent);

    font-size: 19px;

    transition:
        background 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease;
}

.plays-category-card:hover .plays-category-icon {
    background: var(--plays-accent);

    color: #ffffff;

    transform: rotate(-5deg) scale(1.05);
}

.plays-category-card h3 {
    margin: 16px 0 4px;

    color: #19191e;

    font-size: 17px;
}

.plays-category-card p {
    margin: 0;

    color: #858590;

    font-size: 12px;

    line-height: 1.5;
}


/* arrow */

.category-arrow {
    position: absolute;

    right: 20px;
    bottom: 20px;

    color: #c5c5cc;

    font-size: 13px;

    transition:
        color 0.3s ease,
        transform 0.3s ease;
}

.plays-category-card:hover .category-arrow {
    color: var(--plays-accent);

    transform: translateX(4px);
}


/* ============================================================
   POPULAR PLAYS
============================================================ */

.popular-plays {
    padding: 55px 0 90px;
}


/* heading row */

.plays-section-heading-row {
    display: flex;

    align-items: flex-end;
    justify-content: space-between;

    margin-bottom: 30px;
}

.plays-view-all {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    color: #292931;

    font-size: 13px;
    font-weight: 800;

    transition: color 0.3s ease;
}

.plays-view-all:hover {
    color: var(--plays-accent);
}

.plays-view-all i {
    transition: transform 0.3s ease;
}

.plays-view-all:hover i {
    transform: translateX(5px);
}


/* ============================================================
   PLAYS GRID
============================================================ */

.plays-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 20px;
}


/* ============================================================
   PLAY CARD
============================================================ */

.play-card {
    overflow: hidden;

    border: 1px solid #e8e8ec;

    border-radius: var(--plays-radius);

    background: #ffffff;

    box-shadow:
        0 8px 25px rgba(0, 0, 0, 0.04);

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        border-color 0.35s ease;
}

.play-card:hover {
    transform: translateY(-9px);

    border-color: rgba(255, 59, 107, 0.2);

    box-shadow:
        0 25px 55px rgba(0, 0, 0, 0.12);
}


/* ============================================================
   PLAY IMAGE
============================================================ */

.play-image {
    position: relative;

    height: 260px;

    overflow: hidden;

    background: #14141a;
}


/* ============================================================
   PLACEHOLDER
============================================================ */

.play-placeholder {
    width: 100%;
    height: 100%;

    display: flex;
    align-items: center;
    justify-content: center;

    position: relative;

    overflow: hidden;

    transition:
        transform 0.5s ease;
}

.play-placeholder::before {
    content: "";

    position: absolute;

    width: 190px;
    height: 190px;

    border-radius: 50%;

    background: rgba(255, 255, 255, 0.07);

    filter: blur(2px);
}

.play-placeholder::after {
    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            135deg,
            rgba(255,255,255,0.08),
            transparent 50%
        );
}

.play-placeholder i {
    position: relative;

    z-index: 2;

    color: rgba(255, 255, 255, 0.88);

    font-size: 65px;

    filter:
        drop-shadow(0 8px 20px rgba(0,0,0,0.25));

    transition:
        transform 0.5s ease;
}


/* Different visual moods */

.play-placeholder.drama {
    background:
        radial-gradient(
            circle at 50% 30%,
            #71334c,
            #25141d 70%
        );
}

.play-placeholder.comedy {
    background:
        radial-gradient(
            circle at 50% 30%,
            #71542a,
            #211a10 70%
        );
}

.play-placeholder.romance {
    background:
        radial-gradient(
            circle at 50% 30%,
            #87344f,
            #251018 70%
        );
}

.play-placeholder.family {
    background:
        radial-gradient(
            circle at 50% 30%,
            #334f6c,
            #101923 70%
        );
}


.play-card:hover .play-placeholder {
    transform: scale(1.06);
}

.play-card:hover .play-placeholder i {
    transform: scale(1.12);
}


/* ============================================================
   PLAY BADGE
============================================================ */

.play-badge {
    position: absolute;

    left: 15px;
    top: 15px;

    z-index: 4;

    padding: 7px 10px;

    border-radius: 7px;

    background: var(--plays-accent);

    color: #ffffff;

    font-size: 9px;
    font-weight: 900;

    letter-spacing: 1px;

    box-shadow:
        0 7px 18px rgba(255, 59, 107, 0.25);
}

.play-badge.popular {
    background: #ffc857;

    color: #1b1608;
}

.play-badge.new {
    background: #ffffff;

    color: #22222a;
}


/* ============================================================
   WISHLIST
============================================================ */

.play-wishlist {
    position: absolute;

    right: 15px;
    top: 15px;

    z-index: 4;

    width: 38px;
    height: 38px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255,255,255,0.15);

    border-radius: 50%;

    background: rgba(0,0,0,0.35);

    color: #ffffff;

    backdrop-filter: blur(8px);

    cursor: pointer;

    transition:
        background 0.3s ease,
        transform 0.3s ease;
}

.play-wishlist:hover {
    background: var(--plays-accent);

    transform: scale(1.1);
}


/* ============================================================
   PLAY INFO
============================================================ */

.play-info {
    padding: 20px;
}

.play-type {
    display: inline-block;

    margin-bottom: 7px;

    color: var(--plays-accent);

    font-size: 10px;
    font-weight: 900;

    letter-spacing: 1.5px;
}

.play-info h3 {
    margin: 0 0 13px;

    color: #17171c;

    font-size: 19px;

    line-height: 1.2;

    letter-spacing: -0.4px;
}

.play-info p {
    display: flex;
    align-items: center;
    gap: 9px;

    margin: 7px 0;

    color: #7d7d87;

    font-size: 12px;
}

.play-info p i {
    width: 14px;

    color: #a1a1aa;

    text-align: center;
}


/* ============================================================
   PLAY BOTTOM
============================================================ */

.play-bottom {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 10px;

    margin-top: 18px;

    padding-top: 15px;

    border-top: 1px solid #eeeeef;
}

.play-bottom strong {
    color: #18181d;

    font-size: 13px;

    white-space: nowrap;
}

.play-bottom button {
    display: inline-flex;
    align-items: center;
    gap: 7px;

    padding: 9px 12px;

    border: 0;

    border-radius: 8px;

    background: #18181e;

    color: #ffffff;

    font-size: 11px;
    font-weight: 800;

    cursor: pointer;

    transition:
        background 0.3s ease,
        transform 0.3s ease;
}

.play-bottom button:hover {
    background: var(--plays-accent);

    transform: translateX(2px);
}

.play-bottom button i {
    font-size: 9px;
}


/* ============================================================
   THEATRE EXPERIENCE
============================================================ */

.theatre-experience {
    position: relative;

    width: min(1180px, 92%);

    min-height: 390px;

    margin: 0 auto 90px;

    display: grid;

    grid-template-columns: 1fr 0.85fr;

    overflow: hidden;

    border-radius: 30px;

    background:
        linear-gradient(
            120deg,
            #101016,
            #19131a
        );

    box-shadow:
        0 30px 70px rgba(0,0,0,0.18);
}


/* ============================================================
   THEATRE CONTENT
============================================================ */

.theatre-content {
    position: relative;

    z-index: 3;

    padding: 65px;
}

.theatre-content > span {
    display: block;

    margin-bottom: 14px;

    color: #ff6689;

    font-size: 10px;
    font-weight: 900;

    letter-spacing: 2px;
}

.theatre-content h2 {
    max-width: 480px;

    margin: 0 0 18px;

    color: #ffffff;

    font-size: clamp(32px, 4vw, 48px);

    line-height: 1.05;

    letter-spacing: -1.5px;
}

.theatre-content h2 strong {
    color: var(--plays-accent);
}

.theatre-content p {
    max-width: 470px;

    margin: 0 0 28px;

    color: #a7a7b0;

    font-size: 14px;

    line-height: 1.7;
}

.theatre-content a {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    color: #ffffff;

    font-size: 13px;
    font-weight: 800;

    transition: color 0.3s ease;
}

.theatre-content a:hover {
    color: #ff5d82;
}

.theatre-content a i {
    transition: transform 0.3s ease;
}

.theatre-content a:hover i {
    transform: translateX(5px);
}


/* ============================================================
   THEATRE VISUAL
============================================================ */

.theatre-visual {
    position: relative;

    min-height: 390px;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;

    background:
        radial-gradient(
            circle,
            rgba(255, 59, 107, 0.20),
            transparent 60%
        );
}

.stage-glow {
    position: absolute;

    width: 280px;
    height: 280px;

    border-radius: 50%;

    background: rgba(255, 59, 107, 0.16);

    filter: blur(50px);
}


/* stage icon */

.stage-icon {
    position: relative;

    z-index: 5;

    width: 145px;
    height: 145px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255,255,255,0.13);

    border-radius: 50%;

    background:
        rgba(255,255,255,0.06);

    color: #ffffff;

    font-size: 60px;

    backdrop-filter: blur(10px);

    box-shadow:
        0 0 70px rgba(255,59,107,0.2);

    animation: theatreFloat 4s ease-in-out infinite;
}


/* ============================================================
   CURTAINS
============================================================ */

.stage-curtain {
    position: absolute;

    top: 0;
    bottom: 0;

    width: 90px;

    background:
        linear-gradient(
            90deg,
            #280b16,
            #69142f,
            #280b16
        );

    opacity: 0.75;
}

.stage-curtain.left {
    left: 0;

    clip-path:
        polygon(
            0 0,
            100% 0,
            70% 100%,
            0 100%
        );
}

.stage-curtain.right {
    right: 0;

    clip-path:
        polygon(
            0 0,
            100% 0,
            100% 100%,
            30% 100%
        );
}


/* ============================================================
   CTA
============================================================ */

.plays-cta {
    width: min(1180px, 92%);

    margin: 0 auto 80px;

    padding: 32px 38px;

    display: flex;

    align-items: center;

    gap: 22px;

    border: 1px solid #ececf0;

    border-radius: 20px;

    background: #ffffff;

    box-shadow:
        0 15px 40px rgba(0,0,0,0.05);
}

.plays-cta-icon {
    flex-shrink: 0;

    width: 55px;
    height: 55px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 15px;

    background:
        rgba(255, 59, 107, 0.1);

    color: var(--plays-accent);

    font-size: 22px;
}

.plays-cta > div:nth-child(2) {
    flex: 1;
}

.plays-cta span {
    display: block;

    margin-bottom: 5px;

    color: var(--plays-accent);

    font-size: 9px;
    font-weight: 900;

    letter-spacing: 1.8px;
}

.plays-cta h2 {
    margin: 0;

    color: #19191f;

    font-size: 23px;

    letter-spacing: -0.5px;
}

.plays-cta h2 strong {
    color: var(--plays-accent);
}

.plays-cta p {
    margin: 6px 0 0;

    color: #85858e;

    font-size: 12px;
}

.plays-cta > a {
    display: inline-flex;

    align-items: center;
    gap: 9px;

    padding: 13px 18px;

    border-radius: 10px;

    background: #18181e;

    color: #ffffff;

    font-size: 12px;
    font-weight: 800;

    white-space: nowrap;

    transition:
        background 0.3s ease,
        transform 0.3s ease;
}

.plays-cta > a:hover {
    background: var(--plays-accent);

    transform: translateY(-2px);
}


/* ============================================================
   ANIMATIONS
============================================================ */

@keyframes playsFadeUp {

    from {
        opacity: 0;
        transform: translateY(25px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}


@keyframes theatreFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }

}


/* ============================================================
   TABLET
============================================================ */

@media (max-width: 1000px) {

    .plays-category-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .plays-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .theatre-experience {
        grid-template-columns: 1fr 0.8fr;
    }

    .theatre-content {
        padding: 50px;
    }

}


/* ============================================================
   MOBILE
============================================================ */

@media (max-width: 700px) {

    .plays-hero {
        min-height: 540px;
    }

    .plays-hero-content {
        padding:
            100px 0
            90px;
    }

    .plays-hero h1 {
        font-size: clamp(
            43px,
            13vw,
            65px
        );

        letter-spacing: -2px;
    }

    .plays-hero-content > p {
        font-size: 14px;
    }


    /* categories */

    .plays-categories {
        padding-top: 45px;
    }

    .plays-category-grid {
        grid-template-columns:
            repeat(2, 1fr);

        gap: 10px;
    }

    .plays-category-card {
        min-height: 150px;

        padding: 17px;
    }

    .plays-category-icon {
        width: 42px;
        height: 42px;
    }

    .plays-category-card h3 {
        font-size: 15px;
    }

    .plays-category-card p {
        font-size: 11px;
    }


    /* popular */

    .popular-plays {
        padding-top: 35px;
    }

    .plays-section-heading-row {
        align-items: flex-start;
    }

    .plays-section-heading-row h2 {
        font-size: 30px;
    }

    .plays-view-all {
        margin-top: 24px;
    }


    /* cards */

    .plays-grid {
        grid-template-columns:
            repeat(2, 1fr);

        gap: 11px;
    }

    .play-image {
        height: 210px;
    }

    .play-info {
        padding: 15px;
    }

    .play-info h3 {
        font-size: 16px;
    }

    .play-bottom {
        display: block;
    }

    .play-bottom strong {
        display: block;

        margin-bottom: 10px;
    }

    .play-bottom button {
        width: 100%;

        justify-content: center;
    }


    /* theatre */

    .theatre-experience {
        width: 92%;

        grid-template-columns: 1fr;

        margin-bottom: 55px;
    }

    .theatre-content {
        padding: 40px 28px 20px;
    }

    .theatre-visual {
        min-height: 250px;
    }

    .stage-icon {
        width: 110px;
        height: 110px;

        font-size: 43px;
    }

    .stage-curtain {
        width: 65px;
    }


    /* CTA */

    .plays-cta {
        width: 92%;

        padding: 25px;

        align-items: flex-start;

        flex-wrap: wrap;
    }

    .plays-cta > div:nth-child(2) {
        width: calc(100% - 80px);
    }

    .plays-cta h2 {
        font-size: 19px;
    }

    .plays-cta > a {
        width: 100%;

        justify-content: center;
    }

}


/* ============================================================
   SMALL MOBILE
============================================================ */

@media (max-width: 430px) {

    .plays-category-grid {
        grid-template-columns: 1fr;
    }

    .plays-category-card {
        min-height: 120px;
    }

    .plays-grid {
        grid-template-columns: 1fr;
    }

    .play-image {
        height: 245px;
    }

    .plays-section-heading-row {
        display: block;
    }

    .plays-view-all {
        margin-top: 15px;
    }

    .plays-hero-btn {
        width: 100%;

        justify-content: center;
    }

}


/* ============================================================
   ACCESSIBILITY
============================================================ */

.plays-page a:focus-visible,
.plays-page button:focus-visible {
    outline: 3px solid rgba(255, 59, 107, 0.35);

    outline-offset: 3px;
}


/* ============================================================
   REDUCED MOTION
============================================================ */

@media (prefers-reduced-motion: reduce) {

    .plays-page *,
    .plays-page *::before,
    .plays-page *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

}



/* =========================================================
   TIKTIKTICKET.IN — SPORTS PAGE CSS
========================================================= */


/* =========================================================
   ROOT
========================================================= */

:root {
    --sports-dark: #0b0b0f;
    --sports-dark-2: #111118;
    --sports-card: #17171f;
    --sports-border: rgba(255, 255, 255, 0.09);

    --sports-accent: #ff3158;
    --sports-accent-2: #ff5f75;

    --sports-white: #ffffff;
    --sports-text: #f5f5f7;
    --sports-muted: #a5a5b0;

    --sports-radius: 22px;
}


/* =========================================================
   PAGE
========================================================= */

.sports-page {
    background:
        radial-gradient(
            circle at 80% 10%,
            rgba(255, 49, 88, 0.10),
            transparent 30%
        ),
        var(--sports-dark);

    color: var(--sports-text);

    min-height: 100vh;

    overflow: hidden;
}


/* =========================================================
   COMMON
========================================================= */

.sports-page a {
    text-decoration: none;
    color: inherit;
}

.sports-page button {
    font-family: inherit;
}

.sports-page section {
    position: relative;
}


/* =========================================================
   HERO
========================================================= */

.sports-hero {
    min-height: 650px;

    display: flex;
    align-items: center;

    padding:
        120px
        7%
        100px;

    position: relative;

    isolation: isolate;

    background:
        linear-gradient(
            90deg,
            rgba(11, 11, 15, 1) 0%,
            rgba(11, 11, 15, 0.92) 42%,
            rgba(11, 11, 15, 0.55) 70%,
            rgba(11, 11, 15, 0.9) 100%
        );
}


/* Decorative glow */

.sports-hero::before {
    content: "";

    position: absolute;

    width: 500px;
    height: 500px;

    right: 7%;
    top: 50%;

    transform: translateY(-50%);

    background:
        radial-gradient(
            circle,
            rgba(255, 49, 88, 0.18),
            transparent 68%
        );

    filter: blur(20px);

    z-index: -1;
}


/* Bottom fade */

.sports-hero::after {
    content: "";

    position: absolute;

    left: 0;
    right: 0;
    bottom: 0;

    height: 120px;

    background:
        linear-gradient(
            transparent,
            var(--sports-dark)
        );

    pointer-events: none;
}


/* =========================================================
   HERO CONTENT
========================================================= */

.sports-hero-content {
    width: min(680px, 100%);

    position: relative;

    z-index: 2;

    animation:
        sportsHeroContent 0.9s ease both;
}


@keyframes sportsHeroContent {

    from {
        opacity: 0;
        transform: translateY(35px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}


/* =========================================================
   SECTION LABEL
========================================================= */

.sports-page .section-label {

    display: inline-flex;

    align-items: center;
    gap: 9px;

    padding: 9px 15px;

    border-radius: 100px;

    background:
        rgba(255, 49, 88, 0.10);

    border:
        1px solid rgba(255, 49, 88, 0.22);

    color: var(--sports-accent);

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 1.8px;

    margin-bottom: 25px;
}


.sports-page .section-label i {
    font-size: 13px;
}


/* =========================================================
   HERO TITLE
========================================================= */

.sports-hero h1 {

    margin: 0;

    font-size:
        clamp(52px, 7vw, 92px);

    line-height: 0.98;

    letter-spacing: -4px;

    font-weight: 900;

    max-width: 700px;
}


.sports-hero h1 span {

    display: block;

    color: var(--sports-accent);

    position: relative;

    width: fit-content;
}


.sports-hero h1 span::after {

    content: "";

    position: absolute;

    left: 3px;
    bottom: -7px;

    width: 72%;

    height: 4px;

    border-radius: 10px;

    background:
        linear-gradient(
            90deg,
            var(--sports-accent),
            transparent
        );

    transform-origin: left;

    animation:
        titleLine 1.2s ease 0.7s both;
}


@keyframes titleLine {

    from {
        transform: scaleX(0);
    }

    to {
        transform: scaleX(1);
    }

}


/* =========================================================
   HERO DESCRIPTION
========================================================= */

.sports-hero p {

    color: var(--sports-muted);

    font-size: 17px;

    line-height: 1.8;

    max-width: 590px;

    margin:
        30px
        0
        35px;
}


/* =========================================================
   HERO BUTTONS
========================================================= */

.sports-hero-actions {

    display: flex;

    align-items: center;

    gap: 14px;

    flex-wrap: wrap;
}


.sports-primary-btn,
.sports-secondary-btn {

    min-height: 52px;

    padding:
        0 22px;

    border-radius: 12px;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 10px;

    font-size: 14px;

    font-weight: 750;

    transition:
        transform 0.25s ease,
        background 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}


.sports-primary-btn {

    background:
        linear-gradient(
            135deg,
            var(--sports-accent),
            var(--sports-accent-2)
        );

    color: #fff;

    box-shadow:
        0 12px 30px
        rgba(255, 49, 88, 0.20);
}


.sports-primary-btn:hover {

    transform: translateY(-3px);

    box-shadow:
        0 18px 35px
        rgba(255, 49, 88, 0.30);
}


.sports-secondary-btn {

    border:
        1px solid var(--sports-border);

    background:
        rgba(255, 255, 255, 0.04);

    color: var(--sports-white);
}


.sports-secondary-btn:hover {

    background:
        rgba(255, 255, 255, 0.08);

    border-color:
        rgba(255, 255, 255, 0.18);

    transform: translateY(-3px);
}


/* =========================================================
   HERO VISUAL
========================================================= */

.sports-hero-visual {

    position: absolute;

    right: 8%;

    top: 50%;

    transform:
        translateY(-50%);

    width: 390px;
    height: 390px;

    display: flex;

    align-items: center;
    justify-content: center;

    pointer-events: none;
}


.hero-sports-circle {

    width: 270px;
    height: 270px;

    border-radius: 50%;

    display: flex;

    align-items: center;
    justify-content: center;

    font-size: 95px;

    color: var(--sports-accent);

    background:
        radial-gradient(
            circle at 35% 30%,
            #292932,
            #101016 70%
        );

    border:
        1px solid
        rgba(255, 255, 255, 0.10);

    box-shadow:
        0 0 0 25px
        rgba(255, 49, 88, 0.025),

        0 0 0 55px
        rgba(255, 49, 88, 0.018),

        0 35px 80px
        rgba(0, 0, 0, 0.45);

    animation:
        trophyFloat 4s ease-in-out infinite;
}


@keyframes trophyFloat {

    0%,
    100% {
        transform: translateY(0) rotate(-3deg);
    }

    50% {
        transform: translateY(-14px) rotate(3deg);
    }

}


/* =========================================================
   FLOATING SPORTS ICONS
========================================================= */

.floating-ball {

    position: absolute;

    width: 58px;
    height: 58px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    color: #fff;

    background:
        rgba(255, 255, 255, 0.06);

    border:
        1px solid
        rgba(255, 255, 255, 0.12);

    backdrop-filter: blur(10px);

    font-size: 21px;

    box-shadow:
        0 15px 30px
        rgba(0, 0, 0, 0.25);
}


.ball-one {

    top: 5%;
    left: 10%;

    animation:
        ballFloatOne 4s ease-in-out infinite;
}


.ball-two {

    right: 2%;
    top: 38%;

    animation:
        ballFloatTwo 4.5s ease-in-out infinite;
}


.ball-three {

    bottom: 4%;
    left: 18%;

    animation:
        ballFloatThree 5s ease-in-out infinite;
}


@keyframes ballFloatOne {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(8px, -15px);
    }

}


@keyframes ballFloatTwo {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(-10px, 12px);
    }

}


@keyframes ballFloatThree {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(12px, -10px);
    }

}


/* =========================================================
   CATEGORIES
========================================================= */

.sports-categories {

    padding:
        95px 7%
        85px;
}


.section-heading {

    margin-bottom: 42px;
}


.section-heading > span,
.section-heading-row span,
.sports-cta-content > span {

    display: block;

    color: var(--sports-accent);

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 2px;

    margin-bottom: 12px;
}


.section-heading h2,
.section-heading-row h2 {

    margin: 0;

    

    font-size:
        clamp(30px, 4vw, 46px);

    line-height: 1.1;

    letter-spacing: -1.5px;
}


.section-heading p {

    color: var(--sports-muted);

    max-width: 560px;

    margin-top: 14px;

    line-height: 1.7;

    font-size: 15px;
}


/* =========================================================
   CATEGORY GRID
========================================================= */

.sports-category-grid {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 16px;
}


.sports-category-card {

    min-height: 135px;

    padding: 24px;

    border:
        1px solid var(--sports-border);

    border-radius:
        var(--sports-radius);

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,0.055),
            rgba(255,255,255,0.018)
        );

    display: grid;

    grid-template-columns:
        60px 1fr 25px;

    align-items: center;

    gap: 16px;

    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        background 0.3s ease,
        box-shadow 0.3s ease;

    overflow: hidden;

    position: relative;
}


.sports-category-card::before {

    content: "";

    position: absolute;

    width: 120px;
    height: 120px;

    border-radius: 50%;

    background:
        rgba(255, 49, 88, 0.08);

    top: -70px;
    right: -60px;

    transition:
        transform 0.4s ease;
}


.sports-category-card:hover {

    transform:
        translateY(-7px);

    border-color:
        rgba(255, 49, 88, 0.28);

    background:
        linear-gradient(
            145deg,
            rgba(255,49,88,0.09),
            rgba(255,255,255,0.025)
        );

    box-shadow:
        0 18px 45px
        rgba(0, 0, 0, 0.25);
}


.sports-category-card:hover::before {

    transform: scale(2);
}


/* Category icon */

.sports-category-icon {

    width: 58px;
    height: 58px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 16px;

    color: var(--sports-accent);

    background:
        rgba(255, 49, 88, 0.10);

    border:
        1px solid
        rgba(255, 49, 88, 0.15);

    font-size: 22px;

    transition:
        transform 0.3s ease;
}


.sports-category-card:hover
.sports-category-icon {

    transform:
        rotate(-7deg)
        scale(1.08);
}


.sports-category-card h3 {

    margin: 0 0 7px;

    font-size: 17px;

    color: var(--sports-white);
}


.sports-category-card p {

    margin: 0;

    color: var(--sports-muted);

    font-size: 12px;

    line-height: 1.5;
}


.category-arrow {

    color:
        rgba(255, 255, 255, 0.35);

    font-size: 13px;

    transition:
        transform 0.3s ease,
        color 0.3s ease;
}


.sports-category-card:hover
.category-arrow {

    color: var(--sports-accent);

    transform:
        translateX(5px);
}


/* =========================================================
   POPULAR SPORTS
========================================================= */

.popular-sports {

    padding:
        20px 7%
        100px;
}


.section-heading-row {

    display: flex;

    align-items: flex-end;

    justify-content: space-between;

    gap: 20px;

    margin-bottom: 35px;
}


.view-all {

    display: inline-flex;

    align-items: center;

    gap: 8px;

    color: var(--sports-white);

    font-size: 13px;

    font-weight: 700;

    transition:
        color 0.25s ease,
        transform 0.25s ease;
}


.view-all:hover {

    color: var(--sports-accent);

    transform:
        translateX(4px);
}


/* =========================================================
   SPORTS EVENT GRID
========================================================= */

.sports-event-grid {

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 18px;
}


/* =========================================================
   EVENT CARD
========================================================= */

.sports-event-card {

    overflow: hidden;

    border-radius:
        var(--sports-radius);

    background:
        var(--sports-card);

    border:
        1px solid var(--sports-border);

    transition:
        transform 0.35s ease,
        border-color 0.35s ease,
        box-shadow 0.35s ease;
}


.sports-event-card:hover {

    transform:
        translateY(-8px);

    border-color:
        rgba(255, 49, 88, 0.28);

    box-shadow:
        0 22px 50px
        rgba(0, 0, 0, 0.35);
}


/* =========================================================
   EVENT IMAGE
========================================================= */

.sports-event-image {

    height: 235px;

    position: relative;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 50% 40%,
            #292932,
            #0f0f14 70%
        );
}


.sports-event-placeholder {

    width: 100%;
    height: 100%;

    display: flex;

    align-items: center;
    justify-content: center;

    font-size: 65px;

    color:
        rgba(255, 49, 88, 0.85);

    transition:
        transform 0.45s ease;
}


.sports-event-card:hover
.sports-event-placeholder {

    transform:
        scale(1.12)
        rotate(-3deg);
}


/* Image bottom gradient */

.sports-event-image::after {

    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            transparent 55%,
            rgba(11,11,15,0.65)
        );

    pointer-events: none;
}


/* =========================================================
   SPORTS BADGE
========================================================= */

.sports-badge {

    position: absolute;

    top: 14px;
    left: 14px;

    z-index: 2;

    padding:
        7px 10px;

    border-radius: 7px;

    background:
        var(--sports-accent);

    color: #fff;

    font-size: 9px;

    font-weight: 900;

    letter-spacing: 1px;
}


/* =========================================================
   EVENT INFO
========================================================= */

.sports-event-info {

    padding: 20px;
}


.sports-event-type {

    display: inline-block;

    color: var(--sports-accent);

    font-size: 9px;

    font-weight: 900;

    letter-spacing: 1.5px;

    margin-bottom: 9px;
}


.sports-event-info h3 {

    margin: 0 0 15px;

    font-size: 18px;

    line-height: 1.3;

    color: var(--sports-white);
}


.sports-event-info p {

    margin:
        8px 0;

    color: var(--sports-muted);

    font-size: 12px;

    display: flex;

    align-items: center;

    gap: 9px;
}


.sports-event-info p i {

    width: 14px;

    color:
        rgba(255, 255, 255, 0.45);

    text-align: center;
}


/* =========================================================
   EVENT BOTTOM
========================================================= */

.sports-event-bottom {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 10px;

    margin-top: 19px;

    padding-top: 17px;

    border-top:
        1px solid var(--sports-border);
}


.sports-event-bottom strong {

    color: var(--sports-white);

    font-size: 14px;

    white-space: nowrap;
}


.sports-event-bottom button {

    border: none;

    background: transparent;

    color: var(--sports-accent);

    cursor: pointer;

    font-size: 11px;

    font-weight: 800;

    display: inline-flex;

    align-items: center;

    gap: 6px;

    padding: 5px 0;

    transition:
        transform 0.25s ease;
}


.sports-event-bottom button:hover {

    transform:
        translateX(4px);
}


/* =========================================================
   CTA
========================================================= */

.sports-cta {

    margin:
        0 7%
        100px;

    min-height: 270px;

    padding:
        50px 60px;

    border-radius:
        28px;

    display: grid;

    grid-template-columns:
        100px 1fr auto;

    align-items: center;

    gap: 35px;

    position: relative;

    overflow: hidden;

    background:
        linear-gradient(
            120deg,
            #1c1c25,
            #111118
        );

    border:
        1px solid var(--sports-border);
}


.sports-cta::before {

    content: "";

    position: absolute;

    width: 360px;
    height: 360px;

    border-radius: 50%;

    right: -100px;
    top: -180px;

    background:
        rgba(255, 49, 88, 0.10);
}


.sports-cta-icon {

    width: 92px;
    height: 92px;

    border-radius: 25px;

    display: flex;

    align-items: center;
    justify-content: center;

    color: var(--sports-accent);

    background:
        rgba(255, 49, 88, 0.10);

    border:
        1px solid
        rgba(255, 49, 88, 0.20);

    font-size: 37px;

    transform:
        rotate(-5deg);
}


.sports-cta-content {

    position: relative;

    z-index: 2;
}


.sports-cta-content h2 {

    margin: 0;

    color: var(--sports-white);

    font-size:
        clamp(28px, 4vw, 45px);

    line-height: 1.08;

    letter-spacing: -1.5px;
}


.sports-cta-content p {

    margin:
        14px 0 0;

    color: var(--sports-muted);

    font-size: 14px;

    line-height: 1.6;
}


.sports-cta-btn {

    position: relative;

    z-index: 2;

    min-height: 52px;

    padding:
        0 22px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 9px;

    border-radius: 12px;

    background:
        var(--sports-accent);

    color: #fff;

    font-size: 13px;

    font-weight: 800;

    white-space: nowrap;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}


.sports-cta-btn:hover {

    transform:
        translateY(-3px);

    box-shadow:
        0 15px 30px
        rgba(255, 49, 88, 0.25);
}


/* =========================================================
   RESPONSIVE — LAPTOP
========================================================= */

@media (max-width: 1200px) {

    .sports-hero {
        padding-left: 6%;
        padding-right: 6%;
    }


    .sports-hero-visual {
        right: 3%;
        transform:
            translateY(-50%)
            scale(0.82);
    }


    .sports-categories,
    .popular-sports {
        padding-left: 6%;
        padding-right: 6%;
    }


    .sports-event-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

    .sports-hero {

        min-height: 620px;

        padding:
            120px 6%
            80px;
    }


    .sports-hero-content {

        max-width: 620px;

        text-align: center;

        margin: auto;
    }


    .sports-page .section-label {

        margin-left: auto;
        margin-right: auto;
    }


    .sports-hero h1 span {

        margin-left: auto;
        margin-right: auto;
    }


    .sports-hero p {

        margin-left: auto;
        margin-right: auto;
    }


    .sports-hero-actions {

        justify-content: center;
    }


    .sports-hero-visual {

        opacity: 0.18;

        right: 50%;

        transform:
            translate(50%, -50%)
            scale(1.1);

        z-index: -1;
    }


    .sports-category-grid {

        grid-template-columns:
            repeat(2, 1fr);
    }


    .sports-cta {

        grid-template-columns:
            80px 1fr;

        padding: 45px;
    }


    .sports-cta-btn {

        grid-column: 2;

        justify-self: start;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .sports-hero {

        min-height: 600px;

        padding:
            110px 20px
            70px;
    }


    .sports-hero h1 {

        font-size: 54px;

        letter-spacing: -2.8px;
    }


    .sports-hero p {

        font-size: 14px;

        line-height: 1.7;

        margin-top: 25px;
    }


    .sports-primary-btn,
    .sports-secondary-btn {

        width: 100%;
    }


    .sports-hero-actions {

        width: 100%;

        max-width: 330px;

        margin: auto;
    }


    .sports-hero-visual {

        transform:
            translate(50%, -50%)
            scale(0.8);
    }


    .sports-categories {

        padding:
            65px 20px
            60px;
    }


    .section-heading {

        margin-bottom: 30px;
    }


    .section-heading h2,
    .section-heading-row h2 {

        font-size: 32px;
    }


    .sports-category-grid {

        grid-template-columns: 1fr;

        gap: 12px;
    }


    .sports-category-card {

        min-height: 115px;

        padding: 18px;

        grid-template-columns:
            52px 1fr 20px;

        border-radius: 17px;
    }


    .sports-category-icon {

        width: 52px;
        height: 52px;

        border-radius: 14px;
    }


    .popular-sports {

        padding:
            0 20px
            70px;
    }


    .section-heading-row {

        align-items: flex-start;

        flex-direction: column;

        margin-bottom: 25px;
    }


    .sports-event-grid {

        grid-template-columns: 1fr;

        gap: 15px;
    }


    .sports-event-image {

        height: 220px;
    }


    .sports-event-info {

        padding: 18px;
    }


    .sports-event-info h3 {

        font-size: 17px;
    }


    .sports-cta {

        margin:
            0 20px
            70px;

        padding:
            35px 25px;

        min-height: auto;

        grid-template-columns: 1fr;

        gap: 22px;

        border-radius: 22px;
    }


    .sports-cta-icon {

        width: 70px;
        height: 70px;

        font-size: 28px;

        border-radius: 19px;
    }


    .sports-cta-content h2 {

        font-size: 32px;

        letter-spacing: -1px;
    }


    .sports-cta-content p {

        font-size: 13px;
    }


    .sports-cta-btn {

        grid-column: auto;

        width: 100%;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 380px) {

    .sports-hero h1 {

        font-size: 47px;
    }


    .sports-event-bottom {

        align-items: flex-start;

        flex-direction: column;
    }


    .sports-event-bottom button {

        padding: 0;
    }

}


/* =========================================================
   ACCESSIBILITY
========================================================= */

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {

        animation-duration: 0.01ms !important;

        animation-iteration-count: 1 !important;

        scroll-behavior: auto !important;

        transition-duration: 0.01ms !important;
    }

}


/* ============================================================
   TIKTIKTICKET.IN — ACTIVITIES PAGE
   Premium Activities Page CSS
============================================================ */


/* ============================================================
   RESET
============================================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Inter", "Segoe UI", Arial, sans-serif;
    background: #080808;
    color: #ffffff;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    font-family: inherit;
}

.activities-page {
    width: 100%;
    overflow: hidden;
}


/* ============================================================
   HERO
============================================================ */

.activities-hero {
    min-height: 650px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 110px 8% 90px;

    background:
        radial-gradient(
            circle at 80% 40%,
            rgba(235, 52, 72, 0.18),
            transparent 32%
        ),
        radial-gradient(
            circle at 10% 20%,
            rgba(255, 95, 55, 0.08),
            transparent 28%
        ),
        #080808;

    border-bottom: 1px solid rgba(255,255,255,0.06);

    isolation: isolate;
}


/* Decorative glow */

.activities-hero::before {
    content: "";
    position: absolute;

    width: 500px;
    height: 500px;

    right: 5%;
    top: 50%;

    transform: translateY(-50%);

    background: rgba(235, 52, 72, 0.10);

    filter: blur(100px);

    border-radius: 50%;

    z-index: -1;
}


/* ============================================================
   HERO CONTENT
============================================================ */

.activities-hero-content {
    width: 55%;
    max-width: 700px;
    position: relative;
    z-index: 2;
}


.section-label {
    display: inline-flex;
    align-items: center;
    gap: 9px;

    padding: 9px 15px;

    border: 1px solid rgba(255,255,255,0.12);

    border-radius: 50px;

    background: rgba(255,255,255,0.04);

    color: #ff6677;

    font-size: 11px;
    font-weight: 800;

    letter-spacing: 1.5px;

    margin-bottom: 25px;

    backdrop-filter: blur(10px);
}


.section-label i {
    font-size: 13px;
}


.activities-hero h1 {
    font-size: clamp(48px, 6vw, 82px);

    line-height: 0.98;

    letter-spacing: -3px;

    font-weight: 900;

    margin-bottom: 27px;
}


.activities-hero h1 span {
    display: block;

    background: linear-gradient(
        90deg,
        #ff4058,
        #ff7585,
        #ffffff
    );

    -webkit-background-clip: text;
    background-clip: text;

    color: transparent;
}


.activities-hero p {
    max-width: 610px;

    color: #a9a9a9;

    font-size: 17px;

    line-height: 1.8;

    margin-bottom: 34px;
}


/* ============================================================
   HERO BUTTONS
============================================================ */

.hero-buttons {
    display: flex;
    align-items: center;
    gap: 15px;
}


.primary-btn,
.secondary-btn {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 10px;

    padding: 14px 22px;

    border-radius: 10px;

    font-size: 14px;
    font-weight: 700;

    transition: all 0.3s ease;
}


.primary-btn {
    background: #ef4055;

    color: #ffffff;

    box-shadow:
        0 10px 35px rgba(239, 64, 85, 0.25);
}


.primary-btn:hover {
    transform: translateY(-3px);

    background: #ff5065;

    box-shadow:
        0 15px 40px rgba(239, 64, 85, 0.38);
}


.secondary-btn {
    border: 1px solid rgba(255,255,255,0.13);

    background: rgba(255,255,255,0.04);

    color: #ffffff;
}


.secondary-btn:hover {
    background: rgba(255,255,255,0.09);

    border-color: rgba(255,255,255,0.25);

    transform: translateY(-3px);
}


/* ============================================================
   HERO VISUAL
============================================================ */

.activities-hero-visual {
    width: 40%;
    min-height: 400px;

    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;
}


.hero-circle {
    width: 280px;
    height: 280px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background:
        radial-gradient(
            circle at 35% 30%,
            #ff687a,
            #c9203b 45%,
            #550914 100%
        );

    box-shadow:
        0 0 0 18px rgba(239,64,85,0.04),
        0 0 70px rgba(239,64,85,0.22);

    position: relative;
}


.hero-circle::before {
    content: "";

    position: absolute;

    inset: -30px;

    border: 1px solid rgba(255,255,255,0.08);

    border-radius: 50%;
}


.hero-circle::after {
    content: "";

    position: absolute;

    inset: -65px;

    border: 1px dashed rgba(255,255,255,0.08);

    border-radius: 50%;

    animation: rotateCircle 20s linear infinite;
}


@keyframes rotateCircle {

    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }

}


.hero-circle i {
    font-size: 110px;

    color: #ffffff;

    filter:
        drop-shadow(
            0 15px 20px rgba(0,0,0,0.3)
        );

    animation: heroFloat 3s ease-in-out infinite;
}


@keyframes heroFloat {

    0%,
    100% {
        transform: translateY(0) rotate(-3deg);
    }

    50% {
        transform: translateY(-12px) rotate(3deg);
    }

}


/* ============================================================
   FLOATING CARDS
============================================================ */

.floating-card {
    position: absolute;

    display: flex;

    align-items: center;

    gap: 10px;

    padding: 12px 17px;

    border-radius: 12px;

    background: rgba(20,20,20,0.85);

    border: 1px solid rgba(255,255,255,0.1);

    box-shadow:
        0 15px 40px rgba(0,0,0,0.35);

    backdrop-filter: blur(15px);

    font-size: 13px;
    font-weight: 700;

    z-index: 3;

    animation: floatingCard 4s ease-in-out infinite;
}


.floating-card i {
    color: #ff5065;

    font-size: 17px;
}


.card-one {
    top: 65px;
    left: 0;
}


.card-two {
    right: 0;
    top: 145px;

    animation-delay: 1s;
}


.card-three {
    left: 35px;
    bottom: 45px;

    animation-delay: 2s;
}


@keyframes floatingCard {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }

}


/* ============================================================
   COMMON SECTION
============================================================ */

.activity-categories,
.popular-activities,
.activity-benefits {
    padding: 95px 8%;
}


.section-heading {
    margin-bottom: 45px;
}


.section-heading > span,
.section-heading-row span {
    display: block;

    color: #ef4055;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 2px;

    margin-bottom: 12px;
}


.section-heading h2,
.section-heading-row h2 {
    font-size: clamp(30px, 4vw, 45px);

    letter-spacing: -1.5px;

    line-height: 1.1;

    margin-bottom: 10px;
}


.section-heading p {
    color: #888;

    font-size: 15px;

    line-height: 1.6;
}


/* ============================================================
   CATEGORY GRID
============================================================ */

.activity-category-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 18px;
}


.activity-category-card {
    position: relative;

    padding: 28px;

    min-height: 210px;

    border-radius: 18px;

    border: 1px solid rgba(255,255,255,0.07);

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,0.055),
            rgba(255,255,255,0.015)
        );

    overflow: hidden;

    transition:
        transform 0.35s ease,
        border-color 0.35s ease,
        background 0.35s ease;
}


.activity-category-card::before {
    content: "";

    position: absolute;

    width: 130px;
    height: 130px;

    right: -45px;
    bottom: -50px;

    background: rgba(239,64,85,0.12);

    filter: blur(35px);

    border-radius: 50%;

    transition: all 0.4s ease;
}


.activity-category-card:hover {
    transform: translateY(-8px);

    border-color: rgba(239,64,85,0.35);

    background:
        linear-gradient(
            145deg,
            rgba(239,64,85,0.09),
            rgba(255,255,255,0.025)
        );
}


.activity-category-card:hover::before {
    transform: scale(1.5);

    background: rgba(239,64,85,0.20);
}


.activity-category-icon {
    width: 54px;
    height: 54px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 14px;

    background: rgba(239,64,85,0.1);

    border: 1px solid rgba(239,64,85,0.16);

    margin-bottom: 22px;

    transition: all 0.3s ease;
}


.activity-category-card:hover
.activity-category-icon {
    transform: scale(1.08);

    background: #ef4055;

    box-shadow:
        0 10px 25px rgba(239,64,85,0.25);
}


.activity-category-icon i {
    font-size: 20px;

    color: #ff6072;

    transition: color 0.3s ease;
}


.activity-category-card:hover
.activity-category-icon i {
    color: #ffffff;
}


.activity-category-card h3 {
    font-size: 19px;

    margin-bottom: 8px;
}


.activity-category-card p {
    color: #858585;

    font-size: 13px;

    line-height: 1.6;

    margin-bottom: 18px;
}


.activity-category-card > span {
    display: inline-flex;

    align-items: center;

    gap: 7px;

    color: #ef4055;

    font-size: 12px;

    font-weight: 700;
}


.activity-category-card > span i {
    transition: transform 0.3s ease;
}


.activity-category-card:hover
> span i {
    transform: translateX(5px);
}


/* ============================================================
   POPULAR ACTIVITIES
============================================================ */

.popular-activities {
    background: #0c0c0c;

    border-top: 1px solid rgba(255,255,255,0.04);

    border-bottom: 1px solid rgba(255,255,255,0.04);
}


.section-heading-row {
    display: flex;

    align-items: flex-end;

    justify-content: space-between;

    margin-bottom: 40px;
}


.view-all {
    display: inline-flex;

    align-items: center;

    gap: 9px;

    color: #ef4055;

    font-size: 13px;

    font-weight: 700;

    padding-bottom: 5px;
}


.view-all i {
    transition: transform 0.3s ease;
}


.view-all:hover i {
    transform: translateX(5px);
}


/* ============================================================
   ACTIVITY GRID
============================================================ */

.activities-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 20px;
}


/* ============================================================
   ACTIVITY CARD
============================================================ */

.activity-card {
    background: #111111;

    border: 1px solid rgba(255,255,255,0.07);

    border-radius: 16px;

    overflow: hidden;

    transition:
        transform 0.35s ease,
        border-color 0.35s ease,
        box-shadow 0.35s ease;
}


.activity-card:hover {
    transform: translateY(-8px);

    border-color: rgba(239,64,85,0.3);

    box-shadow:
        0 20px 50px rgba(0,0,0,0.35);
}


/* ============================================================
   ACTIVITY IMAGE
============================================================ */

.activity-image {
    height: 230px;

    position: relative;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 50% 35%,
            rgba(239,64,85,0.18),
            transparent 50%
        ),
        #181818;
}


.activity-placeholder {
    width: 100%;
    height: 100%;

    display: flex;

    align-items: center;
    justify-content: center;

    transition: transform 0.5s ease;
}


.activity-placeholder i {
    font-size: 65px;

    color: rgba(255,255,255,0.12);

    transition:
        color 0.35s ease,
        transform 0.35s ease;
}


.activity-card:hover
.activity-placeholder {
    transform: scale(1.08);
}


.activity-card:hover
.activity-placeholder i {
    color: rgba(239,64,85,0.7);

    transform: scale(1.1);
}


/* ============================================================
   BADGE
============================================================ */

.activity-badge {
    position: absolute;

    top: 14px;
    left: 14px;

    padding: 6px 10px;

    border-radius: 6px;

    background: #ef4055;

    color: #ffffff;

    font-size: 9px;

    font-weight: 900;

    letter-spacing: 1px;

    box-shadow:
        0 5px 15px rgba(239,64,85,0.25);
}


/* ============================================================
   ACTIVITY INFO
============================================================ */

.activity-info {
    padding: 22px;
}


.activity-type {
    color: #ef4055;

    font-size: 9px;

    font-weight: 900;

    letter-spacing: 1.5px;

    display: block;

    margin-bottom: 9px;
}


.activity-info h3 {
    font-size: 18px;

    line-height: 1.3;

    margin-bottom: 15px;
}


.activity-info p {
    display: flex;

    align-items: center;

    gap: 9px;

    color: #858585;

    font-size: 12px;

    margin-bottom: 9px;
}


.activity-info p i {
    width: 14px;

    color: #777;

    text-align: center;
}


/* ============================================================
   ACTIVITY BOTTOM
============================================================ */

.activity-bottom {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 10px;

    margin-top: 20px;

    padding-top: 17px;

    border-top: 1px solid rgba(255,255,255,0.06);
}


.activity-bottom strong {
    font-size: 14px;

    white-space: nowrap;
}


.activity-bottom button {
    border: none;

    cursor: pointer;

    display: inline-flex;

    align-items: center;

    gap: 7px;

    padding: 9px 12px;

    border-radius: 7px;

    background: rgba(239,64,85,0.1);

    color: #ff5c70;

    font-size: 11px;

    font-weight: 800;

    transition: all 0.3s ease;
}


.activity-bottom button:hover {
    background: #ef4055;

    color: #ffffff;

    transform: translateX(2px);
}


/* ============================================================
   BENEFITS
============================================================ */

.activity-benefits {
    background: #080808;
}


.benefits-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 25px;
}


.benefit-item {
    padding: 10px 5px;
}


.benefit-icon {
    width: 52px;
    height: 52px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 14px;

    background: rgba(239,64,85,0.08);

    border: 1px solid rgba(239,64,85,0.12);

    margin-bottom: 20px;
}


.benefit-icon i {
    color: #ef4055;

    font-size: 19px;
}


.benefit-item h3 {
    font-size: 17px;

    margin-bottom: 9px;
}


.benefit-item p {
    color: #777;

    font-size: 13px;

    line-height: 1.7;
}


/* ============================================================
   CTA
============================================================ */

.activities-cta {
    margin: 20px 8% 90px;

    min-height: 330px;

    border-radius: 25px;

    display: flex;

    align-items: center;
    justify-content: center;

    text-align: center;

    position: relative;

    overflow: hidden;

    background:
        radial-gradient(
            circle at center,
            rgba(239,64,85,0.22),
            transparent 55%
        ),
        linear-gradient(
            135deg,
            #151515,
            #0b0b0b
        );

    border: 1px solid rgba(255,255,255,0.08);
}


.activities-cta::before,
.activities-cta::after {
    content: "";

    position: absolute;

    border-radius: 50%;

    border: 1px solid rgba(239,64,85,0.15);
}


.activities-cta::before {
    width: 380px;
    height: 380px;
}


.activities-cta::after {
    width: 520px;
    height: 520px;
}


.activities-cta-content {
    position: relative;

    z-index: 2;
}


.cta-icon {
    width: 55px;
    height: 55px;

    margin: 0 auto 20px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #ef4055;

    box-shadow:
        0 10px 30px rgba(239,64,85,0.3);
}


.cta-icon i {
    font-size: 20px;
}


.activities-cta h2 {
    font-size: clamp(28px, 4vw, 44px);

    letter-spacing: -1px;

    margin-bottom: 10px;
}


.activities-cta p {
    color: #858585;

    font-size: 15px;

    margin-bottom: 25px;
}


.activities-cta a {
    display: inline-flex;

    align-items: center;

    gap: 10px;

    padding: 13px 20px;

    border-radius: 9px;

    background: #ef4055;

    color: #ffffff;

    font-size: 13px;

    font-weight: 800;

    transition: all 0.3s ease;
}


.activities-cta a:hover {
    transform: translateY(-3px);

    background: #ff5065;

    box-shadow:
        0 12px 30px rgba(239,64,85,0.25);
}


/* ============================================================
   TABLET
============================================================ */

@media (max-width: 1100px) {

    .activities-hero {
        padding-left: 5%;
        padding-right: 5%;
    }


    .activity-categories,
    .popular-activities,
    .activity-benefits {
        padding-left: 5%;
        padding-right: 5%;
    }


    .activities-cta {
        margin-left: 5%;
        margin-right: 5%;
    }


    .activities-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }


    .activity-category-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }


    .benefits-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }


    .activities-hero-visual {
        transform: scale(0.85);
    }

}


/* ============================================================
   MOBILE
============================================================ */

@media (max-width: 768px) {

    .activities-hero {
        min-height: auto;

        flex-direction: column;

        align-items: flex-start;

        padding: 130px 6% 70px;

        gap: 50px;
    }


    .activities-hero-content {
        width: 100%;
    }


    .activities-hero h1 {
        font-size: clamp(43px, 12vw, 62px);

        letter-spacing: -2px;
    }


    .activities-hero p {
        font-size: 15px;

        line-height: 1.7;
    }


    .activities-hero-visual {
        width: 100%;

        min-height: 300px;

        transform: scale(0.8);

        margin-top: -20px;
    }


    .hero-circle {
        width: 230px;
        height: 230px;
    }


    .hero-circle i {
        font-size: 85px;
    }


    .card-one {
        left: 5%;
    }


    .card-two {
        right: 3%;
    }


    .card-three {
        left: 12%;
    }


    .activity-categories,
    .popular-activities,
    .activity-benefits {
        padding: 70px 6%;
    }


    .activity-category-grid {
        grid-template-columns: 1fr;

        gap: 14px;
    }


    .activity-category-card {
        min-height: 190px;
    }


    .activities-grid {
        grid-template-columns: 1fr;

        gap: 18px;
    }


    .activity-image {
        height: 250px;
    }


    .benefits-grid {
        grid-template-columns: 1fr 1fr;

        gap: 30px 15px;
    }


    .section-heading-row {
        align-items: flex-start;

        gap: 20px;

        flex-direction: column;
    }


    .activities-cta {
        margin: 10px 6% 60px;

        min-height: 300px;

        padding: 35px 20px;
    }

}


/* ============================================================
   SMALL MOBILE
============================================================ */

@media (max-width: 480px) {

    .activities-hero {
        padding-top: 115px;
    }


    .hero-buttons {
        flex-direction: column;

        align-items: stretch;
    }


    .primary-btn,
    .secondary-btn {
        width: 100%;
    }


    .activities-hero-visual {
        transform: scale(0.68);

        margin-left: -15%;

        width: 130%;
    }


    .benefits-grid {
        grid-template-columns: 1fr;
    }


    .activity-info {
        padding: 19px;
    }


    .activity-bottom strong {
        font-size: 13px;
    }


    .activity-bottom button {
        padding: 9px 10px;
    }


    .activities-cta h2 {
        font-size: 28px;
    }

}


/* ============================================================
   REDUCED MOTION
============================================================ */

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;

        animation-iteration-count: 1 !important;

        scroll-behavior: auto !important;

        transition-duration: 0.01ms !important;
    }

}



/* ============================================================
   TIKTIKTICKET.IN — COMMON FOOTER
   Premium Dark Entertainment Footer
============================================================ */


/* ============================================================
   ROOT
============================================================ */

:root {

    --footer-bg: #09090b;
    --footer-card: #111114;
    --footer-border: rgba(255,255,255,0.09);

    --footer-text: #ffffff;
    --footer-muted: #a1a1aa;

    --footer-accent: #ff3b5c;
    --footer-accent-dark: #e62f4f;

}


/* ============================================================
   TIKTIKTICKET.IN
   PREMIUM COMMON FOOTER
============================================================ */


/* ============================================================
   RESET — FOOTER ONLY
============================================================ */

.site-footer,
.site-footer *,
.site-footer *::before,
.site-footer *::after {
    box-sizing: border-box;
}


/* ============================================================
   MAIN FOOTER
============================================================ */

.site-footer {
    position: relative;
    width: 100%;
    margin-top: 80px;

    background:
        radial-gradient(
            circle at 15% 20%,
            rgba(255, 35, 80, 0.07),
            transparent 32%
        ),
        radial-gradient(
            circle at 85% 80%,
            rgba(255, 35, 80, 0.04),
            transparent 30%
        ),
        #08080b;

    color: #ffffff;

    border-top: 1px solid rgba(255, 255, 255, 0.08);

    overflow: hidden;
}


/* ============================================================
   DECORATIVE GLOW
============================================================ */

.site-footer::before {
    content: "";

    position: absolute;

    width: 350px;
    height: 350px;

    top: -220px;
    left: -150px;

    background: rgba(255, 35, 80, 0.08);

    filter: blur(100px);

    border-radius: 50%;

    pointer-events: none;
}


/* ============================================================
   FOOTER MAIN CONTAINER
============================================================ */

.footer-container {
    position: relative;

    z-index: 2;

    width: 100%;
    max-width: 1250px;

    margin: 0 auto;

    padding: 70px 40px 60px;

    display: grid;

    grid-template-columns:
        minmax(280px, 2fr)
        minmax(130px, 1fr)
        minmax(130px, 1fr)
        minmax(220px, 1.4fr);

    column-gap: 55px;

    align-items: start;
}


/* ============================================================
   BRAND SECTION
============================================================ */

.footer-brand {
    min-width: 0;
    padding: 50px;
}


.footer-logo {
    display: inline-flex;

    align-items: center;

    gap: 13px;

    text-decoration: none;

    color: #ffffff;

    margin-bottom: 20px;
}


/* LOGO ICON */

.footer-logo-icon {
    width: 48px;
    height: 48px;

    flex: 0 0 48px;

    display: flex;

    align-items: center;
    justify-content: center;

    background:
        linear-gradient(
            135deg,
            #ff3158,
            #ff1744
        );

    color: #ffffff;

    border-radius: 14px;

    font-size: 20px;

    box-shadow:
        0 10px 30px rgba(255, 49, 88, 0.25);

    transform: rotate(-4deg);
}


/* LOGO TEXT */

.footer-logo-text {
    display: block;

    white-space: nowrap;

    font-size: 18px;

    line-height: 0.9;

    letter-spacing: -0.5px;
}


.footer-logo-text strong {
    font-weight: 800;
}


.footer-logo-text span {
    color: #ff3158;

    font-weight: 800;
}


/* DESCRIPTION */

.footer-brand > p {
    width: 100%;
    max-width: 390px;

    margin: 0 0 26px;

    color: #8d8d99;

    font-size: 14px;

    line-height: 1.8;
}


/* ============================================================
   SOCIAL ICONS
============================================================ */

.footer-socials {
    display: flex;

    align-items: center;

    gap: 10px;
}


.footer-socials a {
    width: 40px;
    height: 40px;

    flex: 0 0 40px;

    display: flex;

    align-items: center;
    justify-content: center;

    color: #a5a5b0;

    background: rgba(255, 255, 255, 0.035);

    border:
        1px solid rgba(255, 255, 255, 0.10);

    border-radius: 11px;

    text-decoration: none;

    transition:
        transform 0.25s ease,
        background 0.25s ease,
        color 0.25s ease,
        border-color 0.25s ease;
}


.footer-socials a:hover {
    transform: translateY(-4px);

    background: #ff3158;

    border-color: #ff3158;

    color: #ffffff;
}


/* ============================================================
   FOOTER COLUMNS
============================================================ */

.footer-column {
    min-width: 0;

    display: flex;

    flex-direction: column;

    align-items: flex-start;

    gap: 12px;
    padding: 40px;
}


/* COLUMN TITLE */

.footer-column h3 {
    position: relative;

    width: max-content;

    margin: 0 0 12px;

    padding-bottom: 11px;

    color: #ffffff;

    font-size: 15px;

    font-weight: 700;

    line-height: 1.2;
}


.footer-column h3::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: 0;

    width: 28px;
    height: 2px;

    background: #ff3158;

    border-radius: 10px;
}


/* LINKS */

.footer-column a {
    display: block;

    width: max-content;
    max-width: 100%;

    color: #92929e;

    font-size: 14px;

    line-height: 1.5;

    text-decoration: none;

    white-space: nowrap;

    transition:
        color 0.25s ease,
        transform 0.25s ease;
}


.footer-column a:hover {
    color: #ffffff;

    transform: translateX(5px);
}


/* ============================================================
   CONTACT COLUMN
============================================================ */

.footer-contact {
    gap: 14px;
}


.footer-contact p {
    display: flex;

    align-items: flex-start;

    gap: 12px;

    width: 100%;

    margin: 0;

    color: #92929e;

    font-size: 14px;

    line-height: 1.6;
}


.footer-contact p i {
    flex: 0 0 34px;

    width: 34px;
    height: 34px;

    display: flex;

    align-items: center;
    justify-content: center;

    color: #ff3158;

    background:
        rgba(255, 49, 88, 0.10);

    border-radius: 9px;

    font-size: 13px;
}


/* ============================================================
   FOOTER BOTTOM
============================================================ */

.footer-bottom {
    position: relative;

    z-index: 2;

    width: 100%;

    border-top:
        1px solid rgba(255, 255, 255, 0.08);
}


.footer-bottom-inner {
    width: 100%;
    max-width: 1250px;

    margin: 0 auto;

    padding: 21px 40px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 25px;
}


.footer-bottom p {
    margin: 0;

    color: #666672;

    font-size: 12px;

    line-height: 1.5;
}


.footer-bottom p strong {
    color: #9999a4;

    font-weight: 600;
}


/* DEVELOPED BY */

.developed-by {
    white-space: nowrap;

    text-align: right;
}


.developed-by strong {
    color: #ff3158 !important;

    font-weight: 700 !important;

    margin-left: 4px;
}


/* ============================================================
   TABLET
============================================================ */

@media (max-width: 1000px) {

    .footer-container {
        grid-template-columns:
            1.5fr
            1fr
            1fr;

        row-gap: 50px;

        column-gap: 40px;

        padding:
            60px 30px 50px;
    }


    .footer-contact {
        grid-column: span 3;
    }

}


/* ============================================================
   MOBILE
============================================================ */

@media (max-width: 700px) {

    .footer-container {

        grid-template-columns: 1fr 1fr;

        row-gap: 40px;

        column-gap: 25px;

        padding:
            50px 22px 45px;
    }


    .footer-brand {
        grid-column: span 2;
    }


    .footer-contact {
        grid-column: span 2;
    }


    .footer-bottom-inner {

        padding:
            20px 22px;

        flex-direction: column;

        justify-content: center;

        text-align: center;

        gap: 8px;
    }


    .developed-by {
        text-align: center;
    }

}


/* ============================================================
   SMALL MOBILE
============================================================ */

@media (max-width: 450px) {

    .footer-container {

        grid-template-columns: 1fr;

        padding:
            45px 20px 40px;
    }


    .footer-brand,
    .footer-contact {

        grid-column: span 1;
    }


    .footer-column a {
        white-space: normal;
    }


    .footer-logo-text {
        font-size: 17px;
    }


    .footer-brand > p {
        font-size: 13px;
    }

}



/* =========================================================
   TIKTIKTICKET.IN — PREMIUM MOVIES PAGE
========================================================= */

.movies-page {
    min-height: 100vh;
    background:
        radial-gradient(circle at 85% 8%, rgba(255, 39, 91, 0.08), transparent 28%),
        #08080a;
    color: #ffffff;
}


/* =========================================================
   HERO
========================================================= */

.movies-hero {
    position: relative;
    min-height: 440px;

    display: flex;
    align-items: center;

    padding: 90px 6%;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 80% 45%,
            rgba(255, 35, 89, 0.20),
            transparent 32%
        ),
        radial-gradient(
            circle at 15% 80%,
            rgba(255, 35, 89, 0.08),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            #09090b 0%,
            #111116 55%,
            #08080a 100%
        );

    border-bottom: 1px solid rgba(255,255,255,.07);
}


/* subtle glow */

.movies-hero::before {

    content: "";

    position: absolute;

    width: 420px;
    height: 420px;

    right: -120px;
    top: -160px;

    border-radius: 50%;

    background: rgba(255, 39, 91, .10);

    filter: blur(80px);

    pointer-events: none;
}


/* decorative line */

.movies-hero::after {

    content: "";

    position: absolute;

    width: 120px;
    height: 4px;

    left: 6%;
    bottom: 55px;

    border-radius: 20px;

    background: #ff2859;

    box-shadow:
        0 0 20px rgba(255,40,89,.55);

}


.page-hero-content {

    position: relative;

    z-index: 2;

    max-width: 780px;

    animation: movieHeroIn .8s ease both;
}


@keyframes movieHeroIn {

    from {
        opacity: 0;
        transform: translateY(25px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}


/* =========================================================
   EYEBROW
========================================================= */

.page-eyebrow {

    display: inline-flex;

    align-items: center;

    gap: 9px;

    padding: 8px 14px;

    border: 1px solid rgba(255, 40, 89, .25);

    border-radius: 50px;

    background: rgba(255, 40, 89, .07);

    color: #ff426b;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 2px;

    text-transform: uppercase;

}


.page-eyebrow i {

    font-size: 12px;

}


/* =========================================================
   HERO HEADING
========================================================= */

.page-hero h1 {

    margin: 22px 0 15px;

    font-size: clamp(55px, 8vw, 100px);

    line-height: .95;

    letter-spacing: -5px;

    font-weight: 900;

    color: #ffffff;

}


.page-hero h1::after {

    content: ".";

    color: #ff2859;

}


.page-hero p {

    max-width: 650px;

    margin: 0;

    color: #a3a3ad;

    font-size: 17px;

    line-height: 1.8;

}


/* =========================================================
   MAIN MOVIE SECTION
========================================================= */

.movies-section {

    

}


.section-container {

    width: 100%;

    max-width: 1380px;

    margin: 0 auto;

}


/* =========================================================
   SECTION HEADING
========================================================= */

.section-heading {

    margin-bottom: 45px;

}


.section-label {

    display: inline-block;

    color: #ff3b68;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 2.5px;

}


.section-heading h2 {

    margin: 10px 0 8px;

    font-size: clamp(30px, 4vw, 48px);

    line-height: 1.1;

    letter-spacing: -2px;

    

}


.section-heading p {

    margin: 0;

    color: #888892;

    font-size: 15px;

}


/* =========================================================
   MOVIE GRID
========================================================= */

.movie-grid {

    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 24px;

}


/* =========================================================
   MOVIE CARD
========================================================= */

.movie-card {

    position: relative;

    overflow: hidden;

    background:
        linear-gradient(
            145deg,
            #151518,
            #0d0d10
        );

    border: 1px solid rgba(255,255,255,.075);

    border-radius: 20px;

    transition:
        transform .4s cubic-bezier(.2,.8,.2,1),
        border-color .4s ease,
        box-shadow .4s ease;

}


.movie-card:hover {

    transform: translateY(-10px);

    border-color: rgba(255, 40, 89, .40);

    box-shadow:
        0 25px 60px rgba(0,0,0,.45),
        0 0 35px rgba(255,40,89,.08);

}


/* =========================================================
   MOVIE POSTER
========================================================= */

.movie-poster {

    position: relative;

    aspect-ratio: 2 / 3;

    overflow: hidden;

    background: #151518;

}


.poster-placeholder {

    position: relative;

    width: 100%;
    height: 100%;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    gap: 14px;

    color: #696970;

    background:
        radial-gradient(
            circle at 50% 35%,
            rgba(255,40,89,.12),
            transparent 35%
        ),
        linear-gradient(
            145deg,
            #202024,
            #101014
        );

    transition:
        transform .5s ease,
        color .4s ease;

}


.movie-card:hover .poster-placeholder {

    transform: scale(1.06);

    color: #ff426b;

}


/* poster icon */

.poster-placeholder i {

    width: 70px;
    height: 70px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 20px;

    border: 1px solid rgba(255,255,255,.08);

    background: rgba(255,255,255,.035);

    font-size: 28px;

    transition: .4s ease;

}


.movie-card:hover .poster-placeholder i {

    background: rgba(255,40,89,.10);

    border-color: rgba(255,40,89,.25);

    transform: rotate(-5deg) scale(1.05);

}


.poster-placeholder span {

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 2px;

    color: #73737c;

}


/* =========================================================
   POSTER OVERLAY
========================================================= */

.movie-poster::after {

    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            to bottom,
            transparent 55%,
            rgba(0,0,0,.55)
        );

    pointer-events: none;

}


/* =========================================================
   BADGE
========================================================= */

.movie-badge {

    position: absolute;

    z-index: 3;

    top: 15px;
    left: 15px;

    padding: 7px 11px;

    border-radius: 50px;

    background: rgba(8,8,10,.78);

    backdrop-filter: blur(12px);

    border: 1px solid rgba(255,255,255,.10);

    color: #ffffff;

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 1.2px;

}


.movie-card:hover .movie-badge {

    border-color: rgba(255,40,89,.35);

    color: #ff5278;

}


/* =========================================================
   MOVIE INFORMATION
========================================================= */

.movie-info {

    padding: 21px;

}


.movie-info h3 {

    margin: 0 0 8px;

    color: #ffffff;

    font-size: 20px;

    font-weight: 800;

    letter-spacing: -.4px;

}


.movie-info > p {

    margin: 0;

    color: #85858e;

    font-size: 13px;

    line-height: 1.5;

}


/* =========================================================
   MOVIE META
========================================================= */

.movie-meta {

    display: flex;

    align-items: center;

    gap: 10px;

    margin: 18px 0;

}


.movie-meta span {

    display: inline-flex;

    align-items: center;

    gap: 6px;

    padding: 6px 9px;

    border-radius: 7px;

    background: rgba(255,255,255,.045);

    border: 1px solid rgba(255,255,255,.06);

    color: #aaaab2;

    font-size: 11px;

}


.movie-meta span:last-child {

    color: #ffc44d;

}


.movie-meta i {

    font-size: 10px;

}


/* =========================================================
   BOOK BUTTON
========================================================= */

.book-btn {

    position: relative;

    width: 100%;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    padding: 13px 16px;

    overflow: hidden;

    border: 1px solid rgba(255,255,255,.08);

    border-radius: 11px;

    background: #ffffff;

    color: #09090b;

    cursor: pointer;

    font-size: 12px;

    font-weight: 800;

    transition:
        transform .3s ease,
        background .3s ease,
        color .3s ease;

}


.book-btn::before {

    content: "";

    position: absolute;

    width: 0;
    height: 100%;

    left: 0;
    top: 0;

    background: #ff2859;

    transition: width .35s ease;

    z-index: 0;

}


.book-btn span,
.book-btn i {

    position: relative;

    z-index: 1;

}


.book-btn i {

    transition: transform .3s ease;

}


.book-btn:hover {

    color: #ffffff;

    transform: translateY(-2px);

}


.book-btn:hover::before {

    width: 100%;

}


.book-btn:hover i {

    transform: translateX(5px);

}


/* =========================================================
   COMING SOON
========================================================= */

.coming-soon-section {

    padding: 20px 6% 110px;

}


.coming-soon-box {

    position: relative;

    display: flex;

    align-items: center;

    gap: 28px;

    padding: 38px 42px;

    overflow: hidden;

    border: 1px solid rgba(255,255,255,.07);

    border-radius: 22px;

    background:
        radial-gradient(
            circle at 90% 50%,
            rgba(255,40,89,.10),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            #131316,
            #0d0d10
        );

}


.coming-soon-box::after {

    content: "";

    position: absolute;

    width: 150px;
    height: 150px;

    right: -50px;
    bottom: -70px;

    border-radius: 50%;

    background: rgba(255,40,89,.12);

    filter: blur(30px);

}


.coming-soon-icon {

    position: relative;

    z-index: 2;

    width: 68px;
    height: 68px;

    flex-shrink: 0;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 18px;

    background:
        linear-gradient(
            135deg,
            #ff2859,
            #d91446
        );

    color: #ffffff;

    font-size: 24px;

    box-shadow:
        0 12px 35px rgba(255,40,89,.25);

}


.coming-soon-box > div:last-child {

    position: relative;

    z-index: 2;

}


.coming-soon-box h2 {

    margin: 8px 0;

    color: #ffffff;

    font-size: 28px;

    letter-spacing: -1px;

}


.coming-soon-box p {

    margin: 0;

    color: #85858e;

    font-size: 14px;

    line-height: 1.7;

}


/* =========================================================
   CARD STAGGER ANIMATION
========================================================= */

.movie-card {

    animation: cardAppear .65s ease both;

}


.movie-card:nth-child(1) {
    animation-delay: .05s;
}

.movie-card:nth-child(2) {
    animation-delay: .12s;
}

.movie-card:nth-child(3) {
    animation-delay: .19s;
}

.movie-card:nth-child(4) {
    animation-delay: .26s;
}


@keyframes cardAppear {

    from {
        opacity: 0;
        transform: translateY(25px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}


/* =========================================================
   RESPONSIVE — TABLET
========================================================= */

@media (max-width: 1100px) {

    .movie-grid {

        grid-template-columns:
            repeat(3, minmax(0, 1fr));

    }

}


/* =========================================================
   RESPONSIVE — SMALL TABLET
========================================================= */

@media (max-width: 800px) {

    .movies-hero {

        min-height: 370px;

        padding: 70px 6%;

    }


    .page-hero h1 {

        font-size: clamp(55px, 12vw, 80px);

        letter-spacing: -4px;

    }


    .movie-grid {

        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap: 18px;

    }


    .movies-section {

        padding-top: 75px;

    }


    .coming-soon-box {

        padding: 30px;

    }

}


/* =========================================================
   RESPONSIVE — MOBILE
========================================================= */

@media (max-width: 550px) {

    .movies-hero {

        min-height: 340px;

        padding: 60px 5%;

    }


    .movies-hero::after {

        left: 5%;

        bottom: 35px;

    }


    .page-hero h1 {

        font-size: 58px;

        letter-spacing: -3px;

    }


    .page-hero p {

        font-size: 14px;

        line-height: 1.7;

    }


    .movies-section {

        padding:
            65px 5%
            50px;

    }


    .section-heading {

        margin-bottom: 30px;

    }


    .section-heading h2 {

        font-size: 31px;

    }


    .movie-grid {

        grid-template-columns: 1fr;

        gap: 20px;

    }


    .movie-card {

        border-radius: 18px;

    }


    .movie-poster {

        aspect-ratio: 16 / 10;

    }


    .poster-placeholder i {

        width: 58px;
        height: 58px;

        font-size: 23px;

    }


    .movie-info {

        padding: 18px;

    }


    .coming-soon-section {

        padding:
            10px 5%
            75px;

    }


    .coming-soon-box {

        flex-direction: column;

        align-items: flex-start;

        padding: 25px;

    }


    .coming-soon-box h2 {

        font-size: 24px;

    }

}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .movie-card,
    .page-hero-content {

        animation: none;

    }

    .movie-card,
    .poster-placeholder,
    .book-btn {

        transition: none;

    }

}


/* ============================================================
   TIKTIKTICKET.IN — PREMIUM HEADER REDESIGN
   Inspired by the supplied reference design
============================================================ */


/* ============================================================
   ROOT
============================================================ */

:root {
    --header-bg: #0d0b11;
    --header-border: rgba(255, 255, 255, 0.08);

    --header-text: #f5f5f7;
    --header-muted: #a6a3ad;

    --brand-pink: #ff174d;
    --brand-pink-dark: #e91445;

    --header-height: 82px;
}


/* ============================================================
   NAVBAR
============================================================ */

.navbar {
    position: sticky;
    top: 0;
    left: 0;

    width: 100%;
    height: var(--header-height);

    z-index: 9999;

    background:
        linear-gradient(
            180deg,
            #0d0b11 0%,
            #0b0a0f 100%
        );

    border-bottom: 1px solid var(--header-border);

    transition:
        background 0.3s ease,
        box-shadow 0.3s ease,
        height 0.3s ease;
}


/* SCROLLED STATE */

.navbar.scrolled {
    background: rgba(10, 9, 14, 0.96);

    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);

    box-shadow:
        0 10px 35px rgba(0, 0, 0, 0.25);
}


/* ============================================================
   NAV CONTAINER
============================================================ */

.nav-container {
    width: min(1240px, calc(100% - 64px));

    height: 100%;

    margin: 0 auto;

    display: flex;

    align-items: center;

    gap: 28px;
}


/* ============================================================
   BRAND
============================================================ */

.brand-logo {
    flex-shrink: 0;

    display: inline-flex;

    align-items: center;

    gap: 12px;

    text-decoration: none;

    color: white;

    min-width: 250px;

    transition:
        transform 0.25s ease,
        opacity 0.25s ease;
}


.brand-logo:hover {
    transform: translateY(-1px);
}


/* ============================================================
   BRAND ICON
============================================================ */

.brand-logo-icon {
    width: 44px;
    height: 44px;

    flex-shrink: 0;

    display: flex;

    align-items: center;
    justify-content: center;

    background:
        linear-gradient(
            145deg,
            #ff315f,
            #ed1648
        );

    border-radius: 12px;

    color: #fff;

    font-size: 19px;

    box-shadow:
        0 8px 22px rgba(255, 23, 77, 0.28);

    transform: rotate(-3deg);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}


.brand-logo:hover .brand-logo-icon {
    transform:
        rotate(0deg)
        translateY(-2px);

    box-shadow:
        0 12px 28px rgba(255, 23, 77, 0.38);
}


/* ============================================================
   BRAND CONTENT
============================================================ */

.brand-logo-content {
    display: flex;

    flex-direction: column;

    justify-content: center;

    line-height: 1;
}


/* ============================================================
   BRAND NAME
============================================================ */

.brand-name {
    display: flex;

    align-items: baseline;

    gap: 1px;

    white-space: nowrap;
}


.brand-main,
.brand-ticket {
    font-size: 19px;

    font-weight: 800;

    letter-spacing: -0.5px;

    color: #ffffff;
}


.brand-ticket {
    color: #ffffff;
}


/* ============================================================
   TAGLINE
============================================================ */

.brand-tagline {
    margin-top: 5px;

    font-size: 6px;

    font-weight: 600;

    letter-spacing: 1.7px;

    color: #77737e;

    white-space: nowrap;
}


/* ============================================================
   MAIN NAVIGATION
============================================================ */

.main-nav {
    flex: 1;

    height: 100%;

    display: flex;

    align-items: center;

    justify-content: center;
 
}


.main-nav a {
    position: relative;

    height: 100%;

    display: flex;

    align-items: center;

    justify-content: center;

    color: #96929c;

    text-decoration: none;

    font-size: 13px;

    font-weight: 500;

    white-space: nowrap;

    transition:
        color 0.25s ease;
}


/* HOVER */

.main-nav a:hover {
    color: #ffffff;
}


/* ACTIVE */

.main-nav a.active {
    color: #ffffff;

    font-weight: 600;
}


/* ACTIVE UNDERLINE */

.main-nav a::after {
    content: "";

    position: absolute;

    left: 50%;
    bottom: 0;

    width: 0;
    height: 2px;

    transform: translateX(-50%);

    background: var(--brand-pink);

    border-radius: 10px;

    transition:
        width 0.25s ease;
}


.main-nav a:hover::after,
.main-nav a.active::after {
    width: 22px;
}


/* ============================================================
   RIGHT ACTIONS
============================================================ */

.nav-actions {
    flex-shrink: 0;

    display: flex;

    align-items: center;

    gap: 22px;
}


/* ============================================================
   SEARCH
============================================================ */

.header-search {
    appearance: none;

    border: none;

    background: transparent;

    padding: 8px 2px;

    display: inline-flex;

    align-items: center;

    gap: 8px;

    color: #aaa7b0;

    font-family: inherit;

    font-size: 13px;

    font-weight: 500;

    cursor: pointer;

    transition:
        color 0.25s ease,
        transform 0.25s ease;
}


.header-search i {
    font-size: 16px;

    color: #aaa7b0;

    transition:
        color 0.25s ease,
        transform 0.25s ease;
}


.header-search:hover {
    color: #ffffff;

    transform: translateY(-1px);
}


.header-search:hover i {
    color: #ffffff;

    transform: scale(1.08);
}


/* ============================================================
   LOCATION
============================================================ */

.location-selector {
    appearance: none;

    border: none;

    background: transparent;

    padding: 8px 0;

    display: inline-flex;

    align-items: center;

    gap: 7px;

    color: #aaa7b0;

    font-family: inherit;

    font-size: 12px;

    font-weight: 500;

    cursor: pointer;

    white-space: nowrap;

    transition:
        color 0.25s ease;
}


.location-selector > i:first-child {
    color: var(--brand-pink);

    font-size: 15px;
}


.location-selector:hover {
    color: #ffffff;
}


.location-arrow {
    font-size: 9px !important;

    color: #8f8b94 !important;

    margin-left: 1px;
}


/* ============================================================
   SIGN IN BUTTON
============================================================ */

.signin-btn {
    min-width: 88px;

    height: 42px;

    padding: 0 20px;

    border: none;

    border-radius: 24px;

    background: #ffffff;

    color: #16141a;

    font-family: inherit;

    font-size: 13px;

    font-weight: 650;

    cursor: pointer;

    box-shadow:
        0 5px 18px rgba(0, 0, 0, 0.18);

    transition:
        transform 0.25s ease,
        background 0.25s ease,
        box-shadow 0.25s ease;
}


.signin-btn:hover {
    background: #f2f2f4;

    transform: translateY(-2px);

    box-shadow:
        0 9px 25px rgba(0, 0, 0, 0.28);
}


.signin-btn:active {
    transform: translateY(0);
}


/* ============================================================
   MOBILE MENU BUTTON
============================================================ */

.mobile-menu-btn {
    display: none;

    width: 42px;
    height: 42px;

    padding: 0;

    border: 1px solid rgba(255,255,255,0.1);

    border-radius: 10px;

    background: rgba(255,255,255,0.04);

    align-items: center;
    justify-content: center;

    flex-direction: column;

    gap: 5px;

    cursor: pointer;
}


.mobile-menu-btn span {
    width: 18px;
    height: 2px;

    border-radius: 5px;

    background: #ffffff;

    transition:
        transform 0.25s ease,
        opacity 0.25s ease;
}


.mobile-menu-btn.active span:nth-child(1) {
    transform:
        translateY(7px)
        rotate(45deg);
}


.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}


.mobile-menu-btn.active span:nth-child(3) {
    transform:
        translateY(-7px)
        rotate(-45deg);
}


/* ============================================================
   MOBILE NAV
============================================================ */

.mobile-nav {
    display: none;
}


/* ============================================================
   MOBILE RESPONSIVE
============================================================ */

@media (max-width: 1150px) {

    .nav-container {
        width: min(100% - 40px, 1100px);

        gap: 18px;
    }


    .brand-logo {
        min-width: 220px;
    }


    .main-nav {
        gap: 20px;
    }


    .main-nav a {
        font-size: 12px;
    }


    .nav-actions {
        gap: 15px;
    }

}


/* ============================================================
   TABLET
============================================================ */

@media (max-width: 950px) {

    .nav-container {
        width: calc(100% - 32px);
    }


    .brand-logo {
        min-width: auto;
    }


    .main-nav {
        display: none;
    }


    .header-search {
        margin-left: auto;
    }


    .mobile-menu-btn {
        display: flex;
    }

}


/* ============================================================
   MOBILE
============================================================ */

@media (max-width: 650px) {

    :root {
        --header-height: 68px;
    }


    .nav-container {
        width: calc(100% - 28px);

        gap: 10px;
    }


    .brand-logo-icon {
        width: 39px;
        height: 39px;

        border-radius: 10px;

        font-size: 16px;
    }


    .brand-main,
    .brand-ticket {
        font-size: 16px;
    }


    .brand-tagline {
        font-size: 5px;

        letter-spacing: 1.3px;
    }


    .header-search {
        padding: 7px;

        margin-left: auto;
    }


    .header-search span {
        display: none;
    }


    .header-search i {
        font-size: 17px;
    }


    .location-selector {
        display: none;
    }


    .signin-btn {
        display: none;
    }


    .mobile-menu-btn {
        display: flex;
    }

}


/* ============================================================
   SMALL MOBILE
============================================================ */

@media (max-width: 420px) {

    .brand-logo {
        gap: 9px;
    }


    .brand-logo-icon {
        width: 37px;
        height: 37px;
    }


    .brand-main,
    .brand-ticket {
        font-size: 15px;
    }


    .brand-tagline {
        display: none;
    }

}


/* ============================================================
   MOBILE NAV PANEL
============================================================ */

.mobile-nav {
    position: absolute;

    top: 100%;
    left: 0;

    width: 100%;

    max-height: calc(100vh - var(--header-height));

    overflow-y: auto;

    background:
        linear-gradient(
            180deg,
            #100e14,
            #0b0a0f
        );

    border-top: 1px solid rgba(255,255,255,0.06);

    opacity: 0;

    visibility: hidden;

    transform: translateY(-10px);

    transition:
        opacity 0.25s ease,
        transform 0.25s ease,
        visibility 0.25s ease;
}


.mobile-nav.active {
    display: block;

    opacity: 1;

    visibility: visible;

    transform: translateY(0);
}


.mobile-nav-inner {
    width: calc(100% - 32px);

    max-width: 600px;

    margin: 0 auto;

    padding: 18px 0 25px;
}


/* MOBILE SEARCH */

.mobile-search-btn {
    width: 100%;

    height: 48px;

    display: flex;

    align-items: center;

    gap: 12px;

    padding: 0 16px;

    border: 1px solid rgba(255,255,255,0.08);

    border-radius: 12px;

    background: rgba(255,255,255,0.04);

    color: #9e9aa5;

    font-family: inherit;

    font-size: 13px;

    cursor: pointer;

    margin-bottom: 15px;
}


.mobile-search-btn i {
    color: var(--brand-pink);

    font-size: 15px;
}


/* MOBILE LINKS */

.mobile-nav-links {
    display: flex;

    flex-direction: column;
}


.mobile-nav-links a {
    min-height: 54px;

    display: flex;

    align-items: center;

    gap: 13px;

    padding: 0 8px;

    color: #aaa6b0;

    text-decoration: none;

    border-bottom: 1px solid rgba(255,255,255,0.05);

    font-size: 14px;

    transition:
        color 0.2s ease,
        padding 0.2s ease;
}


.mobile-nav-links a:hover,
.mobile-nav-links a.active {
    color: #ffffff;

    padding-left: 13px;
}


.mobile-nav-icon {
    width: 34px;
    height: 34px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 9px;

    background: rgba(255,255,255,0.05);

    color: var(--brand-pink);

    flex-shrink: 0;
}


.mobile-nav-links a > i {
    margin-left: auto;

    font-size: 10px;

    color: #66636c;
}


/* MOBILE LOCATION */

.mobile-location {
    width: 100%;

    min-height: 54px;

    display: flex;

    align-items: center;
    justify-content: space-between;

    padding: 0 8px;

    border: none;

    border-bottom: 1px solid rgba(255,255,255,0.05);

    background: transparent;

    color: #aaa6b0;

    font-family: inherit;

    font-size: 14px;

    cursor: pointer;
}


.mobile-location > span {
    display: flex;

    align-items: center;

    gap: 13px;
}


.mobile-location > span > i {
    color: var(--brand-pink);
}


/* MOBILE SIGN IN */

.mobile-signin {
    width: 100%;

    height: 48px;

    margin-top: 18px;

    border: none;

    border-radius: 12px;

    background: #ffffff;

    color: #151319;

    font-family: inherit;

    font-size: 14px;

    font-weight: 600;

    cursor: pointer;

    display: flex;

    align-items: center;
    justify-content: center;

    gap: 9px;
}


.mobile-signin i {
    color: var(--brand-pink);
}


/* ============================================================
   BODY LOCK
============================================================ */

body.menu-open {
    overflow: hidden;
}


/* ============================================================
   ACCESSIBILITY
============================================================ */

.navbar button:focus-visible,
.navbar a:focus-visible {
    outline: 2px solid var(--brand-pink);

    outline-offset: 4px;
}







/* =========================================================
   HERO BOOK TICKETS — CLICK FIX
========================================================= */

.hero-buttons {
    position: relative;
    z-index: 50;

    pointer-events: auto;
}


.hero-buttons .hero-book-btn {
    position: relative;

    z-index: 100;

    pointer-events: auto;

    cursor: pointer;

    user-select: none;
}


/* Button ke andar icon/text click ko bhi button tak bhejo */

.hero-buttons .hero-book-btn i,
.hero-buttons .hero-book-btn span {
    pointer-events: none;
}


/* =========================================================
   HERO BOOK TICKET BUTTON — CLICK FIX
========================================================= */

.hero-book-btn {
    position: relative !important;
    z-index: 9999 !important;
    pointer-events: auto !important;
    cursor: pointer !important;
}

.hero-book-btn * {
    pointer-events: none !important;
}

/* Hero overlays should never block buttons */
.hero::before,
.hero::after,
.hero-slide::before,
.hero-slide::after,
.hero-overlay {
    pointer-events: none !important;
}
.hero-book-btn {
    position: relative;
    z-index: 100;
    pointer-events: auto !important;
    cursor: pointer !important;
}

.hero-book-btn * {
    pointer-events: none;
}



/* =========================================================
   REMINDER MODAL
========================================================= */

.reminder-modal {
    position: relative;
    width: min(460px, calc(100% - 32px));
    padding: 42px 34px 30px;
    background: #15151c;
    border: 1px solid rgba(255,255,255,.10);
    border-radius: 24px;
    box-shadow: 0 30px 80px rgba(0,0,0,.55);
    color: #fff;
    animation: reminderModalIn .28s ease;
}

@keyframes reminderModalIn {

    from {
        opacity: 0;
        transform: translateY(20px) scale(.97);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }

}

.reminder-icon {
    width: 58px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    border-radius: 16px;
    background: rgba(255, 193, 7, .12);
    border: 1px solid rgba(255, 193, 7, .22);
    color: #ffc107;
    font-size: 23px;
}

.reminder-modal .section-label {
    display: block;
    margin-bottom: 8px;
}

.reminder-modal h2 {
    margin: 0 0 10px;
    font-family: "Outfit", sans-serif;
    font-size: 28px;
    line-height: 1.15;
    font-weight: 700;
}

.reminder-modal > p {
    margin: 0 0 26px;
    color: rgba(255,255,255,.62);
    line-height: 1.6;
    font-size: 14px;
}

.reminder-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 22px;
}

.reminder-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.reminder-form label {
    color: rgba(255,255,255,.75);
    font-size: 13px;
    font-weight: 600;
}

.reminder-form input {
    width: 100%;
    box-sizing: border-box;
    padding: 13px 14px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,.12);
    background: rgba(255,255,255,.06);
    color: #fff;
    font-family: "DM Sans", sans-serif;
    font-size: 14px;
    outline: none;
    transition: .2s ease;
}

.reminder-form input:focus {
    border-color: rgba(255,193,7,.65);
    background: rgba(255,255,255,.08);
}

.reminder-form input::-webkit-calendar-picker-indicator {
    filter: invert(1);
    opacity: .75;
    cursor: pointer;
}

.reminder-confirm-btn {
    width: 100%;
    border: 0;
    cursor: pointer;
}

.reminder-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    margin: 18px 0 0 !important;
    color: rgba(255,255,255,.45) !important;
    font-size: 12px !important;
}

.reminder-note i {
    color: #ffc107;
}

.reminder-btn {
    cursor: pointer;
    transition:
        background .25s ease,
        color .25s ease,
        border-color .25s ease,
        transform .2s ease;
}

.reminder-btn:hover {
    transform: translateY(-2px);
}

.reminder-btn.reminder-active {
    background: #ffc107;
    color: #111;
    border-color: #ffc107;
}

.reminder-btn.reminder-active i {
    color: #111;
}

@media (max-width: 600px) {

    .reminder-modal {
        padding: 34px 22px 24px;
        border-radius: 20px;
    }

    .reminder-modal h2 {
        font-size: 24px;
    }

    .reminder-form {
        grid-template-columns: 1fr;
    }

}


/* =========================================================
   REMINDER MODAL FIX
========================================================= */

#reminderModal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 999999;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: rgba(0, 0, 0, 0.72);
    backdrop-filter: blur(8px);
}

#reminderModal.active {
    display: flex !important;
}

.reminder-modal {
    position: relative;
    width: min(460px, 100%);
    padding: 38px;
    border-radius: 24px;
    background: #15151c;
    color: #fff;
    border: 1px solid rgba(255,255,255,.12);
    box-shadow: 0 30px 90px rgba(0,0,0,.55);
    animation: reminderModalShow .25s ease;
}

@keyframes reminderModalShow {

    from {
        opacity: 0;
        transform: translateY(20px) scale(.96);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }

}

.reminder-modal .modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 38px;
    height: 38px;
    border: 0;
    border-radius: 50%;
    background: rgba(255,255,255,.08);
    color: #fff;
    cursor: pointer;
    font-size: 16px;
}

.reminder-icon {
    width: 58px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    border-radius: 16px;
    background: rgba(255,193,7,.12);
    color: #ffc107;
    font-size: 23px;
}

.reminder-modal h2 {
    margin: 8px 0 10px;
    font-family: "Outfit", sans-serif;
    font-size: 28px;
}

.reminder-modal > p {
    margin: 0 0 25px;
    color: rgba(255,255,255,.60);
    line-height: 1.6;
}

.reminder-fields {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 22px;
}

.reminder-fields div {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.reminder-fields label {
    font-size: 13px;
    font-weight: 600;
    color: rgba(255,255,255,.75);
}

.reminder-fields input {
    width: 100%;
    box-sizing: border-box;
    padding: 13px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,.12);
    background: rgba(255,255,255,.06);
    color: #fff;
    outline: none;
    font-family: "DM Sans", sans-serif;
}

.reminder-fields input:focus {
    border-color: #ffc107;
}

.reminder-fields input::-webkit-calendar-picker-indicator {
    filter: invert(1);
    cursor: pointer;
}

#confirmReminder {
    width: 100%;
    cursor: pointer;
}

.reminder-btn {
    position: relative;
    z-index: 20;
    cursor: pointer !important;
    pointer-events: auto !important;
}

.reminder-btn.reminder-active {
    background: #ffc107;
    color: #111;
    border-color: #ffc107;
}

@media (max-width: 600px) {

    .reminder-modal {
        padding: 30px 22px;
    }

    .reminder-fields {
        grid-template-columns: 1fr;
    }

    .reminder-modal h2 {
        font-size: 24px;
    }

}

 
/* =========================================================
   REMINDER MODAL
========================================================= */

#reminderModal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 999999;

    align-items: center;
    justify-content: center;

    padding: 20px;

    background: rgba(0, 0, 0, 0.75);

    backdrop-filter: blur(8px);
}


/* OPEN STATE */

#reminderModal.active {
    display: flex !important;
}


/* MODAL BOX */

.reminder-modal {
    position: relative;

    width: min(460px, 100%);

    padding: 38px;

    border-radius: 24px;

    background: #15151c;

    color: #fff;

    border: 1px solid rgba(255,255,255,0.12);

    box-shadow:
        0 30px 90px rgba(0,0,0,0.55);

    animation:
        reminderModalShow 0.25s ease;
}


/* ANIMATION */

@keyframes reminderModalShow {

    from {
        opacity: 0;
        transform:
            translateY(20px)
            scale(0.96);
    }

    to {
        opacity: 1;
        transform:
            translateY(0)
            scale(1);
    }

}


/* CLOSE BUTTON */

.reminder-modal .modal-close {

    position: absolute;

    top: 16px;
    right: 16px;

    width: 38px;
    height: 38px;

    border: none;

    border-radius: 50%;

    background:
        rgba(255,255,255,0.08);

    color: #fff;

    cursor: pointer;

    font-size: 16px;

    display: flex;
    align-items: center;
    justify-content: center;

    transition: 0.2s ease;
}


.reminder-modal .modal-close:hover {

    background:
        rgba(255,255,255,0.16);

    transform: rotate(90deg);

}


/* BELL ICON */

.reminder-icon {

    width: 58px;
    height: 58px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 20px;

    border-radius: 16px;

    background:
        rgba(255,193,7,0.12);

    color: #ffc107;

    font-size: 23px;
}


/* TITLE */

.reminder-modal h2 {

    margin: 8px 0 10px;

    font-family: "Outfit", sans-serif;

    font-size: 28px;

    line-height: 1.2;

}


/* DESCRIPTION */

.reminder-modal > p {

    margin: 0 0 25px;

    color:
        rgba(255,255,255,0.60);

    line-height: 1.6;

}


/* DATE + TIME */

.reminder-fields {

    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 14px;

    margin-bottom: 22px;

}


.reminder-fields div {

    display: flex;

    flex-direction: column;

    gap: 8px;

}


.reminder-fields label {

    font-size: 13px;

    font-weight: 600;

    color:
        rgba(255,255,255,0.75);

}


/* INPUTS */

.reminder-fields input {

    width: 100%;

    box-sizing: border-box;

    padding: 13px;

    border-radius: 12px;

    border:
        1px solid
        rgba(255,255,255,0.12);

    background:
        rgba(255,255,255,0.06);

    color: #fff;

    outline: none;

    font-family:
        "DM Sans", sans-serif;

    transition: 0.2s ease;

}


.reminder-fields input:focus {

    border-color: #ffc107;

    background:
        rgba(255,255,255,0.08);

}


/* CALENDAR ICON */

.reminder-fields
input::-webkit-calendar-picker-indicator {

    filter: invert(1);

    cursor: pointer;

}


/* SET REMINDER BUTTON */

#confirmReminder {

    width: 100%;

    cursor: pointer;

}


/* MOBILE */

@media (max-width: 600px) {

    .reminder-modal {

        padding:
            30px 22px;

    }


    .reminder-fields {

        grid-template-columns:
            1fr;

    }


    .reminder-modal h2 {

        font-size: 24px;

    }

}



 /* =========================================================
   TIKTIKTICKET.IN — EVENTS PAGE
   events.css
========================================================= */


/* =========================================================
   ROOT / GLOBAL
========================================================= */

:root {
    --events-bg: #09090d;
    --events-card: #121219;
    --events-card-2: #171720;
    --events-white: #ffffff;
    --events-muted: rgba(255, 255, 255, 0.62);
    --events-soft: rgba(255, 255, 255, 0.08);
    --events-border: rgba(255, 255, 255, 0.10);
    --events-red: #e51b3e;
    --events-red-dark: #b90f2c;
    --events-gold: #ffc107;
}


/* =========================================================
   CONTAINER
========================================================= */

.events-hero .container,
.event-stats-section .container,
.event-categories .container,
.all-events-section .container,
.event-benefits .container,
.events-cta .container {
    width: min(1240px, calc(100% - 40px));
    margin: 0 auto;
}


/* =========================================================
   PAGE LOADER
========================================================= */

.page-loader {
    position: fixed;
    inset: 0;
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #09090d;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.page-loader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader-spinner {
    width: 42px;
    height: 42px;
    border: 3px solid rgba(255, 255, 255, 0.12);
    border-top-color: var(--events-red);
    border-radius: 50%;
    animation: eventSpinner 0.8s linear infinite;
}

@keyframes eventSpinner {
    to {
        transform: rotate(360deg);
    }
}


/* =========================================================
   HEADER OVERRIDES
========================================================= */

.main-header {
    position: sticky;
    top: 0;
    z-index: 1000;
}

.main-nav a.active {
    color: #ffffff;
}

.main-nav a.active::after {
    width: 100%;
}


/* =========================================================
   MOBILE NAV
========================================================= */

.mobile-nav {
    z-index: 999;
}


/* =========================================================
   EVENTS HERO
========================================================= */

.events-hero {
    position: relative;
    min-height: 650px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #09090d;
}

.events-hero-bg {
    position: absolute;
    inset: 0;

    background:
        radial-gradient(
            circle at 15% 50%,
            rgba(229, 27, 62, 0.22),
            transparent 35%
        ),
        radial-gradient(
            circle at 85% 30%,
            rgba(255, 193, 7, 0.08),
            transparent 28%
        ),
        linear-gradient(
            115deg,
            #09090d 0%,
            #0c0c12 48%,
            #09090d 100%
        );
}

.events-hero-bg::before {
    content: "";
    position: absolute;
    width: 520px;
    height: 520px;
    right: -180px;
    top: -200px;

    border-radius: 50%;

    background: rgba(229, 27, 62, 0.08);

    filter: blur(10px);
}

.events-hero-bg::after {
    content: "";
    position: absolute;
    inset: 0;

    background-image:
        linear-gradient(
            rgba(255,255,255,0.025) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255,255,255,0.025) 1px,
            transparent 1px
        );

    background-size: 70px 70px;

    mask-image: linear-gradient(
        to bottom,
        black,
        transparent 85%
    );
}


/* =========================================================
   HERO CONTENT
========================================================= */

.events-hero-content {
    position: relative;
    z-index: 2;

    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.75fr);
    gap: 80px;

    align-items: center;

    padding-top: 100px;
    padding-bottom: 100px;
}

.events-hero-copy {
    max-width: 680px;
}

.events-hero-copy .section-label {
    display: inline-flex;
    align-items: center;
    gap: 9px;

    margin-bottom: 22px;

    color: var(--events-red);

    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
}

.events-hero-copy h1 {
    margin: 0;

    font-family: "Outfit", sans-serif;

    font-size: clamp(48px, 6vw, 82px);
    line-height: 0.98;
    letter-spacing: -3px;

    color: #ffffff;
}

.events-hero-copy h1 span {
    display: block;
    color: var(--events-red);
}

.events-hero-copy p {
    max-width: 600px;

    margin: 30px 0 34px;

    color: var(--events-muted);

    font-family: "DM Sans", sans-serif;

    font-size: 17px;
    line-height: 1.75;
}


/* =========================================================
   HERO BUTTONS
========================================================= */

.events-hero-actions {
    display: flex;
    align-items: center;
    gap: 14px;

    flex-wrap: wrap;
}

.primary-event-btn,
.secondary-event-btn {
    min-height: 52px;

    padding: 0 23px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 11px;

    border-radius: 12px;

    font-family: "DM Sans", sans-serif;

    font-size: 14px;
    font-weight: 700;

    text-decoration: none;

    transition:
        transform 0.25s ease,
        background 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}

.primary-event-btn {
    background: var(--events-red);
    color: #ffffff;

    box-shadow: 0 12px 35px rgba(229, 27, 62, 0.22);
}

.primary-event-btn:hover {
    background: #f12649;
    transform: translateY(-2px);

    box-shadow: 0 18px 45px rgba(229, 27, 62, 0.30);
}

.secondary-event-btn {
    color: #ffffff;

    border: 1px solid var(--events-border);

    background: rgba(255, 255, 255, 0.04);
}

.secondary-event-btn:hover {
    border-color: rgba(255, 255, 255, 0.22);
    background: rgba(255, 255, 255, 0.08);

    transform: translateY(-2px);
}


/* =========================================================
   HERO IMAGE CARD
========================================================= */

.events-hero-card {
    position: relative;

    width: 100%;
    max-width: 460px;

    margin-left: auto;
}

.hero-card-image {
    position: relative;

    min-height: 490px;

    overflow: hidden;

    border-radius: 28px;

    border: 1px solid rgba(255,255,255,0.10);

    background:
        linear-gradient(
            145deg,
            #1c1c26,
            #0f0f15
        );

    box-shadow:
        0 35px 100px rgba(0,0,0,0.45);

    transform: rotate(2deg);

    transition: transform 0.45s ease;
}

.events-hero-card:hover .hero-card-image {
    transform: rotate(0deg) translateY(-5px);
}

.hero-card-image img {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;
}

.hero-card-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            to bottom,
            transparent 20%,
            rgba(0,0,0,0.25) 50%,
            rgba(0,0,0,0.92) 100%
        );
}

.hero-card-content {
    position: absolute;

    left: 28px;
    right: 28px;
    bottom: 30px;

    z-index: 2;
}

.hero-card-content span {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    margin-bottom: 12px;

    color: var(--events-gold);

    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.5px;
}

.hero-card-content h3 {
    margin: 0;

    color: #ffffff;

    font-family: "Outfit", sans-serif;

    font-size: 32px;
    line-height: 1.12;
}


/* =========================================================
   EVENT STATS
========================================================= */

.event-stats-section {
    position: relative;
    z-index: 3;

    margin-top: -45px;
}

.event-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);

    background: #111118;

    border: 1px solid var(--events-border);

    border-radius: 20px;

    overflow: hidden;

    box-shadow:
        0 25px 80px rgba(0,0,0,0.35);
}

.event-stat {
    min-height: 115px;

    padding: 20px 25px;

    display: flex;
    align-items: center;
    gap: 15px;

    border-right: 1px solid var(--events-border);
}

.event-stat:last-child {
    border-right: 0;
}

.event-stat-icon {
    width: 48px;
    height: 48px;

    flex: 0 0 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 14px;

    background: rgba(229, 27, 62, 0.10);

    color: var(--events-red);

    font-size: 18px;
}

.event-stat strong {
    display: block;

    color: #ffffff;

    font-family: "Outfit", sans-serif;

    font-size: 21px;
}

.event-stat span {
    display: block;

    margin-top: 3px;

    color: var(--events-muted);

    font-size: 12px;
}


/* =========================================================
   SECTION HEADING
========================================================= */

.event-categories,
.all-events-section,
.event-benefits {
    padding-top: 105px;
}

.event-heading,
.events-list-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    gap: 30px;

    margin-bottom: 35px;
}

.event-heading h2,
.events-list-heading h2,
.event-benefits h2 {
    margin: 7px 0 0;

    color: #ffffff;

    font-family: "Outfit", sans-serif;

    font-size: clamp(34px, 4vw, 48px);

    letter-spacing: -1.5px;
}

.event-heading > p {
    max-width: 390px;

    margin: 0;

    color: var(--events-muted);

    font-size: 14px;
    line-height: 1.7;
}


/* =========================================================
   CATEGORY LIST
========================================================= */

.category-list {
    display: grid;

    grid-template-columns: repeat(6, 1fr);

    gap: 12px;
}

.event-category-btn {
    min-height: 115px;

    padding: 18px 12px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    gap: 12px;

    border: 1px solid var(--events-border);
    border-radius: 16px;

    background: rgba(255,255,255,0.025);

    color: rgba(255,255,255,0.65);

    cursor: pointer;

    font-family: "DM Sans", sans-serif;

    transition:
        transform 0.25s ease,
        color 0.25s ease,
        border-color 0.25s ease,
        background 0.25s ease;
}

.event-category-btn i {
    font-size: 21px;
}

.event-category-btn span {
    font-size: 12px;
    font-weight: 700;
    text-align: center;
}

.event-category-btn:hover {
    color: #ffffff;

    border-color: rgba(229,27,62,0.45);

    background: rgba(229,27,62,0.06);

    transform: translateY(-4px);
}

.event-category-btn.active {
    color: #ffffff;

    border-color: var(--events-red);

    background: rgba(229,27,62,0.12);

    box-shadow:
        inset 0 0 0 1px rgba(229,27,62,0.08);
}

.event-category-btn.active i {
    color: var(--events-red);
}


/* =========================================================
   EVENTS SECTION
========================================================= */

.all-events-section {
    padding-bottom: 100px;
}

.events-list-heading {
    align-items: center;
}


/* =========================================================
   EVENT CONTROLS
========================================================= */

.event-controls {
    display: flex;
    align-items: center;
    gap: 10px;
}

.event-search {
    width: 240px;
    height: 46px;

    display: flex;
    align-items: center;
    gap: 10px;

    padding: 0 14px;

    border: 1px solid var(--events-border);
    border-radius: 11px;

    background: rgba(255,255,255,0.035);

    transition: border-color 0.25s ease;
}

.event-search:focus-within {
    border-color: rgba(229,27,62,0.65);
}

.event-search i {
    color: rgba(255,255,255,0.45);

    font-size: 13px;
}

.event-search input {
    width: 100%;

    border: 0;
    outline: 0;

    background: transparent;

    color: #ffffff;

    font-family: "DM Sans", sans-serif;

    font-size: 13px;
}

.event-search input::placeholder {
    color: rgba(255,255,255,0.38);
}

.event-sort {
    height: 46px;

    padding: 0 35px 0 13px;

    border: 1px solid var(--events-border);
    border-radius: 11px;

    outline: none;

    background: #14141b;

    color: rgba(255,255,255,0.75);

    font-family: "DM Sans", sans-serif;

    font-size: 12px;

    cursor: pointer;
}


/* =========================================================
   EVENTS GRID
========================================================= */

.events-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 22px;
}

.event-card {
    min-width: 0;

    overflow: hidden;

    border: 1px solid var(--events-border);
    border-radius: 19px;

    background: var(--events-card);

    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;

    animation: eventCardAppear 0.45s ease both;
}

@keyframes eventCardAppear {
    from {
        opacity: 0;
        transform: translateY(18px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.event-card:hover {
    transform: translateY(-7px);

    border-color: rgba(255,255,255,0.17);

    box-shadow:
        0 22px 55px rgba(0,0,0,0.32);
}


/* =========================================================
   EVENT IMAGE
========================================================= */

.event-card-image {
    position: relative;

    height: 285px;

    overflow: hidden;

    background:
        linear-gradient(
            145deg,
            #20202a,
            #111117
        );
}

.event-card-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition:
        transform 0.5s ease;
}

.event-card:hover .event-card-image img {
    transform: scale(1.06);
}

.event-tag {
    position: absolute;

    top: 14px;
    left: 14px;

    padding: 7px 10px;

    border-radius: 7px;

    background: rgba(0,0,0,0.72);

    backdrop-filter: blur(10px);

    color: #ffffff;

    font-size: 9px;
    font-weight: 800;

    letter-spacing: 1px;
}

.event-fav-btn {
    position: absolute;

    top: 12px;
    right: 12px;

    width: 38px;
    height: 38px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255,255,255,0.15);

    border-radius: 50%;

    background: rgba(0,0,0,0.50);

    backdrop-filter: blur(8px);

    color: #ffffff;

    cursor: pointer;

    transition:
        transform 0.25s ease,
        background 0.25s ease,
        color 0.25s ease;
}

.event-fav-btn:hover {
    transform: scale(1.08);

    background: rgba(229,27,62,0.9);
}

.event-fav-btn.active {
    color: #ffffff;

    background: var(--events-red);

    border-color: var(--events-red);
}

.event-date-badge {
    position: absolute;

    left: 14px;
    bottom: 14px;

    width: 55px;
    min-height: 62px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    border-radius: 11px;

    background: #ffffff;

    color: #111111;

    box-shadow:
        0 8px 25px rgba(0,0,0,0.30);
}

.event-date-badge strong {
    font-family: "Outfit", sans-serif;

    font-size: 22px;

    line-height: 1;
}

.event-date-badge span {
    margin-top: 4px;

    color: #666666;

    font-size: 9px;
    font-weight: 800;

    letter-spacing: 0.8px;
}


/* =========================================================
   EVENT CARD CONTENT
========================================================= */

.event-card-content {
    padding: 20px;
}

.event-category-label {
    display: inline-flex;
    align-items: center;
    gap: 7px;

    color: var(--events-red);

    font-size: 10px;
    font-weight: 800;

    letter-spacing: 0.7px;
    text-transform: uppercase;
}

.event-category-label i {
    font-size: 9px;
}

.event-card-content h3 {
    margin: 9px 0 15px;

    color: #ffffff;

    font-family: "Outfit", sans-serif;

    font-size: 21px;
    line-height: 1.2;

    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.event-info {
    display: flex;
    flex-direction: column;
    gap: 9px;

    min-height: 58px;
}

.event-info div {
    display: flex;
    align-items: flex-start;
    gap: 9px;

    color: rgba(255,255,255,0.57);

    font-size: 11px;
    line-height: 1.45;
}

.event-info i {
    width: 14px;

    flex: 0 0 14px;

    margin-top: 2px;

    color: rgba(255,255,255,0.38);

    text-align: center;
}

.event-card-bottom {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    gap: 12px;

    margin-top: 19px;
    padding-top: 17px;

    border-top: 1px solid var(--events-border);
}

.event-price span {
    display: block;

    margin-bottom: 3px;

    color: rgba(255,255,255,0.40);

    font-size: 9px;
}

.event-price strong {
    color: #ffffff;

    font-family: "Outfit", sans-serif;

    font-size: 18px;
}

.event-book-btn {
    min-height: 38px;

    padding: 0 13px;

    display: inline-flex;
    align-items: center;
    gap: 7px;

    border: 1px solid rgba(229,27,62,0.4);
    border-radius: 9px;

    background: rgba(229,27,62,0.08);

    color: #ffffff;

    font-family: "DM Sans", sans-serif;

    font-size: 11px;
    font-weight: 700;

    cursor: pointer;

    transition:
        background 0.25s ease,
        transform 0.25s ease;
}

.event-book-btn i {
    font-size: 9px;
}

.event-book-btn:hover {
    background: var(--events-red);

    transform: translateX(2px);
}


/* =========================================================
   NO RESULTS
========================================================= */

.events-no-results {
    padding: 70px 20px;

    text-align: center;
}

.events-no-results[hidden] {
    display: none;
}

.no-results-icon {
    width: 65px;
    height: 65px;

    margin: 0 auto 18px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 18px;

    background: rgba(255,255,255,0.05);

    color: rgba(255,255,255,0.45);

    font-size: 23px;
}

.events-no-results h3 {
    margin: 0 0 8px;

    color: #ffffff;

    font-family: "Outfit", sans-serif;

    font-size: 25px;
}

.events-no-results p {
    margin: 0;

    color: var(--events-muted);

    font-size: 13px;
}


/* =========================================================
   BENEFITS
========================================================= */

.event-benefits {
    padding-bottom: 110px;

    background:
        radial-gradient(
            circle at 50% 0%,
            rgba(229,27,62,0.07),
            transparent 45%
        );
}

.centered {
    text-align: center;
}

.centered > p {
    max-width: 550px;

    margin: 14px auto 0;

    color: var(--events-muted);

    font-size: 14px;
    line-height: 1.7;
}

.benefits-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 16px;

    margin-top: 48px;
}

.benefit-card {
    padding: 30px 25px;

    border: 1px solid var(--events-border);

    border-radius: 17px;

    background: rgba(255,255,255,0.025);

    transition:
        transform 0.3s ease,
        background 0.3s ease,
        border-color 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);

    background: rgba(255,255,255,0.045);

    border-color: rgba(229,27,62,0.30);
}

.benefit-icon {
    width: 48px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 20px;

    border-radius: 13px;

    background: rgba(229,27,62,0.10);

    color: var(--events-red);

    font-size: 18px;
}

.benefit-card h3 {
    margin: 0 0 9px;

    color: #ffffff;

    font-family: "Outfit", sans-serif;

    font-size: 19px;
}

.benefit-card p {
    margin: 0;

    color: var(--events-muted);

    font-size: 12px;
    line-height: 1.7;
}


/* =========================================================
   CTA
========================================================= */

.events-cta {
    padding: 20px 0 100px;
}

.events-cta-inner {
    position: relative;

    overflow: hidden;

    min-height: 280px;

    padding: 50px 60px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 40px;

    border-radius: 25px;

    background:
        radial-gradient(
            circle at 80% 20%,
            rgba(255,255,255,0.10),
            transparent 30%
        ),
        linear-gradient(
            120deg,
            #a80e29,
            #e51b3e
        );

    box-shadow:
        0 30px 90px rgba(229,27,62,0.18);
}

.events-cta-inner::after {
    content: "";

    position: absolute;

    width: 350px;
    height: 350px;

    right: -130px;
    bottom: -220px;

    border: 1px solid rgba(255,255,255,0.12);

    border-radius: 50%;
}

.events-cta-content {
    position: relative;
    z-index: 2;

    max-width: 650px;
}

.events-cta-content .section-label {
    color: rgba(255,255,255,0.75);
}

.events-cta-content h2 {
    margin: 10px 0 13px;

    color: #ffffff;

    font-family: "Outfit", sans-serif;

    font-size: clamp(32px, 4vw, 48px);

    line-height: 1.05;

    letter-spacing: -1px;
}

.events-cta-content h2 span {
    color: #ffffff;
}

.events-cta-content p {
    max-width: 580px;

    margin: 0;

    color: rgba(255,255,255,0.75);

    font-size: 14px;
    line-height: 1.7;
}

.events-cta .primary-event-btn {
    position: relative;
    z-index: 3;

    flex-shrink: 0;

    background: #ffffff;

    color: #111111;

    box-shadow: none;
}

.events-cta .primary-event-btn:hover {
    background: #f4f4f4;

    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}


/* =========================================================
   MODAL COMMON
========================================================= */

.modal-overlay {
    position: fixed;
    inset: 0;

    z-index: 99999;

    display: none;

    align-items: center;
    justify-content: center;

    padding: 20px;

    background: rgba(0,0,0,0.78);

    backdrop-filter: blur(9px);
}

.modal-overlay.active {
    display: flex;
}

.event-booking-modal,
.location-modal,
.signin-modal {
    position: relative;

    width: min(470px, 100%);

    max-height: calc(100vh - 40px);

    overflow-y: auto;

    padding: 36px;

    border: 1px solid rgba(255,255,255,0.12);

    border-radius: 23px;

    background: #14141b;

    color: #ffffff;

    box-shadow:
        0 35px 100px rgba(0,0,0,0.60);

    animation: eventModalIn 0.25s ease;
}

@keyframes eventModalIn {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.96);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.modal-close {
    position: absolute;

    top: 14px;
    right: 14px;

    width: 38px;
    height: 38px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 0;
    border-radius: 50%;

    background: rgba(255,255,255,0.07);

    color: #ffffff;

    cursor: pointer;

    transition:
        background 0.2s ease,
        transform 0.2s ease;
}

.modal-close:hover {
    background: rgba(255,255,255,0.13);

    transform: rotate(5deg);
}


/* =========================================================
   EVENT BOOKING MODAL
========================================================= */

.event-booking-modal > .section-label,
.location-modal > .section-label,
.signin-modal > .section-label {
    color: var(--events-red);

    font-size: 10px;
    font-weight: 800;

    letter-spacing: 1.6px;
}

.event-booking-modal h2,
.location-modal h2,
.signin-modal h2 {
    margin: 8px 0 8px;

    font-family: "Outfit", sans-serif;

    font-size: 29px;
    line-height: 1.15;
}

.booking-modal-subtitle {
    margin: 0 0 22px;

    color: var(--events-muted);

    font-size: 13px;
    line-height: 1.6;
}

.booking-event-summary {
    display: flex;
    flex-direction: column;
    gap: 11px;

    padding: 17px;

    border: 1px solid var(--events-border);

    border-radius: 13px;

    background: rgba(255,255,255,0.035);

    margin-bottom: 23px;
}

.booking-event-summary div {
    display: flex;
    align-items: flex-start;
    gap: 11px;

    color: rgba(255,255,255,0.70);

    font-size: 12px;
    line-height: 1.5;
}

.booking-event-summary i {
    width: 16px;

    color: var(--events-red);

    text-align: center;
}

.ticket-selection {
    margin-bottom: 22px;
}

.ticket-selection label {
    display: block;

    margin-bottom: 10px;

    color: rgba(255,255,255,0.75);

    font-size: 12px;
    font-weight: 600;
}

.quantity-control {
    height: 48px;

    display: grid;

    grid-template-columns: 48px 1fr 48px;

    overflow: hidden;

    border: 1px solid var(--events-border);

    border-radius: 11px;

    background: rgba(255,255,255,0.035);
}

.quantity-control button {
    border: 0;

    background: transparent;

    color: #ffffff;

    cursor: pointer;

    transition: background 0.2s ease;
}

.quantity-control button:hover {
    background: rgba(255,255,255,0.08);
}

.quantity-control input {
    width: 100%;

    border: 0;
    border-left: 1px solid var(--events-border);
    border-right: 1px solid var(--events-border);

    outline: 0;

    background: transparent;

    color: #ffffff;

    text-align: center;

    font-family: "DM Sans", sans-serif;

    font-weight: 700;
}

.booking-total {
    display: flex;
    align-items: center;
    justify-content: space-between;

    margin-bottom: 20px;

    padding-top: 18px;

    border-top: 1px solid var(--events-border);
}

.booking-total span {
    color: rgba(255,255,255,0.55);

    font-size: 13px;
}

.booking-total strong {
    color: #ffffff;

    font-family: "Outfit", sans-serif;

    font-size: 25px;
}

.proceed-btn {
    width: 100%;
    min-height: 50px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    border: 0;

    border-radius: 11px;

    background: var(--events-red);

    color: #ffffff;

    font-family: "DM Sans", sans-serif;

    font-size: 13px;
    font-weight: 700;

    cursor: pointer;

    transition:
        background 0.2s ease,
        transform 0.2s ease;
}

.proceed-btn:hover {
    background: #f12649;

    transform: translateY(-1px);
}


/* =========================================================
   LOCATION MODAL
========================================================= */

.location-modal h2 {
    margin-bottom: 22px;
}

.location-search {
    height: 46px;

    display: flex;
    align-items: center;
    gap: 10px;

    padding: 0 13px;

    margin-bottom: 15px;

    border: 1px solid var(--events-border);

    border-radius: 10px;

    background: rgba(255,255,255,0.04);
}

.location-search i {
    color: rgba(255,255,255,0.42);

    font-size: 13px;
}

.location-search input {
    width: 100%;

    border: 0;
    outline: 0;

    background: transparent;

    color: #ffffff;

    font-family: "DM Sans", sans-serif;

    font-size: 13px;
}

.location-search input::placeholder {
    color: rgba(255,255,255,0.38);
}

.location-list {
    display: flex;
    flex-direction: column;

    gap: 5px;
}

.location-option {
    width: 100%;

    min-height: 48px;

    padding: 0 13px;

    display: grid;

    grid-template-columns: 22px 1fr 20px;

    align-items: center;

    gap: 8px;

    border: 0;
    border-radius: 9px;

    background: transparent;

    color: rgba(255,255,255,0.68);

    text-align: left;

    cursor: pointer;

    font-family: "DM Sans", sans-serif;

    font-size: 13px;
}

.location-option:hover {
    background: rgba(255,255,255,0.05);

    color: #ffffff;
}

.location-option > i:first-child {
    color: var(--events-red);

    text-align: center;
}

.location-option > i:last-child {
    opacity: 0;

    color: var(--events-red);

    text-align: center;
}

.location-option.active {
    background: rgba(229,27,62,0.08);

    color: #ffffff;
}

.location-option.active > i:last-child {
    opacity: 1;
}


/* =========================================================
   SIGN IN MODAL
========================================================= */

.signin-modal {
    text-align: center;
}

.signin-icon {
    width: 58px;
    height: 58px;

    margin: 0 auto 20px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 16px;

    background: rgba(229,27,62,0.10);

    color: var(--events-red);

    font-size: 21px;
}

.signin-modal > p {
    margin: 0 auto 23px;

    max-width: 350px;

    color: var(--events-muted);

    font-size: 12px;

    line-height: 1.65;
}

#signinForm {
    text-align: left;
}

.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: block;

    margin-bottom: 7px;

    color: rgba(255,255,255,0.72);

    font-size: 11px;
    font-weight: 600;
}

.form-group input {
    width: 100%;

    box-sizing: border-box;

    min-height: 46px;

    padding: 0 13px;

    border: 1px solid var(--events-border);

    border-radius: 10px;

    outline: none;

    background: rgba(255,255,255,0.035);

    color: #ffffff;

    font-family: "DM Sans", sans-serif;

    font-size: 13px;

    transition: border-color 0.2s ease;
}

.form-group input:focus {
    border-color: rgba(229,27,62,0.65);
}

.signin-footer-text {
    margin-top: 19px !important;
    margin-bottom: 0 !important;

    color: rgba(255,255,255,0.48) !important;
}

.signin-footer-text button {
    padding: 0;

    border: 0;

    background: transparent;

    color: var(--events-red);

    cursor: pointer;

    font: inherit;
    font-weight: 700;
}


/* =========================================================
   SEARCH OVERLAY
========================================================= */

.search-overlay {
    position: fixed;
    inset: 0;

    z-index: 99998;

    display: none;

    align-items: flex-start;
    justify-content: center;

    padding: 130px 20px 30px;

    background: rgba(0,0,0,0.80);

    backdrop-filter: blur(10px);
}

.search-overlay.active {
    display: flex;
}

.search-box {
    position: relative;

    width: min(680px, 100%);

    padding: 38px;

    border: 1px solid var(--events-border);

    border-radius: 22px;

    background: #14141b;

    box-shadow: 0 30px 90px rgba(0,0,0,0.55);

    animation: eventModalIn 0.25s ease;
}

.search-close {
    position: absolute;

    top: 14px;
    right: 14px;

    width: 38px;
    height: 38px;

    border: 0;

    border-radius: 50%;

    background: rgba(255,255,255,0.07);

    color: #ffffff;

    cursor: pointer;
}

.search-box h2 {
    margin: 8px 0 22px;

    color: #ffffff;

    font-family: "Outfit", sans-serif;

    font-size: 31px;
}

.search-input-wrap {
    height: 56px;

    display: flex;
    align-items: center;
    gap: 13px;

    padding: 0 17px;

    border: 1px solid rgba(255,255,255,0.12);

    border-radius: 13px;

    background: rgba(255,255,255,0.04);
}

.search-input-wrap i {
    color: var(--events-red);
}

.search-input-wrap input {
    width: 100%;

    border: 0;
    outline: 0;

    background: transparent;

    color: #ffffff;

    font-family: "DM Sans", sans-serif;

    font-size: 14px;
}

.search-input-wrap input::placeholder {
    color: rgba(255,255,255,0.35);
}


/* =========================================================
   TOAST
========================================================= */

.toast {
    position: fixed;

    right: 25px;
    bottom: 25px;

    z-index: 100000;

    min-width: 280px;

    display: flex;
    align-items: center;
    gap: 12px;

    padding: 14px 17px;

    border: 1px solid var(--events-border);

    border-radius: 13px;

    background: #17171f;

    box-shadow: 0 20px 50px rgba(0,0,0,0.40);

    transform: translateY(130px);

    opacity: 0;

    pointer-events: none;

    transition:
        transform 0.3s ease,
        opacity 0.3s ease;
}

.toast.show {
    transform: translateY(0);

    opacity: 1;
}

.toast-icon {
    width: 34px;
    height: 34px;

    flex: 0 0 34px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 9px;

    background: rgba(229,27,62,0.12);

    color: var(--events-red);

    font-size: 12px;
}

.toast-content strong {
    display: block;

    margin-bottom: 2px;

    color: #ffffff;

    font-size: 12px;
}

.toast-content span {
    color: rgba(255,255,255,0.50);

    font-size: 10px;
}


/* =========================================================
   FOOTER
========================================================= */

.main-footer {
    position: relative;
}


/* =========================================================
   BODY MODAL LOCK
========================================================= */

body.modal-open {
    overflow: hidden;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1100px) {

    .events-hero-content {
        grid-template-columns: minmax(0, 1fr) 350px;

        gap: 45px;
    }

    .events-hero {
        min-height: 600px;
    }

    .hero-card-image {
        min-height: 420px;
    }

    .category-list {
        grid-template-columns: repeat(3, 1fr);
    }

    .events-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}


/* =========================================================
   TABLET SMALL
========================================================= */

@media (max-width: 850px) {

    .events-hero-content {
        grid-template-columns: 1fr;

        padding-top: 80px;
        padding-bottom: 100px;
    }

    .events-hero-copy {
        max-width: 720px;
    }

    .events-hero-copy h1 {
        font-size: clamp(48px, 10vw, 70px);
    }

    .events-hero-card {
        display: none;
    }

    .event-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .event-stat:nth-child(2) {
        border-right: 0;
    }

    .event-stat:nth-child(-n+2) {
        border-bottom: 1px solid var(--events-border);
    }

    .event-heading,
    .events-list-heading {
        align-items: flex-start;
        flex-direction: column;
    }

    .event-heading > p {
        max-width: 600px;
    }

    .event-controls {
        width: 100%;
    }

    .event-search {
        flex: 1;
    }

    .events-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .events-cta-inner {
        align-items: flex-start;
        flex-direction: column;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .events-hero .container,
    .event-stats-section .container,
    .event-categories .container,
    .all-events-section .container,
    .event-benefits .container,
    .events-cta .container {
        width: min(100% - 28px, 1240px);
    }

    .events-hero {
        min-height: auto;
    }

    .events-hero-content {
        padding-top: 70px;
        padding-bottom: 85px;
    }

    .events-hero-copy h1 {
        font-size: 48px;

        letter-spacing: -2px;
    }

    .events-hero-copy p {
        margin-top: 22px;

        font-size: 14px;

        line-height: 1.7;
    }

    .events-hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .primary-event-btn,
    .secondary-event-btn {
        width: 100%;
    }

    .event-stats-section {
        margin-top: -30px;
    }

    .event-stats {
        grid-template-columns: 1fr 1fr;

        border-radius: 16px;
    }

    .event-stat {
        min-height: 100px;

        padding: 15px;

        gap: 10px;
    }

    .event-stat-icon {
        width: 40px;
        height: 40px;

        flex-basis: 40px;

        font-size: 15px;
    }

    .event-stat strong {
        font-size: 17px;
    }

    .event-stat span {
        font-size: 10px;
    }

    .event-categories,
    .all-events-section,
    .event-benefits {
        padding-top: 75px;
    }

    .event-heading h2,
    .events-list-heading h2,
    .event-benefits h2 {
        font-size: 34px;
    }

    .category-list {
        grid-template-columns: repeat(2, 1fr);
    }

    .event-category-btn {
        min-height: 100px;
    }

    .event-controls {
        flex-direction: column;

        align-items: stretch;
    }

    .event-search {
        width: auto;
    }

    .event-sort {
        width: 100%;
    }

    .events-grid {
        grid-template-columns: 1fr;

        gap: 17px;
    }

    .event-card-image {
        height: 320px;
    }

    .event-card-content h3 {
        font-size: 22px;
    }

    .benefits-grid {
        grid-template-columns: 1fr;

        margin-top: 35px;
    }

    .benefit-card {
        padding: 25px 22px;
    }

    .events-cta {
        padding-bottom: 70px;
    }

    .events-cta-inner {
        padding: 35px 25px;

        border-radius: 20px;
    }

    .events-cta-content h2 {
        font-size: 34px;
    }

    .event-booking-modal,
    .location-modal,
    .signin-modal {
        padding: 30px 22px;

        border-radius: 18px;
    }

    .search-overlay {
        padding-top: 90px;
    }

    .search-box {
        padding: 30px 22px;
    }

    .search-box h2 {
        font-size: 26px;
    }

    .toast {
        right: 14px;
        left: 14px;
        bottom: 14px;

        min-width: 0;
    }

}


/* =========================================================
   EXTRA SMALL
========================================================= */

@media (max-width: 380px) {

    .events-hero-copy h1 {
        font-size: 42px;
    }

    .category-list {
        gap: 8px;
    }

    .event-category-btn {
        min-height: 92px;

        padding: 12px 8px;
    }

    .event-card-image {
        height: 280px;
    }

    .event-stat {
        padding: 12px 10px;
    }

}


.logged-user {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logged-user-name {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 14px;
    font-weight: 600;
    color: #222;
}

.logged-user-name i {
    font-size: 14px;
}

.logout-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 14px;
    border-radius: 8px;
    background: #111;
    color: #fff;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    transition: 0.2s ease;
}

.logout-btn:hover {
    opacity: 0.85;
}


/* =========================================================
   REMINDER CONFIRM BUTTON FIX
========================================================= */

#confirmReminder {
    position: relative !important;
    z-index: 99999 !important;
    pointer-events: auto !important;
    cursor: pointer !important;
}

#confirmReminder:disabled {
    cursor: not-allowed !important;
}


/* =========================================
   TIKTIKTICKET THEME SYSTEM
========================================= */

:root {
    --bg-color: #ffffff;
    --surface-color: #f5f5f7;
    --card-color: #ffffff;
    --text-color: #111111;
    --muted-text: #666666;
    --border-color: #e5e5e5;
    --input-bg: #ffffff;
    --header-bg: rgba(255, 255, 255, 0.95);
}

/* DARK THEME */
[data-theme="dark"] {
    --bg-color: #0b0b0f;
    --surface-color: #121218;
    --card-color: #18181f;
    --text-color: #ffffff;
    --muted-text: #a5a5ad;
    --border-color: #292933;
    --input-bg: #18181f;
    --header-bg: rgba(11, 11, 15, 0.95);
}

/* Apply theme */
body {
    background-color: var(--bg-color);
    color: var(--text-color);
    transition: background-color 0.3s ease, color 0.3s ease;
}

header {
    background-color: var(--header-bg);
}

.card,
.movie-card,
.event-card,
.booking-card {
    background-color: var(--card-color);
    color: var(--text-color);
}

input,
select,
textarea {
    background-color: var(--input-bg);
    color: var(--text-color);
    border-color: var(--border-color);
}

p,
.muted,
.secondary-text {
    color: var(--muted-text);
}

[data-theme="dark"] input::placeholder,
[data-theme="dark"] textarea::placeholder {
    color: #888892;
}


/* Theme Toggle Button */
.theme-toggle {
    width: 42px;
    height: 42px;
    border: 1px solid var(--border-color);
    border-radius: 50%;
    background: var(--card-color);
    color: var(--text-color);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all 0.3s ease;
}

.theme-toggle:hover {
    transform: scale(1.05);
}

/* =========================================
   LIGHT / DARK MODE - STREAM PAGE
   ========================================= */

:root {
    --page-bg: #ffffff;
    --text-primary: #111111;
    --text-secondary: #666666;
    --card-bg: #ffffff;
    --border-color: #e5e5e5;
}

body {
    background-color: var(--page-bg);
    color: var(--text-primary);
}

/* DARK MODE */
body.dark-mode {
    --page-bg: #121212;
    --text-primary: #ffffff;
    --text-secondary: #bdbdbd;
    --card-bg: #1e1e1e;
    --border-color: #333333;
}

/* Headings */
body.dark-mode h1,
body.dark-mode h2,
body.dark-mode h3,
body.dark-mode h4,
body.dark-mode h5,
body.dark-mode h6 {
    color: #ffffff;
}

/* Normal text */
body.dark-mode p,
body.dark-mode span,
body.dark-mode li,
body.dark-mode label {
    color: var(--text-secondary);
}

/* Main text */
body.dark-mode .stream-content,
body.dark-mode .stream-content p,
body.dark-mode .stream-content span {
    color: #ffffff;
}

/* Cards */
body.dark-mode .movie-card,
body.dark-mode .stream-card,
body.dark-mode .content-card,
body.dark-mode .category-card {
    background-color: var(--card-bg);
    color: #ffffff;
    border-color: var(--border-color);
}

/* Card headings */
body.dark-mode .movie-card h3,
body.dark-mode .stream-card h3,
body.dark-mode .content-card h3,
body.dark-mode .category-card h3 {
    color: #ffffff;
}

/* Card descriptions / metadata */
body.dark-mode .movie-card p,
body.dark-mode .stream-card p,
body.dark-mode .content-card p,
body.dark-mode .category-card p {
    color: #bdbdbd;
}

/* Links */
body.dark-mode a {
    color: #ffffff;
}

/* Buttons */
body.dark-mode button {
    color: #ffffff;
}

/* Footer */
body.dark-mode footer,
body.dark-mode .footer {
    background-color: #0d0d0d;
    color: #ffffff;
}

body.dark-mode footer a,
body.dark-mode footer p,
body.dark-mode footer span {
    color: #ffffff;
}