@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('/fonts/inter-v20-latin-regular.woff2') format('woff2');
}
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url('/fonts/inter-v20-latin-500.woff2') format('woff2');
}
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url('/fonts/inter-v20-latin-600.woff2') format('woff2');
}
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url('/fonts/inter-v20-latin-700.woff2') format('woff2');
}
@font-face {
    font-family: 'latoregular';
    src: url('../fonts/lato-regular-webfont.woff2') format('woff2'), url('../fonts/lato-regular-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

:root {
    --primary: #046a38;
    --primary-dark: #03562c;
    --primary-light: #2d8a5e;
    --primary-lighter: #e8f5ee;
    --primary-subtle: #f0faf4;
    --accent: #d4a017;
    --accent-light: #fef3c7;
    --accent-dark: #b8860b;
    --bg: #f8fafc;
    --bg-alt: #f1f5f9;
    --card-bg: #ffffff;
    --text: #0f172a;
    --text-secondary: #475569;
    --text-muted: #94a3b8;
    --border: #e2e8f0;
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --shadow: 0 1px 3px rgba(0,0,0,0.1), 0 1px 2px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -1px rgba(0,0,0,0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.1), 0 10px 10px -5px rgba(0,0,0,0.04);
    --radius: 12px;
    --radius-sm: 8px;
    --radius-lg: 16px;
}

*, *::before, *::after {
    box-sizing: border-box;
}

body {
    padding-top: 80px;
    background-color: var(--bg);
    color: var(--text);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
}

/* ===== NAVBAR ===== */
.navbar-modern {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    height: 72px;
    display: flex;
    align-items: center;
}

.navbar-modern-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--text);
}

.brand-icon {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
}

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

.brand-name {
    font-weight: 700;
    font-size: 16px;
    color: var(--text);
    line-height: 1.2;
}

.brand-sub {
    font-size: 11px;
    color: var(--text-secondary);
    font-weight: 500;
    letter-spacing: 0.3px;
}

.navbar-modern-right {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-link-modern {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: var(--radius-sm);
    text-decoration: none;
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease;
}

.nav-link-modern:hover,
.nav-link-modern.active {
    background: var(--primary-lighter);
    color: var(--primary);
}

.nav-link-modern i {
    font-size: 16px;
}

/* ===== HERO ===== */
.taquilla-hero {
    background: linear-gradient(135deg, var(--primary) 0%, #03562c 100%);
    padding: 60px 0 80px;
    position: relative;
    overflow: hidden;
}

.taquilla-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212,160,23,0.12) 0%, transparent 70%);
    border-radius: 50%;
}

.taquilla-hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255,255,255,0.06) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.hero-badge {
    display: inline-block;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255,255,255,0.2);
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    color: rgba(255,255,255,0.9);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.hero-title {
    font-size: 48px;
    font-weight: 800;
    color: white;
    margin: 0 0 16px;
    line-height: 1.1;
}

.text-accent {
    color: var(--accent);
}

.hero-subtitle {
    font-size: 18px;
    color: rgba(255,255,255,0.7);
    max-width: 500px;
    margin: 0 auto;
    font-weight: 400;
}

/* ===== SECTIONS ===== */
.section {
    padding: 48px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--text);
    margin: 0 0 8px;
}

.section-desc {
    font-size: 16px;
    color: var(--text-secondary);
    margin: 0;
}

/* ===== MATCH CARDS ===== */
.match-card {
    background: var(--card-bg);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
}

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

