/* ===== RESET & BASE ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #d4a017;
    --primary-dark: #b8860b;
    --primary-light: #fce588;
    --secondary: #2d3748;
    --accent: #667eea;
    --bg: #ffffff;
    --bg-light: #f7fafc;
    --bg-dark: #1a202c;
    --text: #2d3748;
    --text-light: #718096;
    --text-muted: #a0aec0;
    --border: #e2e8f0;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 30px rgba(0,0,0,0.12);
    --shadow-xl: 0 20px 40px rgba(0,0,0,0.15);
    --radius-sm: 6px;
    --radius: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --transition: 0.2s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== TOP BAR ===== */
.top-bar {
    background: var(--bg-dark);
    color: #fff;
    font-size: 13px;
    padding: 6px 0;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left {
    display: flex;
    gap: 20px;
}

.top-link {
    color: #cbd5e0;
    transition: color var(--transition);
}

.top-link:hover {
    color: #fff;
}

.lang-selector {
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    color: #cbd5e0;
}

.lang-selector:hover {
    color: #fff;
}

.flag-icon {
    width: 18px;
    height: 12px;
    border-radius: 2px;
}

.lang-selector i {
    font-size: 10px;
}

/* ===== MAIN HEADER ===== */
.main-header {
    background: #fff;
    border-bottom: 1px solid var(--border);
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow-sm);
}

.main-header .container {
    display: flex;
    align-items: center;
    height: 64px;
    gap: 32px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.logo-icon {
    font-size: 28px;
}

.logo-text {
    font-size: 24px;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: -0.5px;
}

.main-nav {
    display: flex;
    gap: 4px;
}

.nav-link {
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 15px;
    color: var(--text-light);
    transition: all var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
    background: rgba(212, 160, 23, 0.06);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-left: auto;
}

.search-bar {
    display: flex;
    align-items: center;
    background: var(--bg-light);
    border: 1px solid var(--border);
    border-radius: 100px;
    padding: 8px 16px;
    gap: 8px;
    width: 280px;
    transition: all var(--transition);
}

.search-bar:focus-within {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(212, 160, 23, 0.1);
}

.search-bar i {
    color: var(--text-muted);
    font-size: 14px;
}

.search-bar input {
    border: none;
    background: none;
    outline: none;
    font-size: 14px;
    width: 100%;
    font-family: inherit;
    color: var(--text);
}

.search-bar input::placeholder {
    color: var(--text-muted);
}

.btn-login {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    border: 2px solid var(--primary);
    border-radius: 100px;
    background: none;
    color: var(--primary);
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all var(--transition);
    font-family: inherit;
}

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

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 22px;
    color: var(--text);
    cursor: pointer;
    padding: 8px;
    margin-left: auto;
}

/* ===== MOBILE MENU ===== */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    z-index: 200;
    padding: 20px;
    display: none;
    flex-direction: column;
}

.mobile-menu.open {
    display: flex;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.mobile-menu-header button {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--text);
}

.mobile-search {
    display: flex;
    align-items: center;
    background: var(--bg-light);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 12px 16px;
    gap: 10px;
    margin-bottom: 24px;
}

.mobile-search input {
    border: none;
    background: none;
    outline: none;
    font-size: 16px;
    width: 100%;
    font-family: inherit;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
}

.mobile-nav a {
    padding: 14px 0;
    font-size: 18px;
    font-weight: 600;
    border-bottom: 1px solid var(--border);
    color: var(--text);
}

.btn-login-mobile {
    margin-top: 24px;
    padding: 14px;
    border: 2px solid var(--primary);
    border-radius: var(--radius);
    background: none;
    color: var(--primary);
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    font-family: inherit;
}

/* ===== HERO CAROUSEL ===== */
.hero-carousel {
    position: relative;
    height: 420px;
    overflow: hidden;
}

.carousel-track {
    display: flex;
    height: 100%;
    transition: transform 0.5s ease;
}

.carousel-slide {
    min-width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    position: relative;
}

