:root {
    --bg-color: #0b0b14;
    --card-bg: #131326;
    --card-border: #21213f;
    --pink-accent: #e91e63;
    --pink-hover: #c2185b;
    --pink-glow: rgba(233, 30, 99, 0.4);
    --blue-accent: #1e88e5;
    --blue-glow: rgba(30, 136, 229, 0.4);
    --text-main: #ffffff;
    --text-sub: #a0a0c0;
    --success: #4caf50;
    --warning: #ffc107;
    --danger: #f44336;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

body {
    background-color: var(--bg-color);
    color: var(--text-main);
    padding-bottom: 70px;
    font-size: 14px;
}

/* Header */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 4%;
    background: rgba(11, 11, 20, 0.95);
    backdrop-filter: blur(14px);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    min-height: 60px;
    gap: 12px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 18px;
    font-weight: 800;
    color: #fff;
    text-transform: uppercase;
    cursor: pointer;
    flex-shrink: 0;
}
.logo i {
    color: var(--pink-accent);
}

/* Navigation */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 24px;
    list-style: none;
    flex: 1;
}
.nav-menu a {
    color: var(--text-sub);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    padding: 5px 0;
    position: relative;
    transition: color 0.3s;
    white-space: nowrap;
}
.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background: var(--pink-accent);
    transition: width 0.3s;
}
.nav-menu a:hover,
.nav-menu a.active {
    color: #fff;
}
.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 4.5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 4px 2px;
}
.hamburger span {
    display: block;
    width: 26px;
    height: 2.5px;
    background: #d0d0e0;
    border-radius: 4px;
    transition: all 0.3s;
}

.nav-center {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.search-wrapper {
    display: flex;
    align-items: center;
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--card-border);
    border-radius: 40px;
    padding: 4px 6px 4px 12px;
    transition: all 0.3s;
    min-width: 40px;
    max-width: 200px;
    cursor: pointer;
}
.search-wrapper:hover {
    border-color: rgba(255,255,255,0.2);
}
.search-wrapper.active {
    border-color: var(--pink-accent);
    background: rgba(255,255,255,0.08);
    box-shadow: 0 0 16px var(--pink-glow);
    min-width: 150px;
}
.search-wrapper input {
    background: transparent;
    border: none;
    outline: none;
    color: #fff;
    font-size: 13px;
    padding: 6px 0;
    width: 0;
    opacity: 0;
    transition: all 0.3s;
}
.search-wrapper.active input {
    width: 100%;
    opacity: 1;
    padding-right: 4px;
}
.search-wrapper input::placeholder {
    color: var(--text-sub);
}
.search-wrapper .search-btn {
    background: transparent;
    border: none;
    color: var(--text-sub);
    font-size: 16px;
    padding: 4px 6px;
    cursor: pointer;
    transition: color 0.3s;
}
.search-wrapper .search-btn:hover {
    color: #fff;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.balance-display {
    color: var(--text-sub);
    font-size: 13px;
    font-weight: 600;
    background: rgba(255,255,255,0.05);
    padding: 4px 12px;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.06);
}
.balance-display i {
    color: var(--pink-accent);
}

.avatar-small {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
}

.btn-login {
    color: #fff;
    text-decoration: none;
    padding: 6px 16px;
    border-radius: 20px;
    background: var(--pink-accent);
    font-weight: 600;
    font-size: 13px;
    transition: all 0.3s;
}
.btn-login:hover {
    background: var(--pink-hover);
    transform: scale(1.05);
}

/* Mobile Navigation */
.mobile-nav {
    display: none;
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    background: var(--bg-color);
    border-bottom: 1px solid var(--card-border);
    padding: 16px;
    z-index: 999;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}
.mobile-nav.show {
    max-height: 500px;
}
.mobile-nav ul {
    list-style: none;
}
.mobile-nav ul li a {
    display: block;
    padding: 12px 16px;
    color: var(--text-sub);
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s;
    font-size: 15px;
}
.mobile-nav ul li a i {
    margin-right: 12px;
    width: 20px;
}
.mobile-nav ul li a:hover,
.mobile-nav ul li a.active {
    background: rgba(255,255,255,0.05);
    color: #fff;
}