.match-card-header {
    padding: 16px 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.comp-badge {
    display: inline-block;
    background: var(--accent-light);
    color: var(--accent-dark);
    font-size: 11px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.match-date {
    font-size: 13px;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 6px;
}

.match-card-body {
    padding: 20px;
    flex: 1;
}

.match-teams {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.team {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    flex: 1;
}

.team-logo-sm {
    width: 44px;
    height: 44px;
    background: var(--primary-lighter);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 20px;
}

.team-name {
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    color: var(--text);
    line-height: 1.3;
}

.match-vs {
    font-size: 16px;
    font-weight: 800;
    color: var(--text-muted);
    padding: 0 16px;
    letter-spacing: 1px;
}

.match-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.match-info-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: var(--text-secondary);
}

.match-info-item i {
    width: 16px;
    color: var(--primary-light);
}

.match-card-footer {
    padding: 0 20px 20px;
}

.btn-match {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
}

/* ===== MATCH LIST ROWS ===== */
.matches-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.match-row {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.2s ease;
}

.match-row:hover {
    border-color: var(--primary-light);
    box-shadow: var(--shadow);
}

.match-row-competition {
    min-width: 80px;
}

.match-row-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 50px;
}

.match-row-day {
    font-size: 22px;
    font-weight: 700;
    color: var(--text);
    line-height: 1;
}

.match-row-month {
    font-size: 11px;
    text-transform: uppercase;
    color: var(--text-secondary);
    font-weight: 600;
    letter-spacing: 1px;
}

.comp-badge-sm {
    font-size: 10px;
    padding: 3px 10px;
}

.match-row-teams {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 12px;
}

.team-local, .team-visitor {
    font-weight: 600;
    font-size: 14px;
    color: var(--text);
}

.vs {
    color: var(--text-muted);
    font-weight: 700;
    font-size: 12px;
}

.match-row-time {
    font-size: 13px;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 6px;
    min-width: 70px;
}

.match-row-availability {
    min-width: 120px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.availability-bar {
    height: 4px;
    background: var(--border);
    border-radius: 2px;
    overflow: hidden;
}

.availability-fill {
    height: 100%;
    background: var(--accent);
    border-radius: 2px;
    transition: width 0.3s ease;
}

.availability-text {
    font-size: 11px;
    color: var(--text-secondary);
    font-weight: 500;
}

/* ===== MATCH HERO CARD (detail page) ===== */
.match-hero-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.match-hero-bg {
    background: linear-gradient(135deg, var(--primary) 0%, #03562c 100%);
    padding: 40px;
}

.match-hero-content {
    text-align: center;
}

.comp-badge-lg {
    font-size: 13px;
    padding: 6px 18px;
    margin-bottom: 24px;
}

.match-hero-teams {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    margin-bottom: 28px;
}

.team-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    flex: 1;
    max-width: 250px;
}

.team-icon-lg {
    width: 64px;
    height: 64px;
    background: rgba(255,255,255,0.12);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 28px;
}

.team-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(255,255,255,0.5);
    font-weight: 600;
}

.team-name-lg {
    font-size: 24px;
    font-weight: 700;
    color: white;
    margin: 0;
}

.match-vs-lg {
    font-size: 28px;
    font-weight: 800;
    color: rgba(255,255,255,0.3);
}

.match-hero-details {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.75);
    font-size: 14px;
}

.detail-item i {
    color: var(--accent);
    font-size: 16px;
}

/* ===== CARDS MODERN ===== */
.card-modern {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.card-header-modern {
    padding: 20px 24px 0;
}

.card-header-modern h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.card-header-modern h3 i {
    color: var(--primary-light);
    font-size: 18px;
}

.card-body-modern {
    padding: 20px 24px 24px;
}

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

/* ===== TICKET TYPES ===== */
.ticket-types {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.ticket-type-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    transition: all 0.2s ease;
}

.ticket-type-row:hover {
    border-color: var(--primary-light);
    background: var(--primary-lighter);
}

.ticket-type-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.ticket-type-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
}

.ticket-type-price {
    font-size: 13px;
    color: var(--accent-dark);
    font-weight: 600;
}

.ticket-qty-selector {
    display: flex;
    align-items: center;
    gap: 8px;
}

.qty-btn {
    width: 36px;
    height: 36px;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: var(--card-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--text-secondary);
    transition: all 0.2s ease;
    font-size: 14px;
}

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

.qty-input {
    width: 48px;
    text-align: center;
    font-weight: 700;
    font-size: 16px;
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 6px;
    background: var(--card-bg);
    color: var(--text);
}

/* Chrome, Safari, Edge, Opera */
.qty-input::-webkit-outer-spin-button,
.qty-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.qty-input[type=number] {
    -moz-appearance: textfield;
}

/* ===== CLIENT SEARCH ===== */
.search-client-wrapper {
    position: relative;
}

.search-client-input {
    position: relative;
}

.search-client-input .form-control {
    padding-left: 40px;
}

