:root {
    --primary: #ff4d00;
    --bg-dark: #0a1f1f;
    --glass-bg: rgba(20, 45, 45, 0.7);
    --glass-border: rgba(255, 255, 255, 0.1);
    --text-white: #ffffff;
    --text-muted: #a0b0b0;
    --accent-teal: #14a0a0;
    --font-family: 'Outfit', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-family);
    background-color: var(--bg-dark);
    color: var(--text-white);
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

.glow-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 10% 20%, rgba(20, 160, 160, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(255, 77, 0, 0.15) 0%, transparent 40%);
    z-index: -1;
}

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

/* Header */
header {
    padding: 20px 0;
    background: rgba(10, 31, 31, 0.9);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid var(--glass-border);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.organizer-logo {
    height: 40px;
    width: auto;
    border-radius: 6px;
}

.organizer-name {
    font-weight: 700;
    font-size: 1.2rem;
    letter-spacing: 1px;
}

.event-badge {
    background: var(--primary);
    color: white;
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
}

/* Hero Section */
.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 60px;
    padding: 40px;
    border-radius: 20px;
}

.hero-content h1 {
    font-size: clamp(2.5rem, 8vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin: 20px 0;
}

.hero-content h1 span {
    color: var(--primary);
    display: block;
}

.hero-content p.location {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 30px;
}

.tag {
    color: var(--primary);
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 1rem;
}

.countdown-container {
    display: flex;
    gap: 20px;
    margin-top: 40px;
}

.countdown-item {
    background: var(--glass-bg);
    padding: 15px;
    border-radius: 12px;
    min-width: 80px;
    text-align: center;
    border: 1px solid var(--glass-border);
}

.countdown-item span {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
}

.countdown-item label {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
}

.hero-poster {
    display: flex;
    justify-content: center;
    align-items: center;
}

.main-poster {
    max-width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    transform: rotate(2deg);
    transition: transform 0.5s ease;
}

.main-poster:hover {
    transform: rotate(0deg);
}

/* Booking Section */
.booking-section {
    margin: 100px 0;
    display: flex;
    justify-content: center;
}

.booking-card {
    width: 100%;
    max-width: 600px;
    padding: 40px;
    border-radius: 24px;
}

.card-header h2 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.price-tag {
    color: var(--primary);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 30px;
}

.price-tag span {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 400;
}

.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.input-group {
    margin-bottom: 25px;
}

.input-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--text-muted);
}

.quantity-selector {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(0, 0, 0, 0.2);
    width: fit-content;
    padding: 8px;
    border-radius: 12px;
}

.qty-btn {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1.2rem;
    transition: 0.3s;
}

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

#quantity {
    background: transparent;
    border: none;
    color: white;
    width: 40px;
    text-align: center;
    font-size: 1.4rem;
    font-weight: 700;
}

input[type="text"],
input[type="email"],
input[type="tel"] {
    width: 100%;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid var(--glass-border);
    padding: 15px 20px;
    border-radius: 12px;
    color: white;
    font-family: inherit;
    font-size: 1.1rem;
    outline: none;
    transition: 0.3s;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus {
    border-color: var(--primary);
    background: rgba(255, 77, 0, 0.05);
}

.payment-options {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.payment-option {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(0, 0, 0, 0.2);
    padding: 15px 20px;
    border-radius: 12px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: 0.3s;
}

.payment-option.active {
    border-color: var(--primary);
    background: rgba(255, 77, 0, 0.1);
}

.payment-option img {
    height: 30px;
}

.total-display {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 30px 0;
    padding: 20px 0;
    border-top: 1px solid var(--glass-border);
}

.total-display span:first-child {
    font-size: 1.2rem;
    color: var(--text-muted);
}

#total-price {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
}

.submit-btn {
    width: 100%;
    background: var(--primary);
    color: white;
    border: none;
    padding: 18px;
    border-radius: 12px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    transition: 0.3s;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 77, 0, 0.3);
}

footer {
    text-align: center;
    padding: 40px 0;
    color: var(--text-muted);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero {
        grid-template-columns: 1fr;
        padding: 20px;
    }

    .hero-poster {
        order: -1;
    }

    .countdown-container {
        justify-content: space-between;
        gap: 10px;
    }

    .countdown-item {
        min-width: 70px;
        padding: 10px;
    }

    header {
        padding: 15px 0;
    }
}