/* Bottom Navigation */
.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: rgba(11, 11, 20, 0.95);
    backdrop-filter: blur(14px);
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 6px 8px 10px 8px;
    display: none;
}
.bottom-nav .nav-items {
    display: flex;
    align-items: center;
    justify-content: space-around;
    max-width: 500px;
    margin: 0 auto;
}
.bottom-nav a {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 4px 0;
    color: var(--text-sub);
    text-decoration: none;
    transition: color 0.3s;
    font-size: 12px;
    gap: 2px;
    flex: 1;
    text-align: center;
}
.bottom-nav a i {
    font-size: 20px;
}
.bottom-nav a span {
    font-size: 10px;
    font-weight: 500;
}
.bottom-nav a:hover,
.bottom-nav a.active {
    color: #fff;
}
.bottom-nav a.active i {
    color: var(--pink-accent);
}

/* Hero Slider */
.hero-slider {
    position: relative;
    height: 400px;
    overflow: hidden;
}
.slider-container {
    width: 100%;
    height: 100%;
    position: relative;
}
.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 0.8s ease;
}
.slide.active {
    opacity: 1;
}
.slide::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0,0,0,0.7) 0%, transparent 100%);
}
.slide-content {
    position: absolute;
    bottom: 40px;
    left: 40px;
    z-index: 2;
    max-width: 60%;
}
.slide-content h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 12px;
    color: #fff;
    text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}
.btn-slide {
    display: inline-block;
    padding: 10px 28px;
    background: var(--pink-accent);
    color: #fff;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s;
}
.btn-slide:hover {
    background: var(--pink-hover);
    transform: scale(1.05);
}
.slider-controls {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 3;
}
.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    cursor: pointer;
    transition: all 0.3s;
}
.dot.active {
    background: var(--pink-accent);
    width: 24px;
    border-radius: 5px;
}

/* Features */
.features-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    padding: 16px 4%;
    margin: 0 4%;
    background: var(--card-bg);
    border-radius: 16px;
    border: 1px solid var(--card-border);
    margin-top: -30px;
    position: relative;
    z-index: 2;
}
.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 12px;
    border-radius: 12px;
    transition: background 0.3s;
}
.feature-item:hover {
    background: rgba(255,255,255,0.03);
}
.feature-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(233,30,99,0.15), rgba(30,136,229,0.15));
    border: 1px solid rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: var(--pink-accent);
    flex-shrink: 0;
}
.feature-text h4 {
    font-size: 13px;
    font-weight: 700;
}
.feature-text p {
    font-size: 11px;
    color: var(--text-sub);
}

/* Section */
.section-container {
    padding: 20px 4% 30px 4%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}
.section-title {
    font-size: 17px;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 8px;
}
.see-all {
    color: var(--text-sub);
    font-size: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}
.see-all:hover {
    color: #fff;
}