.carousel-slide::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.25);
}

.slide-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    padding: 20px;
}

.slide-tag {
    display: inline-block;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.slide-content h1 {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 12px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.slide-content p {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 24px;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    border: none;
    color: #fff;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    transition: all var(--transition);
    z-index: 3;
}

.carousel-btn:hover {
    background: rgba(255,255,255,0.35);
}

.carousel-btn.prev { left: 20px; }
.carousel-btn.next { right: 20px; }

.carousel-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 3;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    cursor: pointer;
    transition: all var(--transition);
}

.carousel-dot.active {
    background: #fff;
    width: 28px;
    border-radius: 5px;
}

/* ===== BUTTONS ===== */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: 100px;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    transition: all var(--transition);
    font-family: inherit;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

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

.btn-primary.btn-white:hover {
    background: #f7fafc;
}

.btn-primary.btn-full {
    width: 100%;
    justify-content: center;
}

.btn-primary.btn-lg {
    padding: 14px 36px;
    font-size: 16px;
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    background: none;
    border: 2px solid var(--border);
    color: var(--text);
    border-radius: 100px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all var(--transition);
    font-family: inherit;
}

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
}

/* ===== GENRE PILLS ===== */
.genre-section {
    padding: 40px 0;
    background: #fff;
}

.genre-pills {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.genre-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    background: var(--bg-light);
    border: 1px solid var(--border);
    border-radius: 100px;
    font-weight: 600;
    font-size: 14px;
    color: var(--text);
    transition: all var(--transition);
}

.genre-pill:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(212, 160, 23, 0.04);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.genre-pill i {
    font-size: 15px;
}

/* ===== SECTIONS ===== */
.section-title {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 4px;
}

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

.see-all {
    color: var(--primary);
    font-weight: 600;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: gap var(--transition);
}

.see-all:hover {
    gap: 10px;
}

.events-section {
    padding: 48px 0;
}

.bg-light {
    background: var(--bg-light);
}

/* ===== EVENT CARDS ===== */
.events-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.event-card {
    background: #fff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    display: block;
}

.event-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.event-card-image {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.event-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.event-card-image .placeholder-img {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: rgba(255,255,255,0.5);
}

.event-card-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0) 50%, rgba(0,0,0,0.35) 100%);
    pointer-events: none;
}

.event-card-date {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #fff;
    border-radius: var(--radius-sm);
    padding: 6px 10px;
    text-align: center;
    box-shadow: var(--shadow-md);
    line-height: 1.1;
}

.event-card-date .month {
    display: block;
    font-size: 11px;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.event-card-date .day {
    display: block;
    font-size: 20px;
    font-weight: 800;
    color: var(--text);
}

.event-card-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--primary);
    color: #fff;
    padding: 4px 10px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
}

.event-card-body {
    padding: 16px;
}

.event-card-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.event-card-venue {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 12px;
}

.event-card-venue i {
    color: var(--text-muted);
    font-size: 12px;
}

.event-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 12px;
    border-top: 1px solid var(--border);
}

.event-card-price {
    font-size: 16px;
    font-weight: 800;
    color: var(--primary);
}

.event-card-price span {
    font-size: 12px;
    font-weight: 500;
    color: var(--text-muted);
}

.event-card-cta {
    font-size: 13px;
    font-weight: 600;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 4px;
}

/* ===== PROMOTER CTA ===== */
.promoter-cta {
    padding: 64px 0;
    background: linear-gradient(135deg, var(--primary) 0%, #c53030 100%);
    color: #fff;
}

.cta-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.cta-text {
    max-width: 560px;
}

.cta-text h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 12px;
}

.cta-text p {
    font-size: 17px;
    opacity: 0.9;
    margin-bottom: 24px;
    line-height: 1.6;
}

.cta-image {
    font-size: 120px;
    opacity: 0.2;
}

