/* CSS Variables — Royal Horizon Grand (luxorlottoo.pro) */
:root {
    --primary: #0c0a09;
    --primary-soft: #1c1917;
    --primary-muted: #292524;
    --accent: #b45309;
    --accent-light: #ea580c;
    --accent-pale: #fef3c7;
    --gold: #d97706;
    --gold-light: #fbbf24;
    --text: #1c1917;
    --text-secondary: #57534e;
    --text-muted: #78716c;
    --bg: #fefdfb;
    --bg-warm: #faf6f0;
    --bg-card: #ffffff;
    --border: #e7e5e4;
    --border-strong: #d6d3d1;
    --success: #059669;
    --error: #dc2626;
    --shadow-subtle: 0 1px 3px rgba(0,0,0,0.06);
    --shadow: 0 4px 12px rgba(0,0,0,0.08);
    --shadow-strong: 0 12px 40px rgba(0,0,0,0.12);
    --radius-sm: 6px;
    --radius: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --radius-full: 9999px;
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
    --transition: 0.25s var(--ease);
}

/* Disclaimer Banner */
.disclaimer-banner {
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    color: white;
    padding: 12px 0;
    text-align: center;
    position: relative;
    z-index: 1001;
}

.disclaimer-banner p {
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
}

.disclaimer-banner strong {
    font-weight: 700;
}

/* Reset & Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 18px;
    line-height: 1.7;
    color: var(--text);
    background-color: var(--bg);
    font-weight: 400;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'DM Serif Display', Georgia, serif;
    font-weight: 400;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: color var(--transition);
}

a:hover {
    color: var(--accent);
}

img {
    max-width: 100%;
    height: auto;
}

ul {
    list-style: none;
}

/* Container */
.container {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 28px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.02em;
    border: none;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
    text-decoration: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent) 0%, var(--gold) 100%);
    color: white;
    box-shadow: 0 4px 14px rgba(180, 83, 9, 0.35);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--accent-light) 0%, var(--gold-light) 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(180, 83, 9, 0.4);
    color: white;
}

.btn-secondary {
    background: var(--bg-card);
    color: var(--primary);
    border: 2px solid var(--border-strong);
}

.btn-secondary:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
    transform: translateY(-2px);
}

.btn-large {
    padding: 18px 44px;
    font-size: 17px;
}

.btn-block {
    width: 100%;
}