/* Cards */
.cards-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.concert-card, .movie-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 14px;
    overflow: hidden;
    transition: all 0.3s;
}
.concert-card:hover, .movie-card:hover {
    transform: translateY(-4px);
    border-color: rgba(233,30,99,0.4);
    box-shadow: 0 8px 20px rgba(233,30,99,0.15);
}
.img-wrapper {
    position: relative;
    overflow: hidden;
    height: 130px;
}
.img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}
.concert-card:hover .img-wrapper img,
.movie-card:hover .img-wrapper img {
    transform: scale(1.06);
}
.img-wrapper .badge {
    position: absolute;
    top: 8px;
    left: 8px;
    padding: 3px 12px;
    border-radius: 12px;
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.concert-info, .movie-info {
    padding: 12px;
}
.concert-info h3, .movie-info h3 {
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 6px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.concert-meta {
    font-size: 10px;
    color: var(--text-sub);
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    gap: 6px;
}
.concert-meta i {
    width: 12px;
    font-size: 10px;
}
.concert-price {
    margin-top: 10px;
    font-size: 14px;
    font-weight: 800;
    color: var(--pink-accent);
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.btn-book-small {
    padding: 4px 14px;
    background: var(--pink-accent);
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s;
}
.btn-book-small:hover {
    background: var(--pink-hover);
    transform: scale(1.05);
}

.movie-info {
    text-align: center;
}
.movie-meta {
    color: var(--text-sub);
    font-size: 11px;
    margin-bottom: 4px;
}
.movie-price {
    color: var(--blue-accent);
    font-weight: 700;
    font-size: 14px;
    margin: 6px 0;
}
.btn-book {
    width: 100%;
    padding: 8px 0;
    background: linear-gradient(135deg, var(--blue-accent), #42a5f5);
    border: none;
    border-radius: 10px;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
    box-shadow: 0 4px 10px var(--blue-glow);
}
.btn-book:hover {
    box-shadow: 0 6px 16px rgba(30,136,229,0.5);
    transform: translateY(-2px);
}

/* Promo */
.promo-section {
    padding: 0 4% 30px 4%;
}
.promo-banner {
    background: linear-gradient(135deg, #1b1233 0%, #2a0845 50%, #15002b 100%);
    border: 1px solid rgba(233,30,99,0.25);
    border-radius: 18px;
    padding: 20px 18px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 18px;
    position: relative;
    overflow: hidden;
}
.promo-banner::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -10%;
    width: 200px;
    height: 200px;
    background: var(--pink-accent);
    filter: blur(100px);
    opacity: 0.2;
}
.promo-item {
    display: flex;
    align-items: center;
    gap: 14px;
    position: relative;
    z-index: 1;
}
.promo-icon-box {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #ff4081;
    flex-shrink: 0;
}
.promo-text h4 {
    font-size: 13px;
    font-weight: 800;
}
.promo-text p {
    font-size: 11px;
    color: var(--text-sub);
}

/* Badges */
.badge {
    display: inline-block;
    padding: 3px 12px;
    border-radius: 12px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}
.badge-success { background: rgba(76,175,80,0.2); color: #4caf50; border: 1px solid #4caf50; }
.badge-warning { background: rgba(255,193,7,0.2); color: #ffc107; border: 1px solid #ffc107; }
.badge-danger { background: rgba(244,67,54,0.2); color: #f44336; border: 1px solid #f44336; }
.badge-secondary { background: rgba(160,160,192,0.2); color: var(--text-sub); border: 1px solid var(--card-border); }
.badge-pink { background: rgba(233,30,99,0.2); color: var(--pink-accent); border: 1px solid var(--pink-accent); }
.badge-blue { background: rgba(30,136,229,0.2); color: var(--blue-accent); border: 1px solid var(--blue-accent); }

/* Alerts */
.alert {
    padding: 14px 20px;
    border-radius: 12px;
    margin: 12px 4%;
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
}
.alert-success { background: rgba(76,175,80,0.15); border: 1px solid #4caf50; color: #4caf50; }
.alert-error { background: rgba(244,67,54,0.15); border: 1px solid #f44336; color: #f44336; }
.alert-warning { background: rgba(255,193,7,0.15); border: 1px solid #ffc107; color: #ffc107; }
.alert-info { background: rgba(30,136,229,0.15); border: 1px solid var(--blue-accent); color: var(--blue-accent); }
.alert button {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: inherit;
    font-size: 20px;
    cursor: pointer;
}

/* Auth Pages */
.auth-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 80vh;
    padding: 20px;
}
.auth-box {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    padding: 40px;
    max-width: 420px;
    width: 100%;
}
.auth-header {
    text-align: center;
    margin-bottom: 30px;
}
.auth-header .logo {
    justify-content: center;
    font-size: 22px;
    margin-bottom: 12px;
}
.auth-header h2 {
    font-size: 24px;
    margin-bottom: 6px;
}
.auth-header p {
    color: var(--text-sub);
}
.auth-form .form-group {
    margin-bottom: 16px;
}
.auth-form label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--text-sub);
}
.auth-form label i {
    margin-right: 6px;
}
.auth-form input {
    width: 100%;
    padding: 12px 16px;
    border-radius: 12px;
    border: 1px solid var(--card-border);
    background: rgba(255,255,255,0.05);
    color: #fff;
    font-size: 14px;
    transition: border-color 0.3s;
}
.auth-form input:focus {
    border-color: var(--pink-accent);
    outline: none;
}
.btn-submit {
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--pink-accent), var(--pink-hover));
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
}
.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px var(--pink-glow);
}
.auth-footer {
    text-align: center;
    margin-top: 20px;
    color: var(--text-sub);
}
.auth-footer a {
    color: var(--pink-accent);
    text-decoration: none;
    font-weight: 600;
}
.auth-footer a:hover {
    text-decoration: underline;
}

/* Profile */
.profile-container {
    padding: 20px 4%;
}
.profile-header {
    display: flex;
    gap: 24px;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    padding: 24px;
    margin-bottom: 24px;
}
.profile-avatar img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--pink-accent);
}
.profile-info h1 {
    font-size: 24px;
    margin-bottom: 8px;
}
.profile-info p {
    color: var(--text-sub);
    margin-bottom: 4px;
}
.profile-info p i {
    width: 20px;
}
.profile-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 30px;
}
.stat-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 16px;
}
.stat-icon {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    background: rgba(233,30,99,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--pink-accent);
}
.stat-info h3 {
    font-size: 22px;
    font-weight: 800;
}
.stat-info p {
    color: var(--text-sub);
    font-size: 13px;
}
.btn-small {
    padding: 4px 14px;
    border-radius: 12px;
    background: var(--pink-accent);
    color: #fff;
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    display: inline-block;
    margin-top: 4px;
    transition: all 0.3s;
}
.btn-small:hover {
    background: var(--pink-hover);
}