/* ===== FOOTER ===== */
.main-footer {
    background: var(--bg-dark);
    color: #cbd5e0;
    padding: 56px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.footer-logo .logo-text {
    color: #fff;
}

.footer-desc {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #a0aec0;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #cbd5e0;
    transition: all var(--transition);
}

.social-links a:hover {
    background: var(--primary);
    color: #fff;
}

.footer-col h4 {
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 16px;
}

.footer-col a {
    display: block;
    font-size: 14px;
    color: #a0aec0;
    padding: 4px 0;
    transition: color var(--transition);
}

.footer-col a:hover {
    color: #fff;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: #718096;
}

.footer-bottom-links {
    display: flex;
    gap: 24px;
}

.footer-bottom-links a {
    color: #718096;
    transition: color var(--transition);
}

.footer-bottom-links a:hover {
    color: #fff;
}

.footer-credit {
    text-align: center;
    padding: 12px 0;
    font-size: 11px;
}

.footer-credit a {
    color: #4a5568;
    transition: color var(--transition);
}

.footer-credit a:hover {
    color: #718096;
}

/* ===== LOGIN MODAL ===== */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(4px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 300;
}

.modal-overlay.open {
    display: flex;
}

.modal {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 36px;
    width: 100%;
    max-width: 420px;
    position: relative;
    box-shadow: var(--shadow-xl);
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: none;
    border: none;
    font-size: 18px;
    color: var(--text-muted);
    cursor: pointer;
}

.modal-header {
    text-align: center;
    margin-bottom: 28px;
}

.modal-header .logo-icon {
    font-size: 40px;
    display: block;
    margin-bottom: 12px;
}

.modal-header h2 {
    font-size: 22px;
    font-weight: 700;
}

.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--text);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 15px;
    font-family: inherit;
    color: var(--text);
    transition: all var(--transition);
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(212, 160, 23, 0.1);
}

.form-footer {
    text-align: center;
    margin-top: 16px;
    font-size: 14px;
    color: var(--text-light);
}

.form-footer a {
    color: var(--primary);
    font-weight: 600;
}

.social-login {
    margin-top: 24px;
    text-align: center;
}

.social-login p {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.social-btns {
    display: flex;
    gap: 12px;
}

.btn-social {
    flex: 1;
    padding: 10px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    background: none;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: inherit;
    color: var(--text);
    transition: all var(--transition);
}

.btn-social:hover {
    border-color: var(--text-muted);
    background: var(--bg-light);
}

/* ===== EVENTS PAGE ===== */
.page-header {
    background: var(--bg-light);
    border-bottom: 1px solid var(--border);
    padding: 24px 0;
}

.breadcrumbs {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.breadcrumbs a {
    color: var(--text-light);
}

.breadcrumbs a:hover {
    color: var(--primary);
}

.page-title {
    font-size: 28px;
    font-weight: 800;
}

.filters-bar {
    padding: 20px 0;
    border-bottom: 1px solid var(--border);
    background: #fff;
    position: sticky;
    top: 64px;
    z-index: 50;
}

.filters-row {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-wrap: wrap;
}

.filter-select {
    padding: 9px 14px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-family: inherit;
    color: var(--text);
    background: #fff;
    cursor: pointer;
    min-width: 160px;
}

.filter-select:focus {
    outline: none;
    border-color: var(--primary);
}

.filter-search {
    display: flex;
    align-items: center;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 9px 14px;
    gap: 8px;
    flex: 1;
    max-width: 320px;
}

.filter-search input {
    border: none;
    background: none;
    outline: none;
    font-size: 14px;
    width: 100%;
    font-family: inherit;
}

.date-quick-filters {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.date-pill {
    padding: 6px 14px;
    border: 1px solid var(--border);
    border-radius: 100px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-light);
    cursor: pointer;
    transition: all var(--transition);
    background: #fff;
}

.date-pill:hover,
.date-pill.active {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(212, 160, 23, 0.04);
}

.events-list-section {
    padding: 32px 0 64px;
}

.date-group {
    margin-bottom: 32px;
}

.date-group-header {
    font-size: 16px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--primary);
    display: inline-block;
}

.events-list-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.results-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    font-size: 14px;
    color: var(--text-light);
}