/* Header */
.header {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(254, 253, 251, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 22px;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: -0.02em;
}

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

.logo-icon {
    font-size: 28px;
    color: var(--accent);
}

.logo-text {
    font-family: 'DM Serif Display', serif;
    font-weight: 400;
}

.logo-dot {
    color: var(--accent);
}

.nav {
    display: flex;
    gap: 40px;
}

.nav a {
    font-weight: 500;
    font-size: 15px;
    color: var(--text-secondary);
    letter-spacing: 0.02em;
    position: relative;
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width var(--transition);
}

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

.nav a:hover::after {
    width: 100%;
}

.header-auth {
    display: flex;
    align-items: center;
    gap: 14px;
}

.btn-ghost {
    background: transparent;
    color: var(--primary);
    border: 1px solid var(--border);
}

.btn-ghost:hover {
    background: var(--bg-warm);
    border-color: var(--primary-muted);
    color: var(--primary);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
}

.mobile-menu-btn span {
    width: 26px;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(160deg, var(--primary) 0%, var(--primary-soft) 45%, var(--primary-muted) 100%);
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.hero.hero--image {
    background-color: var(--primary);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.hero.hero--image .hero-overlay {
    background: linear-gradient(180deg, rgba(12, 10, 9, 0.6) 0%, rgba(12, 10, 9, 0.35) 45%, rgba(12, 10, 9, 0.7) 100%);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23fbbf24' fill-opacity='0.04'%3E%3Ccircle cx='40' cy='40' r='2'/%3E%3Ccircle cx='0' cy='0' r='1'/%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse 80% 60% at 50% 40%, transparent 0%, rgba(0, 0, 0, 0.4) 100%);
}

.hero .container {
    position: relative;
    z-index: 1;
    width: 100%;
}

.hero-content {
    max-width: 720px;
    margin: 0 auto;
    color: white;
    padding: 60px 0 80px;
}

.hero-badge {
    display: inline-block;
    padding: 10px 24px;
    background: rgba(251, 191, 36, 0.15);
    border: 1px solid rgba(251, 191, 36, 0.5);
    border-radius: var(--radius-full);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: var(--gold-light);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 32px;
}

.hero h1 {
    font-size: clamp(48px, 8vw, 90px);
    margin-bottom: 28px;
    line-height: 1.05;
    letter-spacing: -0.03em;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: clamp(18px, 2.2vw, 22px);
    font-weight: 500;
    opacity: 0.95;
    margin-bottom: 20px;
    max-width: 580px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
}

.hero-tagline {
    font-size: 17px;
    opacity: 0.88;
    margin-bottom: 48px;
    max-width: 540px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.65;
}

.hero-details {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
    justify-content: center;
    flex-wrap: wrap;
}

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

.detail-icon {
    font-size: 24px;
}

.detail-text {
    font-size: 16px;
    font-weight: 500;
}

/* Section Styles */
section {
    padding: 120px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 56px;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

.section-badge {
    display: inline-block;
    padding: 8px 18px;
    background: var(--accent-pale);
    border-radius: var(--radius-full);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 20px;
}

.section-header h2 {
    font-size: clamp(36px, 4.5vw, 56px);
    color: var(--primary);
    letter-spacing: -0.02em;
    line-height: 1.15;
}

.section-header h1 {
    font-size: clamp(36px, 4.5vw, 56px);
    color: var(--primary);
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

/* Content block — text + optional image */
.content-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    margin-bottom: 60px;
}

.content-block:last-child { margin-bottom: 0; }

.content-block__media {
    min-height: 280px;
    background: var(--bg-warm);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.content-block__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.content-block__text .section-header {
    text-align: left;
    margin-bottom: 24px;
}

.content-block__text p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    font-size: 17px;
}

.content-block--reverse {
    direction: rtl;
}

.content-block--reverse > * {
    direction: ltr;
}

.content-block--text-only {
    max-width: 780px;
    margin-left: auto;
    margin-right: auto;
}

.content-block--text-only .section-header {
    text-align: center;
    margin-bottom: 32px;
}

.content-block--text-only p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    font-size: 18px;
    line-height: 1.75;
}

.content-list {
    margin: 16px 0 24px;
    padding-left: 24px;
}

.content-list li {
    color: var(--text-secondary);
    margin-bottom: 8px;
    list-style: disc;
}

.content-list--check {
    list-style: none;
    padding-left: 0;
}

.content-list--check li {
    padding-left: 28px;
    position: relative;
    margin-bottom: 10px;
}

.content-list--check li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: 700;
}

.experience-list {
    list-style: none;
    padding-left: 0;
    margin: 16px 0 24px;
}

.experience-list li {
    padding: 8px 0;
    color: var(--text-secondary);
    position: relative;
    padding-left: 24px;
}

.experience-list li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: var(--accent);
}

/* Instructors */
.instructors {
    background: var(--bg-warm);
}

.instructors .section-header {
    margin-bottom: 48px;
}

.instructors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    margin-bottom: 24px;
}

.instructor-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    transition: transform var(--transition), box-shadow var(--transition);
}

.instructor-card:hover {
    box-shadow: var(--shadow-strong);
    transform: translateY(-4px);
}

.instructor-card__media {
    min-height: 220px;
    background: var(--bg-warm);
}

.instructor-card h3 {
    padding: 24px 28px 10px;
    font-size: 24px;
    color: var(--primary);
}

.instructor-card p {
    padding: 0 28px 28px;
    color: var(--text-muted);
    font-size: 16px;
    line-height: 1.65;
}

.instructors-note {
    text-align: center;
    color: var(--text-secondary);
    font-style: italic;
    max-width: 640px;
    margin: 0 auto;
}

/* Modal — seat selection step */
.modal-content--wide {
    max-width: 560px;
}

.modal-seats {
    display: grid;
    gap: 12px;
    margin-bottom: 24px;
}

.seat-option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 22px;
    background: var(--bg-warm);
    border: 2px solid var(--border);
    border-radius: var(--radius);
    cursor: pointer;
    transition: var(--transition);
    font-family: inherit;
    font-size: 16px;
    text-align: left;
}

.seat-option:hover {
    border-color: var(--primary-muted);
    background: var(--bg-card);
}

.seat-option.selected {
    border-color: var(--accent);
    background: var(--accent-pale);
}

.seat-option__name {
    font-weight: 600;
    color: var(--primary);
}

.seat-option__price {
    font-weight: 700;
    color: var(--accent);
}

#btnContinueFromSeat:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* About section (masterclass) */
.about .content-block {
    margin-bottom: 0;
}