/* Bookings List */
.profile-bookings h2 {
    font-size: 18px;
    margin-bottom: 16px;
}
.bookings-list {
    display: grid;
    gap: 12px;
}
.booking-item {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 14px;
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.booking-info h4 {
    font-size: 15px;
    margin-bottom: 4px;
}
.booking-meta {
    display: flex;
    gap: 16px;
    color: var(--text-sub);
    font-size: 12px;
}
.booking-type {
    display: flex;
    gap: 8px;
    margin-bottom: 6px;
}
.booking-price {
    text-align: right;
}
.booking-price .price {
    font-size: 18px;
    font-weight: 800;
    color: var(--pink-accent);
}
.booking-price .method {
    display: block;
    font-size: 11px;
    color: var(--text-sub);
}

/* Add Money */
.add-money-container {
    padding: 20px 4%;
    max-width: 600px;
    margin: 0 auto;
}
.add-money-header {
    text-align: center;
    margin-bottom: 30px;
}
.current-balance {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    padding: 24px;
    text-align: center;
    margin-bottom: 24px;
}
.current-balance h3 {
    color: var(--text-sub);
    font-size: 14px;
    margin-bottom: 8px;
}
.balance-amount {
    font-size: 36px;
    font-weight: 800;
    color: var(--pink-accent);
}
.quick-amounts {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 8px;
    margin-bottom: 12px;
}
.quick-amounts button {
    padding: 8px;
    border: 1px solid var(--card-border);
    border-radius: 10px;
    background: transparent;
    color: var(--text-sub);
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 600;
}
.quick-amounts button:hover {
    background: var(--pink-accent);
    color: #fff;
    border-color: var(--pink-accent);
}
.payment-methods {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}
.payment-method {
    padding: 14px;
    border: 2px solid var(--card-border);
    border-radius: 12px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
}
.payment-method i {
    font-size: 24px;
    display: block;
    margin-bottom: 6px;
}
.payment-method.selected {
    border-color: var(--pink-accent);
    background: rgba(233,30,99,0.1);
}
.payment-method:hover {
    border-color: var(--pink-accent);
}

/* Booking Page */
.booking-container {
    padding: 20px 4%;
    max-width: 800px;
    margin: 0 auto;
}
.booking-header {
    text-align: center;
    margin-bottom: 30px;
}
.booking-header h1 {
    font-size: 28px;
}
.booking-content {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    padding: 30px;
}
.item-detail h3 {
    font-size: 20px;
    margin-bottom: 12px;
}
.item-detail p {
    color: var(--text-sub);
    margin-bottom: 6px;
}
.item-detail p i {
    width: 20px;
}
.price-display {
    margin: 16px 0;
    padding: 16px;
    background: rgba(233,30,99,0.1);
    border-radius: 12px;
    display: flex;
    justify-content: space-between;
    font-size: 18px;
}
.price-display .price {
    font-weight: 800;
    color: var(--pink-accent);
}
.quantity-control {
    display: flex;
    align-items: center;
    gap: 12px;
}
.quantity-control button {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid var(--card-border);
    background: transparent;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s;
}
.quantity-control button:hover {
    background: var(--pink-accent);
    border-color: var(--pink-accent);
}
.quantity-control input {
    width: 60px;
    text-align: center;
    padding: 8px;
    border: 1px solid var(--card-border);
    border-radius: 8px;
    background: transparent;
    color: #fff;
    font-size: 16px;
}
.payment-options {
    display: grid;
    gap: 8px;
}
.payment-option {
    padding: 14px 16px;
    border: 2px solid var(--card-border);
    border-radius: 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 14px;
    transition: all 0.3s;
}
.payment-option i {
    font-size: 20px;
    width: 30px;
}
.payment-option .balance {
    margin-left: auto;
    color: var(--text-sub);
    font-size: 12px;
}
.payment-option.selected {
    border-color: var(--pink-accent);
    background: rgba(233,30,99,0.1);
}
.total-section {
    display: flex;
    justify-content: space-between;
    padding: 16px 0;
    border-top: 1px solid var(--card-border);
    margin: 16px 0;
    font-size: 18px;
    font-weight: 700;
}
.total-price {
    color: var(--pink-accent);
}

/* Detail Page */
.detail-container {
    padding: 0 4% 30px 4%;
}
.detail-banner {
    height: 400px;
    background-size: cover;
    background-position: center;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    margin-bottom: 24px;
}
.detail-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, transparent 100%);
    display: flex;
    align-items: flex-end;
    padding: 40px;
}
.detail-header h1 {
    font-size: 36px;
    font-weight: 800;
    margin: 12px 0;
}
.detail-header .artist,
.detail-header .director {
    font-size: 18px;
    color: var(--text-sub);
}
.detail-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
}
.detail-main h2 {
    font-size: 18px;
    margin-bottom: 16px;
}
.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 24px;
}
.info-item {
    display: flex;
    gap: 12px;
    padding: 12px;
    background: var(--card-bg);
    border-radius: 12px;
    border: 1px solid var(--card-border);
}
.info-item i {
    font-size: 20px;
    color: var(--pink-accent);
}
.info-item strong {
    display: block;
    font-size: 12px;
    color: var(--text-sub);
}
.info-item span {
    font-size: 14px;
}
.detail-description p {
    color: var(--text-sub);
    line-height: 1.8;
}
.detail-sidebar .price-box {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    padding: 24px;
    text-align: center;
    position: sticky;
    top: 80px;
}
.price-box .price {
    font-size: 32px;
    font-weight: 800;
    color: var(--pink-accent);
}
.price-box .price-note {
    color: var(--text-sub);
    font-size: 12px;
    margin-bottom: 16px;
}
.btn-block {
    display: block;
    width: 100%;
    padding: 14px;
    border-radius: 12px;
    border: none;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s;
}
.btn-primary {
    background: linear-gradient(135deg, var(--pink-accent), var(--pink-hover));
    color: #fff;
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px var(--pink-glow);
}
.btn-secondary {
    background: var(--card-bg);
    color: var(--text-main);
    border: 1px solid var(--card-border);
}
.btn-secondary:hover {
    border-color: #fff;
}
.btn-disabled {
    background: var(--card-border);
    color: var(--text-sub);
    cursor: not-allowed;
}
.btn-danger {
    background: #f44336;
    color: #fff;
}
.ticket-warning {
    color: var(--warning);
    font-weight: 600;
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 40px 20px;
    color: var(--text-sub);
}
.empty-state i {
    font-size: 48px;
    margin-bottom: 16px;
    color: var(--card-border);
}
.empty-state h3 {
    font-size: 20px;
    color: #fff;
    margin-bottom: 8px;
}
.empty-state .btn-primary {
    display: inline-block;
    padding: 10px 28px;
    margin-top: 16px;
}

