:root {
    --bg-core: #131419;
    --bg-glow: #1a1b22;
    --primary: #3b82f6;
    --primary-glow: rgba(59, 130, 246, 0.5);
    --text-white: #e2e8f0;
    --text-gray: #9ca3af;
    --shadow-light: rgba(255, 255, 255, 0.05);
    --shadow-dark: rgba(0, 0, 0, 0.6);
    --card-bg: #131419;
    --font-main: 'Outfit', sans-serif;

    /* Responsive Spacing */
    --section-pad-x: 20px;
    --section-pad-y: 60px;
    --header-height: 80px;
    --banner-height: 48px;
}

@media (max-width: 768px) {
    :root {
        --section-pad-x: 16px;
        --section-pad-y: 40px;
        --header-height: 70px;
        --banner-height: 90px;
    }
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--font-main);
}

body {
    background-color: var(--bg-core);
    background-image: none; /* Flat matte base for skeuomorphism */
    color: var(--text-white);
    overflow-x: hidden;
    min-height: 100vh;
    padding-top: var(--header-height);
}

body.has-kyc-banner {
    padding-top: calc(var(--header-height) + var(--banner-height));
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--section-pad-x);
}

/* Responsive Grid System */
.grid {
    display: grid;
    gap: 20px;
}

.grid-1 {
    grid-template-columns: 1fr;
}

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

.grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
    grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 1024px) {
    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }

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

@media (max-width: 640px) {

    .grid-4,
    .grid-3,
    .grid-2 {
        grid-template-columns: 1fr;
    }
}

/* Common Card & Section Style */
.card {
    background: var(--card-bg);
    border: none;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 8px 8px 16px var(--shadow-dark), -8px -8px 16px var(--shadow-light);
    transition: 0.3s ease;
}

@media (max-width: 640px) {
    .card {
        padding: 20px;
        border-radius: 16px;
    }
}

.section {
    padding: var(--section-pad-y) 0;
}