.sort-select {
    padding: 6px 12px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 13px;
    font-family: inherit;
    color: var(--text);
    background: #fff;
}

.load-more {
    text-align: center;
    margin-top: 40px;
}

/* ===== EVENT DETAIL PAGE ===== */
.event-hero {
    position: relative;
    height: 380px;
    overflow: hidden;
}

.event-hero-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.event-hero-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.2) 50%, rgba(0,0,0,0.1) 100%);
}

.event-hero-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 80px;
    color: rgba(255,255,255,0.3);
}

.event-hero-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px 0;
    color: #fff;
}

.event-hero-content .container {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.event-hero-info h1 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 8px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.event-hero-meta {
    display: flex;
    gap: 20px;
    font-size: 15px;
    opacity: 0.9;
}

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

.event-actions-top {
    display: flex;
    gap: 10px;
}

.btn-action {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 100px;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition);
    font-family: inherit;
}

.btn-action:hover {
    background: rgba(255,255,255,0.25);
}

.event-content {
    padding: 40px 0 64px;
}

.event-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 40px;
    align-items: start;
}

.event-main h2 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 16px;
}

.event-description {
    margin-bottom: 40px;
}

.event-description p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 12px;
}

.event-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 40px;
}

.info-card {
    padding: 20px;
    background: var(--bg-light);
    border-radius: var(--radius);
    border: 1px solid var(--border);
}

.info-card .label {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
}

.info-card .value {
    font-size: 15px;
    font-weight: 600;
    color: var(--text);
}

.info-card .value a {
    color: var(--primary);
}

.venue-map {
    background: var(--bg-light);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    height: 240px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 40px;
    overflow: hidden;
}

.venue-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* ===== TICKET SIDEBAR ===== */
.ticket-sidebar {
    position: sticky;
    top: 84px;
}

.ticket-box {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    overflow: hidden;
}

.ticket-box-header {
    background: var(--bg-dark);
    color: #fff;
    padding: 20px 24px;
    text-align: center;
}

.ticket-box-header h3 {
    font-size: 18px;
    font-weight: 700;
}

.ticket-box-body {
    padding: 24px;
}

.ticket-type {
    padding: 16px 0;
    border-bottom: 1px solid var(--border);
}

.ticket-type:last-child {
    border-bottom: none;
}

.ticket-type-name {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 4px;
}

.ticket-type-price {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
}

.price-current {
    font-size: 20px;
    font-weight: 800;
    color: var(--primary);
}

.price-original {
    font-size: 14px;
    color: var(--text-muted);
    text-decoration: line-through;
}

.price-fees {
    font-size: 12px;
    color: var(--text-muted);
}

.qty-selector {
    display: flex;
    align-items: center;
    gap: 0;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    overflow: hidden;
    width: fit-content;
}

.qty-btn {
    width: 36px;
    height: 36px;
    border: none;
    background: var(--bg-light);
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    color: var(--text);
    transition: background var(--transition);
}

.qty-btn:hover {
    background: var(--border);
}

.qty-value {
    width: 44px;
    text-align: center;
    font-size: 15px;
    font-weight: 700;
    border-left: 1px solid var(--border);
    border-right: 1px solid var(--border);
    line-height: 36px;
}

.ticket-disclaimer {
    font-size: 11px;
    color: var(--text-muted);
    line-height: 1.5;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
}

.ticket-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px;
    background: var(--bg-light);
    border-top: 1px solid var(--border);
    font-size: 16px;
    font-weight: 700;
}

.ticket-total .total-amount {
    font-size: 22px;
    color: var(--primary);
}

.btn-buy {
    display: block;
    width: 100%;
    padding: 16px;
    background: var(--primary);
    color: #fff;
    border: none;
    font-size: 17px;
    font-weight: 700;
    cursor: pointer;
    transition: background var(--transition);
    font-family: inherit;
}