/* Concert Grid */
.concert-grid, .movie-grid {
    display: grid;
    gap: 20px;
    padding: 0 4% 30px 4%;
}
.concert-card-large, .movie-card-large {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    transition: all 0.3s;
}
.concert-card-large:hover, .movie-card-large:hover {
    transform: translateY(-4px);
    border-color: var(--pink-accent);
    box-shadow: 0 8px 24px rgba(233,30,99,0.15);
}
.concert-card-large .card-image, .movie-card-large .card-image {
    width: 280px;
    min-height: 200px;
    flex-shrink: 0;
    position: relative;
}
.concert-card-large .card-image img, .movie-card-large .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.card-content {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.card-content h3 {
    font-size: 18px;
    margin-bottom: 6px;
}
.card-content .artist, .card-content .director {
    color: var(--text-sub);
    margin-bottom: 8px;
}
.card-content .description {
    color: var(--text-sub);
    font-size: 13px;
    line-height: 1.6;
    flex: 1;
}
.card-meta {
    display: flex;
    gap: 16px;
    color: var(--text-sub);
    font-size: 12px;
    margin: 12px 0;
}
.card-meta i {
    margin-right: 4px;
}
.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 12px;
    border-top: 1px solid var(--card-border);
}
.card-footer .price {
    font-size: 20px;
    font-weight: 800;
    color: var(--pink-accent);
}