.gradient-text {
    background: linear-gradient(to right, #ffffff, #a5b4fc);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
}

.btn {
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    background: var(--bg-core);
    box-shadow: 5px 5px 10px var(--shadow-dark), -5px -5px 10px var(--shadow-light);
    color: var(--text-white);
    transition: all 0.2s ease;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}
.btn:hover {
    color: var(--primary);
}
.btn:active {
    box-shadow: inset 5px 5px 10px var(--shadow-dark), inset -5px -5px 10px var(--shadow-light) !important;
}

.btn-primary {
    background: #2563eb;
    color: white;
    box-shadow: 5px 5px 10px rgba(0,0,0,0.5), -5px -5px 10px rgba(255,255,255,0.1);
}

.btn-primary:active {
    box-shadow: inset 5px 5px 10px rgba(0,0,0,0.6), inset -5px -5px 10px rgba(255,255,255,0.1) !important;
}

.btn-outline {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    color: var(--text-gray);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-color: rgba(255, 255, 255, 0.2);
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 2000;
    transition: all 0.4s ease;
}

.navbar {
    width: 100%;
    background: transparent;
    border-bottom: none;
    padding: 15px 0;
    transition: all 0.4s ease;
}

.kyc-banner {
    width: 100%;
    padding: 10px 0;
    font-size: 14px;
    font-weight: 500;
    color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.kyc-not_submitted {
    background: #3b82f6;
}

.kyc-pending {
    background: #f59e0b;
}

.kyc-rejected {
    background: #ef4444;
}

.banner-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.banner-btn {
    padding: 4px 12px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    font-weight: 600;
}

.banner-btn:hover {
    background: rgba(0, 0, 0, 0.4);
}

@media (max-width: 768px) {
    .banner-content {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    .navbar {
        padding: 15px 0;
    }
}

.site-header.scrolled .navbar {
    background: var(--bg-core);
    backdrop-filter: blur(20px);
    border-bottom: none;
    padding: 15px 0;
    box-shadow: 0 10px 30px var(--shadow-dark);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 48px;
    width: auto;
    object-fit: contain;
}

.nav-links {
    display: flex;
    gap: 20px;
    align-items: center;
}

.nav-link {
    color: var(--text-gray);
    font-weight: 500;
    font-size: 15px;
}

.nav-link:hover {
    color: white;
}

.menu-toggle {
    display: none;
    background: transparent;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(5, 5, 5, 0.95);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 20px;
        border-bottom: 1px solid var(--glass-border);
        display: none;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links .btn {
        width: 100%;
        justify-content: center;
    }
}

.hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding-top: 100px;
    padding-bottom: 40px;
}

@media (max-width: 768px) {
    .hero {
        min-height: 60vh;
        padding-top: 140px;
    }
}

.has-kyc-banner .hero {
    padding-top: 60px; /* Reduced since body already adds 128px */
}

.hero-content {
    text-align: center;
    max-width: 900px;
    padding: 20px;
    position: relative;
    z-index: 1;
    width: 100%;
}

.hero h1 {
    font-size: clamp(36px, 8vw, 72px);
    line-height: 1.1;
    margin-bottom: 24px;
    font-weight: 700;
    background: linear-gradient(to bottom, #ffffff 0%, #a5b4fc 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -1px;
}

.hero p {
    font-size: clamp(16px, 4vw, 18px);
    color: var(--text-gray);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.search-box-wrapper {
    background: var(--bg-core);
    backdrop-filter: blur(12px);
    padding: 8px;
    border-radius: 60px;
    border: none;
    max-width: 650px;
    margin: 0 auto 40px;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
    box-shadow: inset 8px 8px 16px var(--shadow-dark), inset -8px -8px 16px var(--shadow-light);
}

.search-box-wrapper:focus-within {
    box-shadow: inset 12px 12px 24px var(--shadow-dark), inset -12px -12px 24px var(--shadow-light);
}

.search-box-wrapper input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 16px 24px;
    color: white;
    font-size: 18px;
    outline: none;
}

.search-box-wrapper input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.search-box-wrapper button {
    border-radius: 50px;
    padding: 14px 36px;
    font-size: 16px;
    font-weight: 600;
    white-space: nowrap;
}

@media (max-width: 640px) {
    .search-box-wrapper {
        flex-direction: column;
        border-radius: 24px;
        padding: 12px;
        gap: 12px;
        background: rgba(15, 20, 30, 0.85);
        backdrop-filter: blur(16px);
    }

    .search-box-wrapper input {
        width: 100%;
        text-align: center;
        padding: 12px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        font-size: 16px;
    }

    .search-box-wrapper button {
        width: 100%;
        padding: 14px;
    }
}

.hero-categories {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.category-pill {
    background: var(--bg-core);
    border: none;
    color: var(--text-white);
    padding: 10px 24px;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 500;
    transition: 0.3s;
    box-shadow: 5px 5px 10px var(--shadow-dark), -5px -5px 10px var(--shadow-light);
}

.category-pill:hover,
.category-pill.active {
    color: var(--primary);
    box-shadow: inset 5px 5px 10px var(--shadow-dark), inset -5px -5px 10px var(--shadow-light);
}

.section {
    padding: 80px 0;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: end;
    margin-bottom: 40px;
}

.section-title h2 {
    font-size: 32px;
    font-weight: 600;
    color: white;
    margin-bottom: 10px;
}

.section-title p {
    color: var(--text-gray);
    font-size: 16px;
}

.cities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.city-card {
    height: 180px;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.city-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.city-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.city-card:hover img {
    transform: scale(1.1);
}

.city-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    z-index: 2;
    text-align: left;
}

.city-info h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 4px;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.city-info p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.event-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

@media (max-width: 600px) {

    .cities-grid,
    .event-grid {
        grid-template-columns: 1fr;
    }

    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
}

.event-card {
    background: var(--card-bg);
    border: none;
    border-radius: 20px;
    overflow: hidden;
    transition: 0.4s;
    position: relative;
    box-shadow: 8px 8px 16px var(--shadow-dark), -8px -8px 16px var(--shadow-light);
}

.event-card:hover {
    transform: translateY(-5px);
    box-shadow: 12px 12px 25px var(--shadow-dark), -12px -12px 25px var(--shadow-light);
}

.card-image {
    height: 180px;
    position: relative;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.6s;
    opacity: 0.9;
}

.event-card:hover .card-image img {
    transform: scale(1.05);
    opacity: 1;
}

.price-tag {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    padding: 6px 14px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 13px;
    color: white;
}

.card-content {
    padding: 20px;
}

.event-date {
    font-size: 12px;
    color: var(--primary);
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 8px;
    letter-spacing: 1px;
}

.event-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    line-height: 1.4;
    color: white;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.event-location {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-gray);
    font-size: 14px;
}

/* Minimalist Premium Event Card */
.event-card-premium {
    background: var(--card-bg);
    border: none;
    border-radius: 28px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    cursor: pointer;
    box-shadow: 10px 10px 20px var(--shadow-dark), -10px -10px 20px var(--shadow-light);
}

.event-card-premium:hover {
    transform: translateY(-8px);
    box-shadow: 18px 18px 35px var(--shadow-dark), -18px -18px 35px var(--shadow-light);
}

.event-card-image {
    height: 240px;
    position: relative;
    overflow: hidden;
}

.event-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.23, 1, 0.32, 1);
}

.event-card-premium:hover .event-card-image img {
    transform: scale(1.08);
}

.event-card-category {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(5, 5, 5, 0.7);
    backdrop-filter: blur(12px);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.65rem;
    font-weight: 800;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.15);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    z-index: 2;
}