/* Program / Who / Experience sections */
.program, .who {
    background: var(--bg);
}

.experience-block {
    background: var(--bg-warm);
}

/* Tickets section — single CTA */
.tickets-cta {
    text-align: center;
    margin-top: 24px;
}

/* About Section */
.about {
    background: var(--bg-warm);
}

.about-lead {
    font-size: 24px;
    font-weight: 600;
    color: var(--primary);
    text-align: center;
    margin-bottom: 40px;
    font-family: 'DM Serif Display', serif;
}

.about-text {
    max-width: 780px;
    margin: 0 auto;
    text-align: center;
}

.about-text p {
    font-size: 19px;
    color: var(--text-secondary);
    margin-bottom: 24px;
    line-height: 1.75;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
}

.feature {
    background: var(--bg-card);
    padding: 44px 36px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    transition: transform var(--transition), box-shadow var(--transition);
}

.feature:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-strong);
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 24px;
}

.feature h3 {
    font-size: 24px;
    color: var(--primary);
    margin-bottom: 14px;
}

.feature p {
    color: var(--text-muted);
    font-size: 16px;
}

/* Experience section */
.experience {
    background: var(--bg);
}

.experience .section-title {
    font-size: clamp(26px, 3vw, 34px);
    color: var(--primary);
    margin-top: 52px;
    margin-bottom: 22px;
    font-family: 'DM Serif Display', serif;
}

.experience .section-title:first-child {
    margin-top: 0;
}

.content-list {
    margin: 16px 0 24px;
    padding-left: 24px;
}

.content-list li {
    color: var(--text-secondary);
    margin-bottom: 8px;
    list-style: disc;
}

.content-list--symbols {
    list-style: none;
    padding-left: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 12px 24px;
}

.content-list--symbols li { margin: 0; }

.content-highlight {
    font-style: italic;
    color: var(--primary);
    font-weight: 500;
}

.feel-list {
    list-style: none;
    padding-left: 0;
    margin: 24px 0 32px;
}

.feel-list li {
    padding: 10px 0;
    color: var(--text-secondary);
    font-size: 18px;
    border-bottom: 1px solid var(--border);
}

.feel-list li:last-child { border-bottom: none; }

/* Poker block — distinct */
.poker-block {
    background: linear-gradient(160deg, var(--primary) 0%, var(--primary-soft) 50%, var(--primary-muted) 100%);
    color: white;
    padding: 100px 0;
}

.poker-block__inner {
    max-width: 720px;
    margin: 0 auto;
    padding: 52px 44px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(251, 191, 36, 0.35);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-strong);
}

.poker-block .section-badge {
    background: rgba(251, 191, 36, 0.2);
    color: var(--gold-light);
    border: 1px solid rgba(251, 191, 36, 0.5);
}

.poker-block h2 { color: white; margin-bottom: 28px; text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2); font-family: 'DM Serif Display', serif; }

.poker-block__content { font-size: 18px; line-height: 1.8; opacity: 0.95; }

.poker-block__content p { margin-bottom: 16px; }

.poker-block__content p:last-child { margin-bottom: 0; }

.tickets-cta { text-align: center; margin-top: 32px; }

/* Seat selection page */
.seat-selection { padding: 80px 0 100px; }

.seat-selection__intro {
    max-width: 560px;
    margin: 0 auto 48px;
    text-align: center;
    color: var(--text-secondary);
    font-size: 18px;
}

.tables-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    margin-bottom: 48px;
}

.table-card {
    position: relative;
    background: var(--bg-card);
    border: 2px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 32px;
    transition: var(--transition);
}

.table-card:hover { border-color: var(--primary); box-shadow: var(--shadow-strong); }

.table-card.selected { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(180, 83, 9, 0.25); }

.table-card.featured { border-color: var(--accent); box-shadow: var(--shadow-strong); }

.table-card__badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 6px 16px;
    background: var(--accent);
    color: white;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: var(--radius-full);
}

.table-card__name {
    display: block;
    font-family: 'DM Serif Display', serif;
    font-size: 24px;
    font-weight: 400;
    color: var(--primary);
    margin-bottom: 10px;
}

.table-card__price { display: block; font-size: 30px; font-weight: 700; color: var(--accent); margin-bottom: 10px; }

.table-card__desc { color: var(--text-muted); font-size: 15px; margin-bottom: 22px; line-height: 1.5; }

.seat-selection__summary {
    text-align: center;
    padding: 32px;
    background: var(--bg-warm);
    border-radius: var(--radius-lg);
}