/* Filter Bar */
.filter-bar {
    display: flex;
    gap: 12px;
    padding: 0 4% 20px 4%;
}
.filter-group select,
.filter-group input {
    padding: 8px 16px;
    border-radius: 10px;
    border: 1px solid var(--card-border);
    background: var(--card-bg);
    color: #fff;
    font-size: 13px;
}
.filter-group input {
    min-width: 200px;
}
.filter-group select:focus,
.filter-group input:focus {
    border-color: var(--pink-accent);
    outline: none;
}

/* Page Header */
.page-header {
    padding: 20px 4% 10px 4%;
}
.page-header h1 {
    font-size: 28px;
}
.page-header p {
    color: var(--text-sub);
}

/* Footer */
footer {
    background: #06060c;
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 30px 4% 16px 4%;
    margin-top: 30px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 28px;
    margin-bottom: 28px;
}
.footer-brand p {
    color: var(--text-sub);
    font-size: 13px;
    line-height: 1.6;
    margin: 12px 0;
}
.social-links {
    display: flex;
    gap: 10px;
}
.social-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    color: var(--text-sub);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s;
}
.social-icon:hover {
    color: #fff;
    background: var(--pink-accent);
    border-color: var(--pink-accent);
    transform: translateY(-2px);
}
.footer-column h4 {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 14px;
    position: relative;
    padding-bottom: 8px;
}
.footer-column h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 24px;
    height: 2px;
    background: var(--pink-accent);
    border-radius: 2px;
}
.footer-links {
    list-style: none;
}
.footer-links li {
    margin-bottom: 8px;
}
.footer-links a {
    color: var(--text-sub);
    text-decoration: none;
    font-size: 13px;
    transition: all 0.3s;
}
.footer-links a:hover {
    color: #fff;
    padding-left: 4px;
}
.newsletter-box p {
    color: var(--text-sub);
    font-size: 13px;
    margin-bottom: 12px;
}
.subscribe-form {
    display: flex;
    position: relative;
}
.subscribe-form input {
    width: 100%;
    padding: 10px 14px;
    border-radius: 20px;
    border: 1px solid var(--card-border);
    background: var(--card-bg);
    color: #fff;
    font-size: 13px;
    outline: none;
}
.subscribe-form input:focus {
    border-color: var(--pink-accent);
}
.subscribe-form button {
    position: absolute;
    right: 3px;
    top: 3px;
    bottom: 3px;
    padding: 0 16px;
    border-radius: 18px;
    border: none;
    background: var(--pink-accent);
    color: #fff;
    font-weight: 600;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.3s;
}
.subscribe-form button:hover {
    background: var(--pink-hover);
}
.contact-info p {
    color: var(--text-sub);
    font-size: 13px;
    margin: 6px 0;
}
.contact-info i {
    width: 20px;
    color: var(--pink-accent);
}
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.04);
    padding-top: 18px;
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: var(--text-sub);
}
.footer-bottom-links {
    display: flex;
    gap: 16px;
}
.footer-bottom-links a {
    color: var(--text-sub);
    text-decoration: none;
    transition: color 0.3s;
}
.footer-bottom-links a:hover {
    color: #fff;
}