.search-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    font-size: 16px;
}

.client-results {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-lg);
    z-index: 100;
    max-height: 240px;
    overflow-y: auto;
    display: none;
}

.client-results.show {
    display: block;
}

.client-result-item {
    padding: 12px 16px;
    cursor: pointer;
    border-bottom: 1px solid var(--border);
    transition: background 0.15s ease;
    font-size: 13px;
}

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

.client-result-item:hover {
    background: var(--primary-lighter);
}

/* ===== RESUME ===== */
.resumen-detalle {
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-height: 60px;
}

.resumen-item {
    padding: 10px 14px;
    background: var(--bg);
    border-radius: var(--radius-sm);
}

.resumen-item-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4px;
}

.resumen-item-name {
    font-size: 13px;
    font-weight: 600;
    color: var(--text);
}

.resumen-item-qty {
    font-size: 12px;
    color: var(--text-secondary);
    font-weight: 500;
}

.resumen-item-subtotal {
    font-size: 14px;
    font-weight: 700;
    color: var(--primary);
}

.resumen-divider {
    margin: 16px 0;
    border-color: var(--border);
}

.resumen-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
    font-size: 16px;
    font-weight: 600;
    color: var(--text);
}

.total-amount {
    font-size: 22px;
    font-weight: 800;
    color: var(--accent-dark);
}

.resumen-info {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: 12px;
}

.resumen-info i {
    color: var(--primary-light);
}

/* ===== PAYMENT METHODS ===== */
.payment-methods {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.payment-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all 0.2s ease;
}

.payment-option:hover {
    border-color: var(--primary-light);
    background: var(--primary-lighter);
}

.payment-option input[type="radio"] {
    accent-color: var(--primary);
}

.payment-label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text);
    cursor: pointer;
}

.payment-label i {
    font-size: 18px;
    color: var(--primary-light);
}

/* ===== BUTTONS ===== */
.btn {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    border-radius: var(--radius-sm);
    padding: 10px 20px;
    transition: all 0.2s ease;
    font-size: 14px;
}

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

.btn-primary:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

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

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

.btn-outline-primary:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-1px);
}

.btn-lg {
    padding: 14px 28px;
    font-size: 15px;
}

.btn-block {
    width: 100%;
}

.btn-sm {
    padding: 6px 14px;
    font-size: 12px;
}

.btn-link {
    color: var(--primary-light);
    text-decoration: none;
    font-weight: 500;
}

/* ===== FORM ===== */
.form-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 6px;
}

.form-control {
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 10px 14px;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    color: var(--text);
    background: var(--card-bg);
    transition: all 0.2s ease;
}

.form-control:focus {
    border-color: var(--primary-light);
    box-shadow: 0 0 0 3px rgba(4,106,56,0.12);
}

/* ===== PAGE HEADER ===== */
.page-header {
    padding: 20px 0 0;
}

.back-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: color 0.2s ease;
}

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

/* ===== TICKET CONFIRM ===== */
.ticket-confirm {
    text-align: center;
    padding: 20px 0 60px;
}

.ticket-confirm-icon {
    font-size: 64px;
    color: var(--accent);
    margin-bottom: 16px;
    animation: scaleIn 0.4s ease;
}

@keyframes scaleIn {
    0% { transform: scale(0); opacity: 0; }
    60% { transform: scale(1.2); }
    100% { transform: scale(1); opacity: 1; }
}

.ticket-confirm-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--text);
    margin: 0 0 4px;
}

.ticket-confirm-subtitle {
    font-size: 16px;
    color: var(--text-secondary);
    margin: 0 0 32px;
}

.ticket-paper {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    text-align: left;
}

.ticket-paper-header {
    padding: 24px 28px;
    background: var(--primary);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ticket-club {
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
    font-size: 16px;
    font-weight: 600;
}

.ticket-club i {
    font-size: 22px;
}

.ticket-code {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    font-weight: 500;
    font-family: 'Courier New', monospace;
    letter-spacing: 1px;
}

.ticket-paper-body {
    padding: 28px;
}

.ticket-match-teams {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 28px;
}

.ticket-team {
    font-size: 18px;
    font-weight: 700;
    color: var(--text);
}

.ticket-vs {
    font-size: 14px;
    font-weight: 800;
    color: var(--text-muted);
}

.ticket-details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 24px;
}