.event-card-rating {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(5, 5, 5, 0.7);
    backdrop-filter: blur(12px);
    padding: 6px 12px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    color: #ffc107;
    border: 1px solid rgba(255, 255, 255, 0.15);
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 4px;
}

.event-card-details {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.event-card-title {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #fff;
    line-height: 1.35;
    letter-spacing: -0.01em;
}

.event-card-meta {
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: auto;
}

.event-card-meta span {
    display: flex;
    align-items: center;
    gap: 10px;
}

.event-card-meta i {
    color: var(--primary);
    opacity: 0.8;
}

/* Movie Card Specializations */
.movie-card {
    min-height: 480px; /* Ensure consistent height even with less meta */
    background: rgba(30, 30, 35, 0.45) !important;
}

.movie-title {
    font-size: 1.4rem !important;
    margin-bottom: 20px !important;
    background: linear-gradient(to bottom, #ffffff, #e2e8f0);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 3.6rem; /* Support 2 lines */
}

.movie-meta-badge {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 6px 14px;
    border-radius: 12px;
    font-weight: 500;
    color: #e2e8e0;
    font-size: 0.8rem;
    display: inline-flex !important;
    align-items: center;
    gap: 8px;
    margin-bottom: 5px;
}

.movie-meta-badge i {
    color: #f59e0b !important; /* Gold star/icon */
}

.event-card-actions {
    padding: 0 24px 24px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

.card-btn-primary {
    width: 100%;
    padding: 14px;
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: 16px;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: 0.3s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.card-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.5);
    filter: brightness(1.1);
}

.card-btn-secondary {
    width: 100%;
    padding: 12px;
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: 0.3s;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.card-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.2);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    text-align: center;
}

.feature-box {
    padding: 24px;
    background: rgba(255, 255, 255, 0.015);
    border-radius: 20px;
    border: 1px solid transparent;
    transition: 0.3s;
    height: 100%;
}

.feature-icon {
    font-size: 28px;
    margin-bottom: 16px;
    color: var(--primary);
    background: rgba(59, 130, 246, 0.1);
    width: 60px;
    height: 60px;
    line-height: 60px;
    border-radius: 50%;
    margin-left: auto;
    margin-right: auto;
}

.feature-title {
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 10px;
    color: white;
}

.feature-desc {
    color: var(--text-gray);
    line-height: 1.6;
    font-size: 14px;
}

footer {
    border-top: 1px solid var(--glass-border);
    padding: 80px 0 30px;
    background: #020202;
    margin-top: 40px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

@media (max-width: 768px) {
    .footer-content {
        text-align: center;
    }
}

.footer-brand p {
    color: var(--text-gray);
    margin-top: 20px;
    line-height: 1.6;
    max-width: 300px;
}

.footer-col h4 {
    margin-bottom: 24px;
    font-size: 16px;
    color: white;
    font-weight: 600;
}

.footer-col ul li {
    margin-bottom: 14px;
}

.footer-col ul li a {
    color: var(--text-gray);
    font-size: 14px;
}

.footer-col ul li a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--glass-border);
    color: rgba(255, 255, 255, 0.2);
    font-size: 13px;
}