/* Responsive */
@media (max-width: 1024px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .promo-banner { grid-template-columns: 1fr 1fr; }
    .detail-content { grid-template-columns: 1fr; }
    .detail-sidebar .price-box { position: static; }
    .hero-slider { height: 300px; }
    .slide-content h2 { font-size: 28px; }
}

@media (max-width: 850px) {
    .nav-menu { display: none; }
    .hamburger { display: flex; }
    .bottom-nav { display: block; }
    .features-bar { grid-template-columns: repeat(2, 1fr); }
    .section-container { grid-template-columns: 1fr; }
    .cards-grid { grid-template-columns: 1fr 1fr; }
    .profile-stats { grid-template-columns: 1fr; }
    .promo-banner { grid-template-columns: 1fr; }
    .concert-card-large, .movie-card-large { flex-direction: column; }
    .concert-card-large .card-image, .movie-card-large .card-image {
        width: 100%;
        height: 200px;
    }
    .filter-bar { flex-wrap: wrap; }
    .filter-group input { min-width: 100%; }
    .quick-amounts { grid-template-columns: repeat(3, 1fr); }
    .payment-methods { grid-template-columns: 1fr; }
    .info-grid { grid-template-columns: 1fr; }
    .detail-banner { height: 250px; }
    .detail-header h1 { font-size: 24px; }
    .auth-box { padding: 24px; }
    .profile-header { flex-direction: column; align-items: center; text-align: center; }
    .footer-grid { grid-template-columns: 1fr; }
}

@media (max-width: 500px) {
    .hero-slider { height: 220px; }
    .slide-content { left: 20px; bottom: 20px; max-width: 80%; }
    .slide-content h2 { font-size: 20px; }
    .features-bar { padding: 12px; gap: 6px; }
    .feature-item { padding: 6px; gap: 8px; }
    .feature-icon { width: 32px; height: 32px; font-size: 13px; }
    .feature-text h4 { font-size: 11px; }
    .feature-text p { font-size: 9px; }
    .cards-grid { grid-template-columns: 1fr; }
    .booking-content { padding: 16px; }
    .price-display { font-size: 15px; }
    .quick-amounts { grid-template-columns: repeat(2, 1fr); }
    .bottom-nav a i { font-size: 18px; }
    .bottom-nav a span { font-size: 9px; }
    .logo { font-size: 16px; }
    .balance-display { font-size: 11px; padding: 2px 8px; }
}

/* Desktop fixes */
@media (min-width: 851px) {
    .hamburger { display: none !important; }
    .bottom-nav { display: none !important; }
    .mobile-nav { display: none !important; }
}