.ticket-detail-item {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.ticket-detail-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--text-muted);
    font-weight: 600;
}

.ticket-detail-value {
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
}

.ticket-divider {
    position: relative;
    height: 24px;
    margin-bottom: 24px;
}

.ticket-divider-line {
    border-top: 2px dashed var(--border);
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
}

.ticket-divider-hole {
    width: 20px;
    height: 20px;
    background: var(--bg);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
}

.ticket-hole-left {
    left: -8px;
}

.ticket-hole-right {
    right: -8px;
}

.ticket-entradas h4 {
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
    margin: 0 0 12px;
}

.ticket-entrada-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    font-size: 14px;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border);
}

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

.ticket-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0 0;
    margin-top: 8px;
    font-size: 16px;
    font-weight: 600;
    color: var(--text);
}

.ticket-total-amount {
    font-size: 22px;
    font-weight: 800;
    color: var(--accent-dark);
}

.ticket-pago {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
    padding: 10px 16px;
    background: var(--accent-light);
    border-radius: var(--radius-sm);
    font-size: 13px;
    color: var(--accent-dark);
    font-weight: 500;
}

.ticket-paper-footer {
    padding: 20px 28px 24px;
    background: var(--bg);
    text-align: center;
}

.ticket-barcode {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 3px;
    height: 36px;
    margin-bottom: 12px;
}

.barcode-line {
    display: block;
    width: 3px;
    background: var(--text);
    border-radius: 1px;
}

.barcode-line:nth-child(odd) { height: 30px; width: 4px; }
.barcode-line:nth-child(3n) { height: 24px; }
.barcode-line:nth-child(5n+2) { height: 36px; }
.barcode-line:nth-child(7n+4) { height: 20px; }

.ticket-footer-text {
    font-size: 12px;
    color: var(--text-secondary);
    margin: 0;
    font-weight: 500;
}

.ticket-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-top: 28px;
}

/* ===== EMPTY STATE ===== */
.empty-state {
    text-align: center;
    padding: 80px 20px;
}

.empty-state i {
    font-size: 56px;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.empty-state h3 {
    font-size: 22px;
    font-weight: 600;
    color: var(--text);
    margin: 0 0 8px;
}

.empty-state p {
    font-size: 15px;
    color: var(--text-secondary);
    margin: 0;
}

/* ===== FOOTER ===== */
.footer-modern {
    margin-top: 60px;
    padding: 24px 0;
    border-top: 1px solid var(--border);
    background: var(--card-bg);
}

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

.footer-brand {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text);
}

.footer-brand i {
    color: var(--primary-light);
    font-size: 16px;
}

.footer-text {
    font-size: 13px;
    color: var(--text-secondary);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    body { padding-top: 64px; }
    .navbar-modern { height: 64px; }
    .brand-name { font-size: 14px; }
    .brand-sub { display: none; }
    .nav-link-modern span { display: none; }
    .nav-link-modern { padding: 10px 12px; }
    .hero-title { font-size: 32px; }
    .hero-subtitle { font-size: 15px; }
    .match-hero-teams { flex-direction: column; gap: 16px; }
    .match-vs-lg { font-size: 20px; }
    .match-hero-details { flex-direction: column; align-items: center; gap: 12px; }
    .match-row { flex-wrap: wrap; gap: 10px; }
    .match-row-teams { width: 100%; order: -1; }
    .match-row-availability { flex: 1; min-width: auto; }
    .ticket-details-grid { grid-template-columns: 1fr; }
    .ticket-actions { flex-direction: column; }
    .page-header .container { padding-left: 16px; padding-right: 16px; }
    .footer-inner { flex-direction: column; gap: 8px; text-align: center; }
}

@media print {
    .navbar-modern, .page-header, .ticket-actions, .back-link { display: none !important; }
    body { padding-top: 0 !important; background: white; }
    .ticket-confirm { padding-top: 0; }
    .ticket-paper { box-shadow: none; border: 2px solid #000; }
    .ticket-confirm-icon, .ticket-confirm-title, .ticket-confirm-subtitle { display: none; }
}
