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

:root {
    --primary: #700c70;
    --primary-dark: #4a084a;
    --accent: #F07455;
    --accent-warm: #F5A56A;
    --white: #FDF8F2;
    --gray: #d1d1d1;
    --text: #F0EDE8;
    --text-muted: #bbb;
    --card-bg: rgba(210, 198, 232, 0.82);
    --card-text: #1A1A2E;
    --font-display: "Bebas Neue", "Impact", sans-serif;
    --font-heading: "Playfair Display", Georgia, serif;
    --font-body: "Inter", "Segoe UI", sans-serif;
}

body {
    font-family: var(--font-body);
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    color: var(--text);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Navbar */
.navbar {
    background: rgba(0, 0, 0, 0.3);
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--white);
    text-decoration: none;
}

.nav-brand img {
    height: 50px;
    width: auto;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: var(--text);
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    transition: background 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
    background: rgba(201, 36, 143, 0.3);
    color: var(--white);
}

/* Nav auth */
.nav-auth {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-user {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.nav-btn {
    background: rgba(201, 36, 143, 0.4);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 6px;
    text-decoration: none;
    font-size: 0.9rem;
    transition: background 0.3s;
}

.nav-btn:hover {
    background: var(--accent);
}

/* Main content */
main {
    flex: 1;
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

/* Hero section */
.hero {
    text-align: center;
    padding: 3rem 2rem;
    background: rgba(155, 75, 155, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    margin-bottom: 2rem;
}

/* Consistent section spacing */
.info-section,
.info-grid,
.committee-section {
    margin-bottom: 2rem;
}

.hero-logo {
    width: 180px;
    height: auto;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.hero h1 {
    font-family: var(--font-display);
    font-size: 3.5rem;
    letter-spacing: 2px;
    color: var(--white);
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-date {
    font-size: 1.8rem;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.hero-tagline {
    font-size: 1.2rem;
    color: var(--text-muted);
    font-style: italic;
}

/* Info section */
.info-section {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 2rem;
}

.info-section h2 {
    color: var(--white);
    margin-bottom: 1rem;
}

.info-section p {
    line-height: 1.8;
}

/* Ticket status bar (in info-section) */
.ticket-status-bar {
    margin-top: 1rem;
}

.ticket-status-bar .progress-bar-large {
    height: 24px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 12px;
    overflow: hidden;
}

.ticket-status-bar .progress-fill-large {
    height: 100%;
    background: linear-gradient(90deg, #F07455, var(--accent));
    border-radius: 12px;
    transition: width 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 15px rgba(155, 48, 255, 0.4);
}

.ticket-status-text {
    margin-top: 1rem;
    font-size: 1.2rem;
    text-align: center;
}

.status-available {
    color: #5cb85c;
    font-weight: 600;
}

.status-sold-out {
    color: #ff6b6b;
    font-weight: 600;
    font-size: 1.4rem;
}

/* Info grid */
.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.info-grid-two {
    grid-template-columns: repeat(2, 1fr);
}

.info-grid-three {
    grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 900px) {
    .info-grid-two,
    .info-grid-three {
        grid-template-columns: 1fr;
    }
}

/* Price display */
.price-display {
    text-align: center;
    margin-bottom: 1rem;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 10px;
}

.price-amount {
    display: block;
    font-family: var(--font-display);
    font-size: 3rem;
    color: var(--white);
    letter-spacing: 2px;
}

.price-label {
    font-size: 1rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Full-width card */
.card-full-width {
    margin-bottom: 2rem;
    padding: 3rem;
}

.card-full-width .card-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.card-full-width h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.card-full-width .card-intro {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.info-card {
    padding: 2rem;
    border-radius: 16px;
    border: 2px solid;
    transition: transform 0.3s, box-shadow 0.3s;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.info-card h3 {
    color: var(--card-text);
    margin-bottom: 1.25rem;
    font-size: 1.6rem;
}

.info-card ul {
    list-style: none;
    margin-bottom: 1rem;
}

.info-card li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-size: 1.1rem;
    line-height: 1.5;
    color: var(--card-text);
}

.info-card li::before {
    content: "→";
    position: absolute;
    left: 0;
}

.info-card p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--card-text);
}

.info-card strong {
    color: var(--card-text);
}

.card-intro {
    font-size: 1.15rem;
    margin-bottom: 1rem;
    font-style: italic;
}

.card-note {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    font-size: 1rem;
    color: var(--card-text);
    opacity: 0.8;
}

/* Map container */
.map-container {
    margin: 1rem 0;
    border-radius: 8px;
    overflow: hidden;
}

.map-container iframe {
    display: block;
}

/* Program page - Lineup style */
.lineup-section {
    margin-bottom: 2.5rem;
}

.lineup-section-title {
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 1rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.lineup-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.lineup-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: background 0.3s, transform 0.2s;
    position: relative;
}

.lineup-item:first-child {
    border-radius: 12px 12px 0 0;
}

.lineup-item:last-child {
    border-radius: 0 0 12px 12px;
    border-bottom: none;
}

.lineup-item:only-child {
    border-radius: 12px;
}

.lineup-item:hover {
    background: rgba(255, 255, 255, 0.1);
}

.lineup-item-headliner {
    background: linear-gradient(90deg, rgba(201, 36, 143, 0.2), rgba(112, 12, 112, 0.1));
    padding: 2rem 1.5rem;
}

.lineup-item-headliner:hover {
    background: linear-gradient(90deg, rgba(201, 36, 143, 0.3), rgba(112, 12, 112, 0.2));
}

.lineup-item-dj {
    background: linear-gradient(90deg, rgba(74, 144, 217, 0.15), rgba(30, 80, 140, 0.1));
}

.lineup-item-dj:hover {
    background: linear-gradient(90deg, rgba(74, 144, 217, 0.25), rgba(30, 80, 140, 0.15));
}

.lineup-image {
    width: 80px;
    height: 80px;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
}

.lineup-item-headliner .lineup-image {
    width: 120px;
    height: 120px;
}

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

.lineup-image-placeholder {
    font-size: 2rem;
    opacity: 0.5;
}

.lineup-item-headliner .lineup-image-placeholder {
    font-size: 3rem;
}

.lineup-content {
    flex: 1;
    min-width: 0;
}

.lineup-name {
    font-size: 1.4rem;
    color: var(--white);
    margin: 0 0 0.25rem 0;
    font-weight: 600;
}

.lineup-item-headliner .lineup-name {
    font-size: 1.8rem;
    font-family: var(--font-display);
    letter-spacing: 1px;
}

.lineup-time {
    display: inline-block;
    font-size: 1rem;
    color: var(--accent);
    background: rgba(201, 36, 143, 0.2);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    margin-bottom: 0.5rem;
}

.lineup-description {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin: 0.5rem 0 0 0;
}

.lineup-badge {
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(135deg, var(--accent), var(--primary));
    color: var(--white);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.lineup-badge-dj {
    background: linear-gradient(135deg, #4a90d9, #2a5a9a);
}

.lineup-empty {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-muted);
    padding: 3rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
}

@media (max-width: 768px) {
    .lineup-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
        padding: 1.25rem;
    }
    
    .lineup-item-headliner {
        padding: 1.5rem 1.25rem;
    }
    
    .lineup-image,
    .lineup-item-headliner .lineup-image {
        width: 100%;
        height: 200px;
        border-radius: 8px;
    }
    
    .lineup-badge {
        position: static;
        transform: none;
        margin-top: 0.5rem;
    }
    
    .lineup-name {
        font-size: 1.3rem;
    }
    
    .lineup-item-headliner .lineup-name {
        font-size: 1.5rem;
    }
}

/* Vipps QR code */
.vipps-qr {
    background: white;
    border-radius: 12px;
    padding: 1rem;
    margin: 1rem 0;
    text-align: center;
}

.vipps-qr img {
    max-width: 180px;
    height: auto;
    display: block;
    margin: 0 auto;
}

.info-card .error-list {
    list-style: none;
    margin-top: 0.5rem;
    padding: 0;
}

.info-card .error-list li {
    color: #ff6b6b;
    font-size: 0.9rem;
    padding: 0;
}

.info-card .error-list li::before {
    content: none;
}

/* Horizontal reservation form for full-width card */
.reservation-form-horizontal {
    display: flex;
    align-items: flex-end;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.reservation-form-horizontal .form-fields-row {
    display: flex;
    gap: 2.5rem;
    flex: 1;
    flex-wrap: wrap;
}

.reservation-form-horizontal .form-row {
    flex: 1;
    min-width: 200px;
    margin-bottom: 0;
}

.reservation-form-horizontal .form-row label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--white);
    font-weight: bold;
}

.reservation-form-horizontal .form-input {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid transparent;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.9);
    color: #333;
    font-size: 1rem;
    transition: border-color 0.3s;
}

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

.reservation-form-horizontal .submit-btn {
    flex-shrink: 0;
    width: auto;
    padding: 1rem 3rem;
    margin-top: 0;
}

@media (max-width: 768px) {
    .reservation-form-horizontal {
        flex-direction: column;
        align-items: stretch;
    }
    
    .reservation-form-horizontal .form-fields-row {
        flex-direction: column;
    }
    
    .reservation-form-horizontal .submit-btn {
        width: 100%;
    }
}

.transport-option {
    margin-bottom: 1rem;
}

.transport-option strong {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    color: var(--card-text);
}

.transport-option ul {
    margin-bottom: 0.5rem;
}

/* Card variations */
.card-program {
    background: var(--card-bg);
    border-color: #9B5FD4;
}

.card-program li::before {
    color: #7B3FB4;
}

.card-transport {
    background: var(--card-bg);
    border-color: #4a90d9;
}

.card-transport li::before {
    color: #2a6aB9;
}

.card-food {
    background: var(--card-bg);
    border-color: #e8a54b;
}

.card-food li::before {
    color: #c07820;
}

.card-remember {
    background: var(--card-bg);
    border-color: #5cb85c;
}

.card-remember li::before {
    color: #3a8a3a;
}

/* Committee section */
.committee-section {
    text-align: center;
    padding: 2rem;
    margin-bottom: 2rem;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 12px;
}

.committee-section p {
    font-size: 1.3rem;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.committee-section .committee-names {
    font-size: 1.1rem;
    color: var(--text-muted);
}

/* Artists section */
.artists-section {
    margin-bottom: 2rem;
}

.artists-section h2 {
    color: var(--white);
    margin-bottom: 1.5rem;
    text-align: center;
}

.artists-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
}

.artist-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid rgba(201, 36, 143, 0.3);
}

.artist-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border-color: var(--accent);
}

.artist-card h3 {
    color: var(--white);
    margin-bottom: 0.5rem;
}

.artist-time {
    color: var(--accent);
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.artist-description {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.no-artists {
    text-align: center;
    font-style: italic;
    color: var(--text-muted);
}

/* Ticket table */
.ticket-table-section {
    margin-top: 2rem;
}

.ticket-table-title {
    font-family: var(--font-display);
    font-size: 2rem;
    letter-spacing: 2px;
    color: var(--white);
    margin-bottom: 1.25rem;
}

.ticket-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--card-bg);
    border-radius: 12px;
    overflow: hidden;
}

.ticket-table th {
    background: rgba(0, 0, 0, 0.15);
    color: var(--card-text);
    font-weight: 700;
    padding: 1rem 1.25rem;
    text-align: left;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.ticket-table td {
    padding: 0.9rem 1.25rem;
    color: var(--card-text);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.ticket-table tbody tr:last-child td {
    border-bottom: none;
}

.ticket-table tbody tr:hover {
    background: rgba(0, 0, 0, 0.04);
}

.ticket-table tfoot td {
    padding: 0.9rem 1.25rem;
    color: var(--card-text);
    border-top: 2px solid rgba(0, 0, 0, 0.12);
}

.ticket-table-empty {
    color: var(--text-muted);
    font-style: italic;
    padding: 2rem;
    background: var(--card-bg);
    border-radius: 12px;
    text-align: center;
}

/* Billing section */
.billing-section {
    max-width: 600px;
    margin: 0 auto;
}

.billing-section h1 {
    color: var(--white);
    margin-bottom: 1rem;
    text-align: center;
}

.billing-section > p {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--text-muted);
}

.billing-form {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(201, 36, 143, 0.3);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--white);
    font-weight: bold;
}

.form-input {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid transparent;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.9);
    color: #333;
    font-size: 1rem;
    transition: border-color 0.3s;
}

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

.form-input::placeholder {
    color: #888;
}

.error-list {
    list-style: none;
    color: #ff6b6b;
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

.submit-btn {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(45deg, var(--accent), var(--primary));
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(201, 36, 143, 0.4);
}

/* Form disabled notice */
.form-disabled-notice {
    background: rgba(255, 107, 107, 0.2);
    border: 1px solid rgba(255, 107, 107, 0.4);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
}

.form-disabled-notice p {
    color: #ff6b6b;
    font-size: 1.1rem;
    margin: 0;
}

/* Reservations table */
.reservations-section {
    margin-top: 2rem;
}

.reservations-section h2 {
    color: var(--white);
    margin-bottom: 1rem;
}

.reservations-table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    overflow: hidden;
}

.reservations-table th,
.reservations-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.reservations-table th {
    background: rgba(0, 0, 0, 0.3);
    color: var(--white);
    font-weight: 600;
}

.reservations-table tbody tr:hover {
    background: rgba(255, 255, 255, 0.05);
}

.reservations-table .status-paid {
    color: #5cb85c;
    font-weight: 600;
}

.reservations-table .status-unpaid {
    color: #f0ad4e;
}

.action-buttons {
    display: flex;
    gap: 0.75rem;
}

.btn-edit,
.btn-delete {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 1.1rem;
    transition: transform 0.2s, background 0.2s;
}

.btn-edit {
    background: rgba(74, 144, 217, 0.3);
}

.btn-edit:hover {
    background: rgba(74, 144, 217, 0.5);
    transform: scale(1.1);
}

.btn-delete {
    background: rgba(255, 107, 107, 0.3);
    color: #ff6b6b;
    font-weight: bold;
}

.btn-delete:hover {
    background: rgba(255, 107, 107, 0.5);
    transform: scale(1.1);
}

/* Form actions */
.form-actions {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.btn-cancel {
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 0.1);
    color: var(--text);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    text-decoration: none;
    font-size: 1rem;
    transition: background 0.3s;
}

.btn-cancel:hover {
    background: rgba(255, 255, 255, 0.2);
}

.btn-danger {
    padding: 1rem 2rem;
    background: linear-gradient(45deg, #ff6b6b, #ee5a5a);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn-danger:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 107, 107, 0.4);
}

/* Confirm delete box */
.confirm-delete-box {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 107, 107, 0.3);
}

.confirm-message {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.reservation-details {
    background: rgba(0, 0, 0, 0.2);
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.reservation-details p {
    margin: 0.5rem 0;
}

.messages {
    margin-bottom: 1.5rem;
}

.message {
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 0.5rem;
}

.message.success {
    background: rgba(46, 204, 113, 0.2);
    border: 1px solid #2ecc71;
    color: #2ecc71;
}

/* Gallery section */
.gallery-section {
    text-align: center;
}

.gallery-section h1 {
    color: var(--white);
    margin-bottom: 1rem;
}

.gallery-section > p {
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.slideshow-container {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(201, 36, 143, 0.3);
}

.slide {
    display: none;
}

.slide.active {
    display: block;
}

.slide img {
    width: 100%;
    height: 75vh;
    max-height: 800px;
    min-height: 500px;
    object-fit: contain;
    background: #000;
}

.slide-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(112, 12, 112, 0.7);
    color: var(--white);
    border: none;
    padding: 1rem;
    font-size: 1.5rem;
    cursor: pointer;
    transition: background 0.3s;
}

.slide-btn:hover {
    background: var(--accent);
}

.slide-btn.prev {
    left: 0;
    border-radius: 0 8px 8px 0;
}

.slide-btn.next {
    right: 0;
    border-radius: 8px 0 0 8px;
}

.slide-dots {
    padding: 1rem;
    display: flex;
    justify-content: center;
    gap: 0.5rem;
}

.dot {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s;
}

.dot.active,
.dot:hover {
    background: var(--accent);
}

.no-images {
    background: rgba(255, 255, 255, 0.1);
    padding: 3rem;
    border-radius: 12px;
    color: var(--text-muted);
}

.no-images code {
    background: rgba(0, 0, 0, 0.3);
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    color: var(--accent);
}

/* Footer */
.site-footer {
    background: rgba(0, 0, 0, 0.3);
    text-align: center;
    padding: 1.5rem;
    color: var(--text-muted);
}

/* Login section */
.login-section {
    max-width: 400px;
    margin: 2rem auto;
}

.login-section h1 {
    color: var(--white);
    text-align: center;
    margin-bottom: 0.5rem;
}

.login-section > p {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.login-form {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(201, 36, 143, 0.3);
}

.error-message {
    background: rgba(255, 100, 100, 0.2);
    border: 1px solid #ff6b6b;
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 1rem;
    color: #ff6b6b;
}

/* Updates section */
.updates-section h1 {
    color: var(--white);
    text-align: center;
    margin-bottom: 0.5rem;
}

.updates-section > p {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.updates-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.update-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid rgba(201, 36, 143, 0.3);
}

.update-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.update-header h2 {
    color: var(--white);
    font-size: 1.4rem;
}

.update-date {
    color: var(--accent);
    font-size: 0.9rem;
}

.update-image {
    margin-bottom: 1rem;
    border-radius: 8px;
    overflow: hidden;
}

.update-image img {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
}

.update-content {
    color: var(--text);
    line-height: 1.7;
    font-size: 1.1rem;
}

.update-footer {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.update-author {
    color: var(--text-muted);
    font-style: italic;
}

.no-updates {
    text-align: center;
    color: var(--text-muted);
    font-style: italic;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
}

/* Admin section */
.admin-section h1 {
    color: var(--white);
    text-align: center;
    margin-bottom: 0.5rem;
}

.admin-section > p {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.admin-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.admin-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid rgba(201, 36, 143, 0.3);
}

.admin-card h2 {
    color: var(--white);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.admin-form .form-group {
    margin-bottom: 1rem;
}

.submissions-table-wrapper {
    overflow-x: auto;
}

.submissions-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
}

.submissions-table th,
.submissions-table td {
    padding: 0.75rem;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.submissions-table th {
    color: var(--white);
    font-weight: bold;
    background: rgba(0, 0, 0, 0.2);
}

.submissions-table td {
    color: var(--text);
}

.expense-type {
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: bold;
}

.type-scene {
    background: rgba(240, 116, 85, 0.3);
    color: #F07455;
}

.type-mat {
    background: rgba(232, 165, 75, 0.3);
    color: #e8a54b;
}

.type-artister {
    background: rgba(74, 144, 217, 0.3);
    color: #4a90d9;
}

.type-annet {
    background: rgba(92, 184, 92, 0.3);
    color: #5cb85c;
}

.attachment-link {
    color: var(--accent);
    text-decoration: none;
}

.attachment-link:hover {
    text-decoration: underline;
}

.no-submissions {
    color: var(--text-muted);
    font-style: italic;
    text-align: center;
    padding: 2rem;
}

.admin-links {
    text-align: center;
}

.admin-link {
    color: var(--accent);
    text-decoration: none;
    font-size: 1.1rem;
}

.admin-link:hover {
    text-decoration: underline;
}

.updates-list-title {
    color: var(--white);
    margin-top: 2rem;
    margin-bottom: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 1.1rem;
}

.admin-updates-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.admin-update-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 6px;
    gap: 1rem;
}

.admin-update-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.admin-update-info strong {
    color: var(--white);
}

.admin-update-date {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.delete-btn {
    background: rgba(255, 100, 100, 0.2);
    color: #ff6b6b;
    padding: 0.4rem 0.75rem;
    border-radius: 4px;
    text-decoration: none;
    font-size: 0.85rem;
    white-space: nowrap;
    transition: background 0.3s;
}

.delete-btn:hover {
    background: rgba(255, 100, 100, 0.4);
}

/* Tickets page */
.tickets-page {
    max-width: 1200px;
    margin: 0 auto;
}

.tickets-hero {
    text-align: center;
    margin-bottom: 2.5rem;
}

.tickets-eyebrow {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 1.4rem;
    letter-spacing: 6px;
    color: var(--accent);
    margin-bottom: 0.75rem;
}

.tickets-hero h1 {
    font-family: var(--font-display);
    font-size: 5rem;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 0.75rem;
    line-height: 1;
}

.tickets-subtitle {
    font-size: 1.5rem;
    color: var(--text-muted);
    font-weight: 400;
}

/* Tickets grid - same style as info-grid */
.tickets-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

/* Ticket info cards - same style as info-card */
.ticket-info-card {
    padding: 2.5rem;
    border-radius: 16px;
    border: 2px solid;
    transition: transform 0.3s, box-shadow 0.3s;
}

.ticket-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.ticket-info-card .card-icon {
    font-size: 3.5rem;
    margin-bottom: 1.25rem;
}

.ticket-info-card h3 {
    font-family: var(--font-display);
    color: var(--white);
    margin-bottom: 1.5rem;
    font-size: 2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.ticket-info-card .card-description {
    font-size: 1.2rem;
    line-height: 1.7;
    color: var(--text);
    margin-bottom: 1.5rem;
}

/* Card color variations */
.card-status {
    background: linear-gradient(135deg, rgba(112, 12, 112, 0.4) 0%, rgba(74, 8, 74, 0.6) 100%);
    border-color: #F07455;
}

.card-reservation {
    background: linear-gradient(135deg, rgba(40, 120, 80, 0.4) 0%, rgba(20, 80, 50, 0.6) 100%);
    border-color: #5cb85c;
}

.card-payment {
    background: linear-gradient(135deg, rgba(180, 90, 40, 0.4) 0%, rgba(120, 60, 20, 0.6) 100%);
    border-color: #ff8200;
}

.card-info {
    background: linear-gradient(135deg, rgba(30, 80, 140, 0.4) 0%, rgba(20, 50, 100, 0.6) 100%);
    border-color: #4a90d9;
}

/* Status display */
.status-display {
    text-align: center;
}

.progress-container {
    margin-bottom: 1.5rem;
}

.progress-bar-large {
    height: 28px;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 14px;
    overflow: hidden;
}

.progress-fill-large {
    height: 100%;
    background: linear-gradient(90deg, #F07455, var(--accent));
    border-radius: 14px;
    transition: width 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 20px rgba(155, 48, 255, 0.5);
}

.status-numbers {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.status-stat {
    text-align: center;
}

.stat-value {
    display: block;
    font-family: var(--font-display);
    font-size: 3.5rem;
    color: var(--white);
    line-height: 1;
}

.stat-desc {
    font-size: 1.1rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.status-divider {
    font-family: var(--font-display);
    font-size: 3rem;
    color: var(--text-muted);
}

.availability {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem;
    background: rgba(92, 184, 92, 0.2);
    border-radius: 10px;
}

.availability .avail-text {
    font-size: 1.3rem;
    font-weight: 600;
    color: #5cb85c;
}

.availability.is-sold-out {
    background: rgba(255, 107, 107, 0.2);
}

.availability.is-sold-out .avail-text {
    color: #ff6b6b;
}

.avail-icon {
    font-size: 1.5rem;
}

/* Reservation form */
.reservation-form .form-row {
    margin-bottom: 1.5rem;
}

.reservation-form label {
    display: block;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.reservation-form .form-input {
    font-size: 1.2rem;
    padding: 1.1rem;
    border-radius: 10px;
}

.btn-reserve {
    width: 100%;
    padding: 1.25rem 2rem;
    background: linear-gradient(135deg, #5cb85c, #3d8b3d);
    color: var(--white);
    border: none;
    border-radius: 12px;
    font-family: var(--font-display);
    font-size: 1.6rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn-reserve:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(92, 184, 92, 0.4);
}

/* Sold out */
.sold-out-content {
    text-align: center;
    padding: 2rem 0;
}

.sold-out-message {
    font-size: 1.4rem;
    color: #ff6b6b;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.sold-out-hint {
    font-size: 1.1rem;
    color: var(--text-muted);
}

/* Vipps payment */
.vipps-container {
    background: rgba(0, 0, 0, 0.3);
    border: 2px solid #ff8200;
    border-radius: 12px;
    padding: 1.75rem;
    text-align: center;
    margin-bottom: 2rem;
}

.vipps-header {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.vipps-number-display {
    font-family: var(--font-display);
    font-size: 4rem;
    color: #ff8200;
    letter-spacing: 6px;
}

.payment-comment {
    margin-bottom: 1rem;
}

.payment-comment h4 {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 1rem;
}

.comment-format {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-bottom: 1.25rem;
}

.format-name,
.format-keyword,
.format-count {
    padding: 0.75rem 1.25rem;
    border-radius: 8px;
    font-size: 1.15rem;
    font-weight: 600;
}

.format-name {
    background: rgba(92, 184, 92, 0.25);
    color: #5cb85c;
}

.format-keyword {
    background: rgba(201, 36, 143, 0.25);
    color: var(--accent);
}

.format-count {
    background: rgba(74, 144, 217, 0.25);
    color: #4a90d9;
}

.comment-example {
    text-align: center;
    padding: 1.25rem;
    background: rgba(0, 0, 0, 0.25);
    border-radius: 10px;
    font-size: 1.2rem;
    color: var(--text);
}

.comment-example strong {
    color: var(--text-muted);
    margin-right: 0.5rem;
}

/* Info list */
.info-list {
    list-style: none;
}

.info-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 0;
    font-size: 1.2rem;
    line-height: 1.5;
    color: var(--text);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.info-bullet {
    font-size: 1.4rem;
    flex-shrink: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 1.8rem;
    }

    .hero-date {
        font-size: 1.4rem;
    }

    .hero-logo {
        width: 120px;
    }

    .navbar {
        flex-direction: column;
        text-align: center;
    }

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
    }

    .slide img {
        height: 50vh;
        min-height: 300px;
    }

    /* Tickets responsive */
    .tickets-hero h1 {
        font-size: 3rem;
    }

    .tickets-eyebrow {
        font-size: 1rem;
    }

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

    .stat-value {
        font-size: 2.5rem;
    }

    .vipps-number-display {
        font-size: 3rem;
    }

    .ticket-info-card {
        padding: 2rem;
    }

    .ticket-info-card .card-icon {
        font-size: 2.5rem;
    }

    .ticket-info-card h3 {
        font-size: 1.6rem;
    }
}

/* Centered hero with image on top */
.hero-centered {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.hero-centered .fish-svg {
    margin-bottom: 1.5rem;
}

/* Two-column hero with poster */
.hero-with-poster {
    display: flex;
    align-items: center;
    gap: 3rem;
    text-align: left;
}

.hero-content {
    flex: 1;
    min-width: 0;
}

.hero-poster {
    flex-shrink: 0;
}

.poster-img {
    width: 180px;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    display: block;
}

.poster-img-large {
    width: 300px;
}

.fish-svg {
    width: 280px;
    border-radius: 16px;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
    .fish-svg {
        width: 220px;
    }
}

@media (max-width: 768px) {
    .hero-with-poster {
        flex-direction: column-reverse;
        text-align: center;
    }

    .poster-img {
        width: 150px;
    }
}

/* Countdown Timer */
.countdown {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    min-width: 80px;
}

.countdown-value {
    font-family: var(--font-display);
    font-size: 3rem;
    color: var(--white);
    line-height: 1;
    letter-spacing: 2px;
}

.countdown-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 0.25rem;
}

.countdown-over {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--accent);
    letter-spacing: 2px;
}

.hero-updates-link {
    display: inline-block;
    margin-top: 1.5rem;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.95rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    transition: color 0.2s, border-color 0.2s;
}

.hero-updates-link:hover {
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 480px) {
    .countdown {
        gap: 0.75rem;
    }

    .countdown-item {
        padding: 0.75rem 1rem;
        min-width: 60px;
    }

    .countdown-value {
        font-size: 2rem;
    }

    .countdown-label {
        font-size: 0.75rem;
    }
}

/* Admin export buttons */
.admin-card-full {
    grid-column: 1 / -1;
}

.export-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

.export-btn {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    color: var(--text);
    text-decoration: none;
    transition: all 0.3s;
    flex: 1;
    min-width: 200px;
}

.export-btn:hover {
    background: rgba(0, 0, 0, 0.5);
    border-color: var(--accent);
    transform: translateY(-2px);
}

.export-btn-primary {
    background: rgba(201, 36, 143, 0.3);
    border-color: var(--accent);
}

.export-btn-primary:hover {
    background: rgba(201, 36, 143, 0.5);
}

.export-icon {
    font-size: 2rem;
}

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

.export-text strong {
    font-size: 1rem;
    color: var(--white);
}

.export-text small {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 0.25rem;
}

@media (max-width: 768px) {
    .export-buttons {
        flex-direction: column;
    }

    .export-btn {
        min-width: 100%;
    }
}

/* Updates section on homepage */
.updates-section {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 2rem;
}

.updates-section h2 {
    color: var(--white);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.update-card {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    padding: 1.5rem;
    border-left: 4px solid var(--accent);
}

.update-card-latest {
    background: rgba(201, 36, 143, 0.15);
    border-left-width: 5px;
}

.update-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
}

.update-header h3 {
    color: var(--white);
    font-size: 1.2rem;
    margin: 0;
}

.update-date {
    font-size: 0.85rem;
    color: var(--text-muted);
    white-space: nowrap;
}

.update-image {
    float: left;
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 8px;
    margin: 0 1rem 0.5rem 0;
}

.update-content {
    color: var(--text);
    line-height: 1.6;
    white-space: pre-wrap;
}

.update-card::after {
    content: "";
    display: table;
    clear: both;
}

@media (max-width: 480px) {
    .update-image {
        width: 80px;
        height: 80px;
    }
}

/* Collapsible updates */
.updates-collapsed {
    margin-top: 1rem;
}

.updates-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0.75rem 1rem;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    color: var(--text-muted);
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s;
}

.updates-toggle:hover {
    background: rgba(0, 0, 0, 0.3);
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.25);
}

.toggle-icon {
    transition: transform 0.3s;
}

.updates-toggle.expanded .toggle-icon {
    transform: rotate(180deg);
}

.updates-history {
    display: none;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
}

.updates-history.expanded {
    display: flex;
}

.updates-history .update-card {
    opacity: 0.85;
}

.updates-history .update-card:hover {
    opacity: 1;
}

/* ==================== Schedule Timeline ==================== */

.schedule-container {
    max-width: 700px;
    margin: 2rem auto;
}

.schedule-timeline {
    position: relative;
    padding: 0.5rem 0;
}

.schedule-timeline::before {
    content: '';
    position: absolute;
    left: 111px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: rgba(255, 255, 255, 0.15);
}

.schedule-item {
    display: flex;
    align-items: center;
    padding: 0.9rem 0;
    position: relative;
}

.schedule-time {
    width: 95px;
    text-align: right;
    font-family: var(--font-display);
    font-size: 1.25rem;
    letter-spacing: 1px;
    color: var(--accent);
    flex-shrink: 0;
}

.schedule-item-event .schedule-time {
    color: var(--text-muted);
    font-size: 1rem;
}

.schedule-dot {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
    margin: 0 1.25rem;
}

.dot-live {
    background: #F07455;
    box-shadow: 0 0 8px rgba(240, 116, 85, 0.5);
}

.dot-dj {
    background: #4a90d9;
    box-shadow: 0 0 8px rgba(74, 144, 217, 0.5);
}

.dot-headliner {
    width: 24px;
    height: 24px;
    background: #F5A56A;
    box-shadow: 0 0 14px rgba(245, 165, 106, 0.7);
}

.dot-event {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.25);
    margin: 0 1.58rem;
}

.schedule-content {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.schedule-name {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--white);
}

.schedule-item-headliner .schedule-name {
    font-family: var(--font-display);
    font-size: 2rem;
    letter-spacing: 2px;
}

.schedule-item-event .schedule-name {
    font-size: 1rem;
    color: var(--text-muted);
    font-style: italic;
    font-weight: 400;
}

.schedule-badge {
    display: inline-block;
    padding: 0.2rem 0.6rem;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.badge-live {
    background: rgba(240, 116, 85, 0.2);
    color: #F07455;
    border: 1px solid rgba(240, 116, 85, 0.4);
}

.badge-dj {
    background: rgba(74, 144, 217, 0.2);
    color: #4a90d9;
    border: 1px solid rgba(74, 144, 217, 0.4);
}

.badge-headliner {
    background: rgba(245, 165, 106, 0.2);
    color: #F5A56A;
    border: 1px solid rgba(245, 165, 106, 0.4);
}

.schedule-duration {
    font-size: 0.9rem;
    color: var(--text-muted);
}

@media (max-width: 600px) {
    .schedule-timeline::before {
        left: 71px;
    }

    .schedule-time {
        width: 60px;
        font-size: 1rem;
    }

    .schedule-name {
        font-size: 1.05rem;
    }

    .schedule-item-headliner .schedule-name {
        font-size: 1.5rem;
    }
}

/* ==================== Map Page ==================== */

.map-section {
    max-width: 600px;
    margin: 2rem auto;
}

.map-section .map-container {
    position: relative;
    width: 100%;
    overflow: visible;
    touch-action: pan-x pan-y;
}

.map-section .map-image {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
}

/* Pulse animation for house pins */
@keyframes pin-pulse {
    0% {
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3), 0 0 0 0 rgba(201, 36, 143, 0.5);
    }
    70% {
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3), 0 0 0 10px rgba(201, 36, 143, 0);
    }
    100% {
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3), 0 0 0 0 rgba(201, 36, 143, 0);
    }
}

.house-pin {
    position: absolute;
    transform: translate(-50%, -50%);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 3px solid var(--white);
    background: var(--accent);
    color: var(--white);
    font-family: var(--font-display);
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    z-index: 2;
    animation: pin-pulse 2.5s ease-out infinite;
}

.house-pin:hover {
    transform: translate(-50%, -50%) scale(1.2);
    box-shadow: 0 4px 16px rgba(201, 36, 143, 0.5);
    animation: none;
}

.house-pin:nth-child(2)  { background: #e74c3c; }
.house-pin:nth-child(3)  { background: #3498db; }
.house-pin:nth-child(4)  { background: #2ecc71; }
.house-pin:nth-child(5)  { background: #f39c12; }
.house-pin:nth-child(6)  { background: #9b59b6; }
.house-pin:nth-child(7)  { background: #1abc9c; }
.house-pin:nth-child(8)  { background: #e67e22; }
.house-pin:nth-child(9)  { background: #2980b9; }
.house-pin:nth-child(10) { background: #d35400; }
.house-pin:nth-child(11) { background: #27ae60; }
.house-pin:nth-child(12) { background: #8e44ad; }
.house-pin:nth-child(13) { background: #c0392b; }
.house-pin:nth-child(14) { background: #16a085; }

.house-pin.house-full {
    background: #666 !important;
    border-color: #999;
    cursor: pointer;
}

/* Modal */
.house-modal {
    border: none;
    border-radius: 16px;
    padding: 0;
    max-width: 450px;
    width: 90%;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    color: var(--text);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    margin: auto;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.house-modal::backdrop {
    background: rgba(0, 0, 0, 0.6);
}

.modal-content {
    padding: 2rem;
    position: relative;
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 1.5rem;
    cursor: pointer;
    line-height: 1;
    padding: 0.25rem;
}

.modal-close:hover {
    color: var(--white);
}

.modal-content h2 {
    color: var(--white);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.modal-status {
    margin-bottom: 1.5rem;
}

.modal-progress-bar {
    width: 100%;
    height: 10px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 5px;
    overflow: hidden;
    margin-bottom: 0.5rem;
}

.modal-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    border-radius: 5px;
    transition: width 0.3s;
}

.modal-form .form-row {
    margin-bottom: 1rem;
}

.modal-form label {
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 0.3rem;
}

.modal-form .submit-btn {
    width: 100%;
    margin-top: 0.5rem;
    padding: 0.8rem;
    font-size: 1.1rem;
    border: none;
    border-radius: 10px;
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    cursor: pointer;
    font-weight: 600;
    transition: opacity 0.2s;
}

.modal-form .submit-btn:hover {
    opacity: 0.9;
}

.modal-full-message {
    text-align: center;
    padding: 1.5rem 0;
    font-size: 1.1rem;
    color: var(--text-muted);
}

.modal-reservations {
    margin-bottom: 1.5rem;
}

.reservations-title {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
    margin-bottom: 0.75rem;
}

.modal-form-title {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
    margin-bottom: 0.75rem;
}

.no-reservations {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-style: italic;
}

.reservation-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.reservation-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.6rem 0.75rem;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    gap: 0.75rem;
}

.reservation-info {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    min-width: 0;
    flex: 1;
}

.reservation-name {
    font-size: 0.95rem;
    color: var(--white);
    font-weight: 500;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.reservation-status {
    font-size: 0.8rem;
}

.reservation-actions {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    flex-shrink: 0;
}

.res-tickets-input {
    width: 52px;
    padding: 0.3rem 0.4rem;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(0, 0, 0, 0.3);
    color: var(--white);
    font-size: 0.9rem;
    text-align: center;
}

.btn-save-res,
.btn-delete-res {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    padding: 0.25rem;
    border-radius: 4px;
    transition: background 0.2s;
}

.btn-save-res:disabled {
    opacity: 0.3;
    cursor: default;
}

.btn-save-res:not(:disabled):hover {
    background: rgba(92, 184, 92, 0.3);
}

.btn-delete-res:hover {
    background: rgba(255, 107, 107, 0.3);
}

.modal-feedback {
    margin-top: 1rem;
    padding: 0.8rem 1rem;
    border-radius: 8px;
    font-size: 0.95rem;
    text-align: center;
}

.feedback-success {
    background: rgba(92, 184, 92, 0.2);
    color: #5cb85c;
    border: 1px solid rgba(92, 184, 92, 0.3);
}

.feedback-error {
    background: rgba(255, 107, 107, 0.2);
    color: #ff6b6b;
    border: 1px solid rgba(255, 107, 107, 0.3);
}

/* House pin tooltip on hover */
.house-pin::after {
    content: attr(title);
    position: absolute;
    bottom: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.85);
    color: var(--white);
    padding: 0.3rem 0.6rem;
    border-radius: 6px;
    font-family: var(--font-body);
    font-size: 0.75rem;
    white-space: nowrap;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.2s;
    z-index: 10;
}

.house-pin:hover::after {
    opacity: 1;
}

@media (max-width: 480px) {
    .house-pin {
        width: 32px;
        height: 32px;
        font-size: 0.85rem;
        border-width: 2px;
    }

    /* Hide tooltips on touch devices */
    .house-pin::after {
        display: none;
    }

    .modal-content {
        padding: 1.5rem;
    }

    .map-section {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .map-section {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .map-section .map-container {
        min-width: 480px;
        width: max-content;
    }

    .map-section .map-image {
        min-width: 480px;
    }
}

.ticket-form-row {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: flex-end;
}

.ticket-form-row .form-group {
    flex: 1;
    min-width: 140px;
}

.ticket-form-row .submit-btn {
    flex-shrink: 0;
    align-self: flex-end;
}

.radio-group {
    display: flex;
    gap: 1rem;
    padding: 0.5rem 0;
}

.radio-group label {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    font-weight: normal;
    cursor: pointer;
}

.form-group-checkbox {
    display: flex;
    align-items: flex-end;
    padding-bottom: 0.4rem;
}

.form-group-checkbox label {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-weight: normal;
    cursor: pointer;
}