.btn-buy:hover {
    background: var(--primary-dark);
}

.btn-buy:disabled {
    background: var(--text-muted);
    cursor: not-allowed;
}

.contact-info {
    text-align: center;
    padding: 16px 24px;
    background: var(--bg-light);
    font-size: 13px;
    color: var(--text-light);
}

.contact-info strong {
    display: block;
    font-size: 16px;
    color: var(--text);
    margin-top: 4px;
}

/* Related events on detail page */
.related-events {
    padding: 48px 0;
    background: var(--bg-light);
}

/* ===== GOOGLE SIGN-IN BUTTON ===== */
.btn-google-signin {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    padding: 12px 20px;
    background: #fff;
    border: 2px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 15px;
    font-weight: 600;
    color: var(--text);
    cursor: pointer;
    transition: all var(--transition);
    font-family: inherit;
    margin-bottom: 20px;
}

.btn-google-signin:hover {
    border-color: #4285F4;
    background: #f8f9ff;
    box-shadow: var(--shadow-sm);
}

.btn-google-signin svg {
    flex-shrink: 0;
}

.divider {
    position: relative;
    text-align: center;
    margin: 20px 0;
}

.divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--border);
}

.divider span {
    position: relative;
    background: #fff;
    padding: 0 16px;
    font-size: 13px;
    color: var(--text-muted);
}

.form-links {
    display: flex;
    justify-content: space-between;
    margin-top: 16px;
    font-size: 13px;
}

.form-links a {
    color: var(--primary);
    font-weight: 500;
}

.form-links a:hover {
    text-decoration: underline;
}

/* ===== USER DROPDOWN ===== */
.user-dropdown {
    display: none;
    position: fixed;
    top: 60px;
    right: 20px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    padding: 8px;
    min-width: 200px;
    z-index: 150;
}

.user-dropdown.open {
    display: block;
}

.user-dropdown a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text);
    border-radius: var(--radius-sm);
    transition: background var(--transition);
}

.user-dropdown a:hover {
    background: var(--bg-light);
    color: var(--primary);
}

.user-dropdown hr {
    border: none;
    border-top: 1px solid var(--border);
    margin: 4px 0;
}

.user-dropdown i {
    width: 18px;
    text-align: center;
    color: var(--text-muted);
}

.user-photo {
    vertical-align: middle;
    margin-right: 2px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .events-grid {
        grid-template-columns: repeat(3, 1fr);
    }

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

    .ticket-sidebar {
        position: static;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
}

@media (max-width: 768px) {
    .top-bar { display: none; }

    .main-header .container { gap: 12px; }

    .main-nav { display: none; }
    .header-actions { display: none; }
    .mobile-menu-btn { display: block; }

    .hero-carousel { height: 320px; }

    .slide-content h1 { font-size: 28px; }
    .slide-content p { font-size: 15px; }

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

    .events-list-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .genre-pills { justify-content: flex-start; overflow-x: auto; flex-wrap: nowrap; padding-bottom: 8px; }
    .genre-pill { flex-shrink: 0; }

    .cta-content { flex-direction: column; text-align: center; }
    .cta-image { display: none; }

    .footer-grid { grid-template-columns: 1fr; gap: 28px; }
    .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }

    .section-title { font-size: 20px; }
    .page-title { font-size: 22px; }

    .event-hero { height: 280px; }
    .event-hero-info h1 { font-size: 26px; }
    .event-hero-meta { flex-direction: column; gap: 6px; }
    .event-hero-content .container { flex-direction: column; align-items: flex-start; gap: 16px; }

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

    .filters-row { flex-direction: column; align-items: stretch; }
    .filter-search { max-width: none; }

    .carousel-btn { width: 38px; height: 38px; font-size: 14px; }
}

@media (max-width: 480px) {
    .events-grid {
        grid-template-columns: 1fr;
    }

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

    .hero-carousel { height: 280px; }
    .slide-content h1 { font-size: 24px; }

    .modal { margin: 16px; padding: 24px; }
}