.selected-ticket-summary {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
    font-size: 20px;
    font-weight: 600;
    color: var(--primary);
}

.selected-ticket-summary span:last-child { color: var(--accent); }

.footer-disclaimer p {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 12px;
}

.footer-disclaimer p:last-child { margin-bottom: 0; }

.footer-disclaimer p strong { display: block; margin-bottom: 8px; font-size: 15px; }

/* Tickets Section */
.tickets {
    background: var(--bg);
}

.tickets-intro {
    max-width: 640px;
    margin: 0 auto 56px;
    text-align: center;
}

.tickets-intro p {
    font-size: 19px;
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.7;
}

.ticket-card {
    position: relative;
    background: var(--bg-card);
    border: 2px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 36px;
    transition: var(--transition);
    box-shadow: var(--shadow-subtle);
}

.ticket-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-strong);
    transform: translateY(-2px);
}

.ticket-card.featured {
    border-color: var(--accent);
    box-shadow: 0 4px 20px rgba(180, 83, 9, 0.15);
}

.ticket-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 8px 22px;
    background: var(--accent);
    color: white;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: var(--radius-full);
}

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

.ticket-type {
    display: inline-block;
    padding: 6px 14px;
    background: var(--bg-warm);
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 10px;
}

.ticket-header h3 {
    font-size: 26px;
    color: var(--primary);
    font-family: 'DM Serif Display', serif;
}

.ticket-price {
    text-align: center;
    margin-bottom: 28px;
}

.ticket-price .currency {
    font-size: 22px;
    font-weight: 600;
    color: var(--text-secondary);
    vertical-align: top;
}

.ticket-price .amount {
    font-size: 52px;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
    font-family: 'DM Serif Display', serif;
}

.ticket-description {
    text-align: center;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border);
    margin-bottom: 24px;
}

.ticket-description p {
    color: var(--text-secondary);
    font-weight: 500;
}

.ticket-features {
    margin-bottom: 32px;
}

.ticket-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    color: var(--text-secondary);
}

.ticket-features li::before {
    content: '✓';
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    background: var(--bg-warm);
    color: var(--success);
    font-size: 12px;
    font-weight: 700;
    border-radius: 50%;
}

/* Atmosphere Section */
.atmosphere {
    background: var(--bg-warm);
}

.atmosphere-content {
    display: grid;
    gap: 60px;
}

.atmosphere-text {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.atmosphere-text p {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.atmosphere-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
}

.atmosphere-item {
    background: white;
    padding: 32px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.atmosphere-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-strong);
}

.atmosphere-icon {
    font-size: 40px;
    margin-bottom: 16px;
}

.atmosphere-item h3 {
    font-size: 20px;
    color: var(--primary);
    margin-bottom: 8px;
}

.atmosphere-item p {
    color: var(--text-muted);
    font-size: 14px;
}

/* Contact Section */
.contact {
    background: var(--bg-warm);
}

.contact-content {
    max-width: 560px;
    margin: 0 auto;
}

.contact-info {
    display: grid;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 22px;
    padding: 28px 28px;
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    transition: box-shadow var(--transition);
}

.contact-item:hover {
    box-shadow: var(--shadow);
}

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

.contact-item h4 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 6px;
}

.contact-item p {
    color: var(--text);
    font-weight: 500;
    font-size: 16px;
}

/* Footer */
.footer {
    background: var(--primary);
    color: white;
    padding: 100px 0 32px;
    border-top: 4px solid var(--accent);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 64px;
    margin-bottom: 64px;
}

.footer-brand .logo {
    color: white;
    margin-bottom: 20px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.75);
    max-width: 320px;
    font-size: 16px;
    line-height: 1.65;
}

.footer-links h4 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 22px;
    color: var(--gold-light);
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.75);
    transition: color var(--transition);
    font-size: 15px;
}

.footer-links a:hover {
    color: white;
}

.footer-disclaimer {
    padding: 28px 32px;
    background: rgba(0, 0, 0, 0.25);
    border-radius: var(--radius);
    text-align: center;
    margin-bottom: 48px;
}

.footer-disclaimer p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.65;
}

.footer-disclaimer strong {
    font-weight: 700;
}

.footer-bottom {
    padding-top: 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 2000;
    overflow-y: auto;
    padding: 40px 20px;
    align-items: flex-start;
    justify-content: center;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: var(--bg-card);
    border-radius: var(--radius-xl);
    max-width: 500px;
    width: 100%;
    padding: 44px 40px;
    position: relative;
    margin: auto;
    box-shadow: var(--shadow-strong);
    border: 1px solid var(--border);
}