.badge {
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.badge-warning {
    background: rgba(255, 193, 7, 0.15);
    color: #ffc107;
    border: 1px solid rgba(255, 193, 7, 0.3);
}

.badge-success {
    background: rgba(46, 204, 113, 0.15);
    color: #2ecc71;
    border: 1px solid rgba(46, 204, 113, 0.3);
}

.badge-danger {
    background: rgba(231, 76, 60, 0.15);
    color: #e74c3c;
    border: 1px solid rgba(231, 76, 60, 0.3);
}

/* UI Alignment Utilities */
.meta-grid {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.meta-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    color: var(--text-gray);
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.meta-item:last-child {
    border-bottom: none;
}

.meta-label {
    font-weight: 500;
    color: var(--text-gray);
}

.meta-value {
    color: var(--text-white);
    font-weight: 500;
    text-align: right;
}

.meta-value.highlight {
    color: var(--primary);
    font-weight: 700;
}

/* Glassmorphism Card Hover */
.listing-card:hover {
    background: rgba(255, 255, 255, 0.05) !important;
    border-color: var(--primary-glow) !important;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Premium Single Event & Listings */
.event-hero-premium {
    min-height: 60vh;
    padding: 160px 0 100px;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    position: relative;
    display: flex;
    align-items: center;
}

.hero-inner {
    max-width: 900px;
    position: relative;
    z-index: 2;
}

.premium-badge {
    background: var(--primary);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 25px;
    box-shadow: 0 10px 20px rgba(59, 130, 246, 0.3);
}

.hero-title-main {
    font-size: clamp(40px, 8vw, 64px);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 30px;
    background: linear-gradient(to bottom, #fff, #cbd5e1);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-info-bar {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.info-item i {
    font-size: 1.5rem;
    color: var(--primary);
}

.info-text {
    display: flex;
    flex-direction: column;
}

.info-label {
    font-size: 0.75rem;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.info-value {
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
}

.hero-cta-group {
    display: flex;
    gap: 20px;
}

.btn-xxl {
    padding: 18px 45px;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.btn-glass {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
}

.btn-glass:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
}

.section-premium {
    padding: 80px 0;
    background: #080808;
}

.event-grid-layout {
    display: grid;
    grid-template-columns: 1.8fr 1fr;
    gap: 50px;
}

@media (max-width: 1024px) {
    .event-grid-layout {
        grid-template-columns: 1fr;
    }

    .hero-info-bar {
        gap: 25px;
    }
}

.section-header-compact {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 30px;
}

.section-heading {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.section-subheading {
    color: var(--text-gray);
}

.count-badge {
    background: rgba(16, 185, 129, 0.1);
    color: #10B981;
    padding: 6px 15px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
}

.tickets-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.loading-state {
    text-align: center;
    padding: 100px 0;
    color: var(--text-gray);
}

.loader-ring {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(255, 255, 255, 0.05);
    border-top-color: var(--primary);
    border-radius: 50%;
    margin: 0 auto 20px;
    animation: spin-premium 1s infinite linear;
}

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

.details-card-sticky {
    position: sticky;
    top: 100px;
}

.card-inner {
    background: #121212;
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 35px;
}

.card-title {
    font-size: 1.5rem;
    margin-bottom: 25px;
    color: #fff;
}

.event-description {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 35px;
    font-size: 0.95rem;
}

.sell-cta-box {
    background: rgba(59, 130, 246, 0.05);
    border: 1px dashed rgba(59, 130, 246, 0.3);
    border-radius: 20px;
    padding: 25px;
    text-align: center;
    margin-bottom: 25px;
}

.sell-cta-box h4 {
    margin-bottom: 10px;
    color: #fff;
}

.sell-cta-box p {
    font-size: 0.85rem;
    color: var(--text-gray);
    margin-bottom: 20px;
}

.btn-primary-outline {
    background: transparent;
    border: 1px solid var(--primary);
    color: var(--primary);
    width: 100%;
    justify-content: center;
}

.btn-primary-outline:hover {
    background: var(--primary);
    color: #fff;
}

.guarantee-box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 0.8rem;
    color: #10B981;
    font-weight: 600;
}
/* Premium UI Enhancements */
@keyframes ta-pulse {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(59, 130, 246, 0.7); }
    70% { transform: scale(1.03); box-shadow: 0 0 0 10px rgba(59, 130, 246, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(59, 130, 246, 0); }
}

.btn-pulse {
    animation: ta-pulse 2s infinite;
}

.ta-urgency-tag {
    position: absolute;
    top: -12px;
    right: -12px;
    padding: 6px 14px;
    border-radius: 10px;
    font-size: 0.7rem;
    font-weight: 800;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    box-shadow: 0 6px 15px rgba(0,0,0,0.4);
    z-index: 10;
    transform: rotate(4deg);
    transition: 0.3s;
}

.ta-urgency-tag:hover {
    transform: rotate(0deg) scale(1.1);
}

.ta-urgency-tag.fast-selling { 
    background: linear-gradient(135deg, #ef4444 0%, #f97316 100%); 
    border: 1px solid rgba(255,255,255,0.2);
}
.ta-urgency-tag.few-left { 
    background: linear-gradient(135deg, #8b5cf6 0%, #d946ef 100%); 
    border: 1px solid rgba(255,255,255,0.2);
}