.modal-close {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 42px;
    height: 42px;
    background: var(--bg-warm);
    border: none;
    border-radius: 50%;
    font-size: 22px;
    color: var(--text-muted);
    cursor: pointer;
    transition: var(--transition);
}

.modal-close:hover {
    background: var(--border);
    color: var(--text);
}

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

.modal-header h2 {
    font-size: 30px;
    color: var(--primary);
    margin-bottom: 10px;
    font-family: 'DM Serif Display', serif;
}

.modal-header p {
    color: var(--text-muted);
    font-size: 16px;
}

/* Form Styles */
.form-section {
    margin-bottom: 32px;
}

.form-section h3 {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.selected-ticket {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    background: var(--bg-warm);
    border-radius: var(--radius);
}

.selected-ticket #selectedTicketName {
    font-weight: 600;
    color: var(--primary);
}

.selected-ticket #selectedTicketPrice {
    font-size: 24px;
    font-weight: 700;
    color: var(--accent);
}

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

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

.form-group input {
    width: 100%;
    padding: 16px 18px;
    border: 2px solid var(--border);
    border-radius: var(--radius);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 16px;
    transition: var(--transition);
}

.form-group input:focus {
    outline: none;
    border-color: var(--accent);
}

.form-group input[readonly] {
    background: var(--bg-warm);
    color: var(--text-muted);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 24px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-soft) 100%);
    color: white;
    border-radius: var(--radius);
    margin-bottom: 28px;
}

.form-total span:first-child {
    font-weight: 500;
    font-size: 16px;
}

.form-total #totalAmount {
    font-size: 28px;
    font-weight: 700;
    font-family: 'DM Serif Display', serif;
}

.form-note {
    text-align: center;
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 16px;
}

.form-note a {
    color: var(--primary);
    text-decoration: underline;
}

/* Success Modal */
.modal-success {
    text-align: center;
    padding: 60px 40px;
}

.success-icon {
    width: 80px;
    height: 80px;
    background: var(--success);
    color: white;
    font-size: 40px;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.modal-success h2 {
    font-size: 32px;
    color: var(--primary);
    margin-bottom: 16px;
}

.modal-success p {
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.success-details {
    font-weight: 500;
    color: var(--text);
    margin-bottom: 32px !important;
}

/* Legal Pages */
.legal-page {
    padding-top: 60px;
    padding-bottom: 80px;
    min-height: 100vh;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
}

.legal-content h1 {
    font-size: 44px;
    color: var(--primary);
    margin-bottom: 18px;
    font-family: 'DM Serif Display', serif;
}

.legal-content .last-updated {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 44px;
}

.legal-content h2 {
    font-size: 26px;
    color: var(--primary);
    margin-top: 44px;
    margin-bottom: 18px;
    font-family: 'DM Serif Display', serif;
}

.legal-content h3 {
    font-size: 20px;
    color: var(--primary);
    margin-top: 28px;
    margin-bottom: 10px;
}

.legal-content p {
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.legal-content ul {
    margin-bottom: 16px;
    padding-left: 24px;
}

.legal-content li {
    color: var(--text-secondary);
    margin-bottom: 8px;
    list-style: disc;
}

/* Responsive Design */
@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .nav {
        display: none;
        position: absolute;
        top: 88px;
        left: 0;
        right: 0;
        background: var(--bg-card);
        flex-direction: column;
        padding: 28px;
        gap: 18px;
        box-shadow: var(--shadow-strong);
        border-bottom: 1px solid var(--border);
    }

    .nav.active {
        display: flex;
    }

    .header-auth {
        display: none;
    }

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

    .hero-details {
        flex-direction: column;
        gap: 16px;
    }

    section {
        padding: 80px 0;
    }

    .tickets-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .footer-brand p {
        max-width: none;
    }

    .modal-content {
        padding: 24px;
    }

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

    .poker-block__inner {
        padding: 28px 20px;
    }

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

    .content-block {
        grid-template-columns: 1fr;
        direction: ltr;
    }

    .content-block--reverse {
        direction: ltr;
    }

    .content-block__text .section-header {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 20px;
    }

    .hero-content {
        padding: 80px 0 60px;
    }

    .hero h1 {
        font-size: 42px;
    }

    .btn-large {
        padding: 16px 32px;
        font-size: 16px;
    }
}
