body {
    font-family: 'Inter', sans-serif;
}

.hero-bg {
    background-image:
        radial-gradient(circle at 20% 20%, rgba(249, 115, 22, 0.4), transparent 55%),
        radial-gradient(circle at 80% 10%, rgba(139, 92, 246, 0.35), transparent 50%),
        linear-gradient(rgba(15, 23, 42, 0.85), rgba(15, 23, 42, 0.95)),
        url('https://images.unsplash.com/photo-1485846234645-a62644f84728?auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.hero-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 120%, rgba(248, 113, 113, 0.35), transparent 65%);
    pointer-events: none;
}

/* Style for the modal backdrop */
.modal-backdrop {
    background-color: rgba(0, 0, 0, 0.75);
}

/* Theater Owner dashboard */
.owner-dashboard {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.owner-hero-panel {
    position: relative;
    display: grid;
    gap: clamp(2rem, 4vw, 3rem);
    padding: clamp(2.5rem, 4vw, 3.5rem);
    border-radius: 30px;
    border: 1px solid rgba(148, 163, 184, 0.25);
    background:
        radial-gradient(circle at 15% -10%, rgba(248, 113, 113, 0.35), transparent 55%),
        radial-gradient(circle at 85% 120%, rgba(129, 140, 248, 0.3), transparent 60%),
        linear-gradient(135deg, rgba(15, 23, 42, 0.92), rgba(30, 27, 75, 0.88));
    overflow: hidden;
}

.owner-hero-panel::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(140deg, rgba(236, 72, 153, 0.12), transparent 40%, rgba(99, 102, 241, 0.18));
    pointer-events: none;
}

.owner-hero-panel > * {
    position: relative;
    z-index: 1;
}

@media (min-width: 1024px) {
    .owner-hero-panel {
        grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
        align-items: center;
    }
}

.owner-hero-copy {
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
}

.owner-hero-eyebrow {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    color: rgba(244, 244, 255, 0.7);
}

.owner-hero-title {
    font-size: clamp(2.2rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.1;
}

.owner-hero-summary {
    color: rgba(226, 232, 240, 0.85);
    font-size: 1.05rem;
    max-width: 36rem;
}

.owner-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
}

.owner-primary-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 1.75rem;
    border-radius: 9999px;
    background: linear-gradient(120deg, #f97316, #ef4444, #8b5cf6);
    color: #fff;
    font-weight: 700;
    letter-spacing: 0.02em;
    box-shadow: 0 15px 30px rgba(239, 68, 68, 0.35);
    transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
}

.owner-primary-btn:hover {
    transform: translateY(-2px);
    filter: brightness(1.05);
    box-shadow: 0 18px 32px rgba(129, 140, 248, 0.35);
}

.owner-secondary-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 1.5rem;
    border-radius: 9999px;
    border: 1px solid rgba(148, 163, 184, 0.5);
    color: rgba(224, 231, 255, 0.9);
    font-weight: 600;
    backdrop-filter: blur(6px);
    background: rgba(15, 23, 42, 0.55);
    transition: border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.owner-secondary-btn:hover {
    border-color: rgba(236, 72, 153, 0.6);
    color: #fef3c7;
    transform: translateY(-1px);
}

.owner-hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1rem;
}

.owner-hero-stat-card {
    padding: 1.4rem;
    border-radius: 22px;
    background: rgba(15, 23, 42, 0.78);
    border: 1px solid rgba(148, 163, 184, 0.35);
    box-shadow: inset 0 0 0 1px rgba(248, 250, 252, 0.06);
}

.owner-hero-stat-card--wide {
    min-width: clamp(220px, 28vw, 320px);
}

.owner-hero-stat-card--wide .owner-hero-stat-value {
    white-space: nowrap;
}

.owner-hero-stat-value {
    font-size: 2.25rem;
    font-weight: 700;
    color: #fbbf24;
}

.owner-hero-stat-label {
    font-size: 0.85rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(226, 232, 240, 0.7);
}

.owner-main-grid {
    display: grid;
    gap: 2.5rem;
}

@media (min-width: 1024px) {
    .owner-main-grid {
        grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
        align-items: start;
    }

    .owner-hero-stat-card--wide {
        grid-column: span 2;
    }
}

.owner-main-column,
.owner-side-column {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.owner-card {
    background: rgba(15, 23, 42, 0.82);
    border-radius: 26px;
    border: 1px solid rgba(71, 85, 105, 0.45);
    padding: clamp(1.8rem, 3vw, 2.4rem);
    display: flex;
    flex-direction: column;
    gap: 2rem;
    box-shadow: 0 24px 40px rgba(15, 23, 42, 0.35);
}

.owner-card--primary {
    background:
        radial-gradient(circle at 10% 5%, rgba(236, 72, 153, 0.2), transparent 60%),
        radial-gradient(circle at 90% 100%, rgba(129, 140, 248, 0.2), transparent 55%),
        rgba(17, 24, 39, 0.92);
}

.owner-card--accent {
    background:
        radial-gradient(circle at 20% -10%, rgba(56, 189, 248, 0.28), transparent 60%),
        rgba(15, 23, 42, 0.85);
    border-color: rgba(96, 165, 250, 0.45);
}

.owner-card-header {
    display: flex;
    justify-content: space-between;
    gap: 1.5rem;
}

.owner-card-header--wrap {
    flex-wrap: wrap;
}

.owner-card-eyebrow {
    font-size: 0.75rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(148, 163, 184, 0.8);
    margin-bottom: 0.5rem;
}

.owner-card-title {
    font-size: clamp(1.6rem, 3vw, 2rem);
    font-weight: 700;
    line-height: 1.2;
}

.owner-note {
    max-width: 26rem;
    font-size: 0.95rem;
    color: rgba(203, 213, 225, 0.8);
}

.owner-feature-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.owner-feature-list li {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1.25rem;
    align-items: start;
}

.owner-feature-list h4 {
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.owner-feature-list p {
    color: rgba(203, 213, 225, 0.85);
    font-size: 0.95rem;
}

.owner-feature-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: rgba(236, 72, 153, 0.2);
    box-shadow: inset 0 0 0 1px rgba(236, 72, 153, 0.3);
    font-size: 1.25rem;
}

.owner-venue-grid {
    display: grid;
    gap: 1.75rem;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.owner-empty {
    padding: 2.5rem;
    border-radius: 22px;
    background: rgba(15, 23, 42, 0.65);
    border: 1px dashed rgba(148, 163, 184, 0.45);
    text-align: center;
    color: rgba(209, 213, 219, 0.75);
    font-size: 0.95rem;
}

.owner-venue-card {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding: 1.85rem;
    border-radius: 22px;
    background: rgba(17, 24, 39, 0.9);
    border: 1px solid rgba(88, 28, 135, 0.4);
    box-shadow: 0 16px 32px rgba(24, 24, 27, 0.35);
}

.owner-venue-header {
    display: flex;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.owner-venue-name {
    font-size: 1.4rem;
    font-weight: 700;
}

.owner-venue-location {
    color: rgba(203, 213, 225, 0.75);
    font-size: 0.95rem;
    margin-top: 0.35rem;
}

.owner-venue-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.owner-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.35rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 600;
    border: 1px solid rgba(148, 163, 184, 0.4);
    color: rgba(224, 231, 255, 0.85);
    background: rgba(30, 41, 59, 0.7);
}

.owner-badge--success {
    background: rgba(16, 185, 129, 0.2);
    border-color: rgba(16, 185, 129, 0.4);
    color: #6ee7b7;
}

.owner-badge--highlight {
    background: rgba(129, 140, 248, 0.2);
    border-color: rgba(129, 140, 248, 0.5);
    color: #c7d2fe;
}

.owner-venue-description {
    color: rgba(226, 232, 240, 0.8);
    font-size: 0.95rem;
}

.owner-venue-meta {
    display: grid;
    gap: 1.25rem;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.owner-venue-meta div {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.owner-venue-meta dt {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(148, 163, 184, 0.75);
}

.owner-venue-meta dd {
    margin: 0;
    font-size: 0.95rem;
    color: rgba(226, 232, 240, 0.85);
}

.owner-venue-footer {
    margin-top: auto;
}

.owner-manage-btn {
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 1.25rem;
    border-radius: 16px;
    background: linear-gradient(120deg, rgba(236, 72, 153, 0.2), rgba(129, 140, 248, 0.2));
    border: 1px solid rgba(236, 72, 153, 0.35);
    color: #fdf4ff;
    font-weight: 600;
    transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.owner-manage-btn:hover {
    transform: translateY(-1px);
    background: linear-gradient(120deg, rgba(236, 72, 153, 0.32), rgba(129, 140, 248, 0.32));
    box-shadow: 0 12px 24px rgba(236, 72, 153, 0.25);
}

.owner-steps {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin: 0;
    padding: 0;
}

.owner-steps li {
    background: rgba(15, 23, 42, 0.65);
    border-radius: 18px;
    padding: 1.25rem 1.4rem;
    border: 1px solid rgba(96, 165, 250, 0.35);
}

.owner-steps h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.35rem;
}

.owner-steps p {
    margin: 0;
    color: rgba(203, 213, 225, 0.8);
    font-size: 0.95rem;
}

.owner-insights {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.owner-insights article {
    background: rgba(17, 24, 39, 0.75);
    border-radius: 18px;
    padding: 1.35rem 1.5rem;
    border: 1px solid rgba(99, 102, 241, 0.35);
    box-shadow: inset 0 0 0 1px rgba(15, 23, 42, 0.45);
}

.owner-insights h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.35rem;
}

.owner-insights p {
    margin: 0;
    color: rgba(203, 213, 225, 0.82);
    font-size: 0.95rem;
}

/* Film Fan dashboard */
.fan-hero-panel {
    position: relative;
    display: grid;
    gap: 2.5rem;
    padding: clamp(2rem, 3vw, 3.5rem);
    border-radius: 24px;
    border: 1px solid rgba(148, 163, 184, 0.25);
    background:
        radial-gradient(circle at 15% -10%, rgba(251, 191, 36, 0.25), transparent 60%),
        radial-gradient(circle at 85% 120%, rgba(56, 189, 248, 0.25), transparent 65%),
        linear-gradient(135deg, rgba(15, 23, 42, 0.92), rgba(30, 41, 59, 0.88));
    overflow: hidden;
}

.fan-hero-panel::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.18), transparent 35%, rgba(79, 70, 229, 0.18));
    pointer-events: none;
}

.fan-hero-panel > * {
    position: relative;
    z-index: 1;
}

@media (min-width: 1024px) {
    .fan-hero-panel {
        grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
        align-items: center;
    }
}

.fan-hero-copy {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.fan-hero-eyebrow {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: rgba(248, 250, 252, 0.75);
}

.fan-hero-title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 800;
    line-height: 1.15;
}

.fan-hero-summary {
    color: rgba(226, 232, 240, 0.85);
    font-size: 1rem;
}

.fan-hero-subcopy {
    color: rgba(203, 213, 225, 0.8);
    font-size: 0.95rem;
}

.fan-hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1rem;
}

.fan-hero-stat-card {
    padding: 1.25rem;
    border-radius: 20px;
    background: rgba(15, 23, 42, 0.75);
    border: 1px solid rgba(148, 163, 184, 0.25);
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.fan-hero-stat-value {
    font-size: 2.25rem;
    font-weight: 700;
    color: #fbbf24;
}

.fan-hero-stat-label {
    font-size: 0.85rem;
    color: rgba(226, 232, 240, 0.75);
}

.fan-search-card {
    padding: clamp(1.75rem, 3vw, 2.5rem);
    border-radius: 24px;
    background: rgba(15, 23, 42, 0.82);
    border: 1px solid rgba(71, 85, 105, 0.4);
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}

.fan-search-header {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

@media (min-width: 768px) {
    .fan-search-header {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-end;
    }
}

.fan-section-title {
    font-size: clamp(1.5rem, 2vw, 1.85rem);
    font-weight: 700;
}

.fan-section-subtitle {
    color: rgba(203, 213, 225, 0.8);
    font-size: 0.95rem;
    max-width: 48rem;
}

.fan-link-reset {
    font-size: 0.9rem;
    color: #38bdf8;
    text-decoration: underline;
    align-self: flex-start;
}

.fan-search-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.25rem;
}

.fan-field {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.fan-field--wide {
    grid-column: span 2;
}

@media (min-width: 1024px) {
    .fan-field--wide {
        grid-column: span 3;
    }
}

.fan-field--full {
    grid-column: 1 / -1;
}

.fan-field-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(148, 163, 184, 0.85);
}

.fan-input,
.fan-select {
    width: 100%;
    padding: 0.75rem 1rem;
    border-radius: 14px;
    border: 1px solid rgba(71, 85, 105, 0.65);
    background-color: rgba(15, 23, 42, 0.8);
    color: #f8fafc;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.fan-input:focus,
.fan-select:focus {
    outline: none;
    border-color: rgba(248, 113, 113, 0.65);
    box-shadow: 0 0 0 3px rgba(248, 113, 113, 0.2);
}

.fan-search-toggles {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
    align-items: center;
    padding-top: 0.75rem;
}

.fan-toggle {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    color: rgba(226, 232, 240, 0.9);
}

.fan-toggle-input {
    width: 1.1rem;
    height: 1.1rem;
    border-radius: 6px;
    border: 1px solid rgba(71, 85, 105, 0.8);
    background-color: rgba(15, 23, 42, 0.8);
    accent-color: #ef4444;
}

.fan-discovery-grid {
    display: grid;
    gap: 1.75rem;
}

@media (min-width: 1024px) {
    .fan-discovery-grid {
        grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
        align-items: stretch;
    }
}

.fan-map-card,
.fan-results-card {
    background: rgba(15, 23, 42, 0.82);
    border-radius: 24px;
    border: 1px solid rgba(71, 85, 105, 0.45);
    padding: clamp(1.75rem, 3vw, 2.25rem);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.fan-map {
    position: relative;
    width: 100%;
    min-height: 320px;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(71, 85, 105, 0.45);
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.9), rgba(15, 23, 42, 0.9));
}

@media (min-width: 768px) {
    .fan-map {
        min-height: 420px;
    }
}

.fan-map-fallback {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    text-align: center;
    padding: 1.5rem;
    color: rgba(203, 213, 225, 0.85);
    font-size: 0.95rem;
    background: repeating-linear-gradient(135deg, rgba(59, 130, 246, 0.12), rgba(59, 130, 246, 0.12) 12px, rgba(59, 130, 246, 0.05) 12px, rgba(59, 130, 246, 0.05) 24px);
}

.fan-map-status {
    font-size: 0.9rem;
    color: rgba(148, 163, 184, 0.85);
}

.fan-results-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 1rem;
}

.fan-results-count {
    font-size: clamp(2.5rem, 4vw, 3rem);
    font-weight: 800;
    color: #f97316;
}

.fan-eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 0.75rem;
    color: rgba(148, 163, 184, 0.75);
}

.fan-results-summary {
    font-size: 0.9rem;
    color: rgba(148, 163, 184, 0.9);
}

.fan-results-list {
    display: grid;
    gap: 1.25rem;
}

.fan-empty-state,
.fan-empty-inline {
    border-radius: 20px;
    border: 1px dashed rgba(100, 116, 139, 0.6);
    background: rgba(15, 23, 42, 0.6);
    padding: 1.75rem;
    text-align: center;
    color: rgba(148, 163, 184, 0.85);
    font-size: 0.95rem;
}

.fan-empty-inline {
    border-style: solid;
    margin-top: 1rem;
}

.fan-theater-section,
.fan-featured-section {
    background: rgba(15, 23, 42, 0.82);
    border-radius: 24px;
    border: 1px solid rgba(71, 85, 105, 0.4);
    padding: clamp(1.75rem, 3vw, 2.25rem);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.fan-section-heading {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

@media (min-width: 900px) {
    .fan-section-heading {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
    }
}

.fan-theater-grid {
    display: grid;
    gap: 1.25rem;
}

@media (min-width: 768px) {
    .fan-theater-grid {
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    }
}

.fan-theater-card {
    position: relative;
    border-radius: 20px;
    padding: 1.5rem;
    border: 1px solid rgba(71, 85, 105, 0.45);
    background: rgba(15, 23, 42, 0.78);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    overflow: hidden;
}

.fan-theater-card::before {
    content: "";
    position: absolute;
    inset: -40% 40% 40% -40%;
    background: linear-gradient(135deg, var(--fan-accent, rgba(244, 114, 182, 0.28)), transparent);
    opacity: 0.6;
    pointer-events: none;
}

.fan-theater-card > * {
    position: relative;
    z-index: 1;
}

.fan-theater-card h4 {
    font-size: 1.25rem;
    font-weight: 600;
}

.fan-theater-card__badge {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: rgba(226, 232, 240, 0.75);
}

.fan-theater-card__meta {
    font-size: 0.95rem;
    color: rgba(226, 232, 240, 0.8);
}

.fan-theater-card__time {
    font-size: 0.85rem;
    color: rgba(148, 163, 184, 0.85);
}

.fan-theater-card__actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.fan-featured-grid {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 1024px) {
    .fan-featured-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

.fan-featured-card {
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid rgba(71, 85, 105, 0.45);
    background: rgba(15, 23, 42, 0.78);
    display: flex;
    flex-direction: column;
}

.fan-featured-card__media {
    position: relative;
    height: 180px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
}

.fan-featured-card__overlay {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(180deg, transparent, rgba(15, 23, 42, 0.8));
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.fan-featured-card__overlay p {
    font-size: 0.9rem;
}

.fan-featured-card__body {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    padding: 1.5rem;
}

.fan-featured-card__body h4 {
    font-size: 1.2rem;
    font-weight: 600;
}

.fan-featured-card__body p {
    color: rgba(203, 213, 225, 0.85);
    font-size: 0.95rem;
}

.fan-featured-card__meta {
    display: flex;
    gap: 0.75rem;
    font-size: 0.85rem;
    color: rgba(148, 163, 184, 0.85);
    flex-wrap: wrap;
}

.fan-featured-card__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.fan-featured-card__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.fan-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    border-radius: 999px;
    padding: 0.25rem 0.75rem;
    background: rgba(148, 163, 184, 0.2);
    color: rgba(226, 232, 240, 0.9);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.fan-chip--premiere {
    background: rgba(251, 191, 36, 0.2);
    color: #fbbf24;
}

.fan-pill-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    border-radius: 999px;
    padding: 0.55rem 1.1rem;
    font-size: 0.9rem;
    font-weight: 600;
    background: linear-gradient(135deg, #ef4444, #f97316);
    color: #fff;
    border: none;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.fan-pill-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(239, 68, 68, 0.35);
}

.fan-link-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.9rem;
    color: #38bdf8;
    text-decoration: none;
    padding: 0.5rem 0.85rem;
    border-radius: 999px;
    border: 1px solid rgba(56, 189, 248, 0.35);
    transition: border-color 0.2s ease, color 0.2s ease;
}

.fan-link-btn:hover {
    border-color: rgba(56, 189, 248, 0.65);
    color: #bae6fd;
}

.fan-card {
    position: relative;
    border-radius: 22px;
    padding: 1.75rem;
    border: 1px solid rgba(71, 85, 105, 0.45);
    background: rgba(15, 23, 42, 0.78);
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    overflow: hidden;
}

.fan-card::before {
    content: "";
    position: absolute;
    inset: -35% 45% 35% -35%;
    background: linear-gradient(135deg, var(--fan-accent, rgba(244, 114, 182, 0.25)), transparent 70%);
    opacity: 0.65;
    pointer-events: none;
}

.fan-card > * {
    position: relative;
    z-index: 1;
}

.fan-card__header {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

@media (min-width: 640px) {
    .fan-card__header {
        flex-direction: row;
        justify-content: space-between;
        gap: 1.25rem;
    }
}

.fan-card__time {
    font-size: 0.9rem;
    color: rgba(148, 163, 184, 0.85);
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.fan-card__title h3 {
    font-size: 1.35rem;
    font-weight: 600;
}

.fan-card__title p {
    font-size: 0.95rem;
    color: rgba(203, 213, 225, 0.85);
}

.fan-card__distance {
    font-size: 0.85rem;
    color: rgba(248, 250, 252, 0.75);
}

.fan-card__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
}

.fan-card__logline {
    font-size: 0.95rem;
    color: rgba(226, 232, 240, 0.85);
}

.fan-card__meta {
    display: grid;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: rgba(148, 163, 184, 0.85);
}

@media (min-width: 640px) {
    .fan-card__meta {
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    }
}

.fan-card__price {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.fan-card__price-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: #34d399;
}

.fan-card__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    align-items: center;
}

.fan-card__cta {
    padding: 0.65rem 1.2rem;
    border-radius: 12px;
    font-weight: 600;
    background: linear-gradient(135deg, #ef4444, #ec4899);
    border: none;
    cursor: pointer;
    color: #fff;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.fan-card__cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(236, 72, 153, 0.35);
}

.fan-card__cta[disabled] {
    background: rgba(71, 85, 105, 0.8);
    color: rgba(148, 163, 184, 0.8);
    cursor: not-allowed;
    box-shadow: none;
}

.fan-card__footer {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.fan-card__alert {
    font-size: 0.9rem;
    color: #fbbf24;
}

.fan-map-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    max-width: 280px;
    font-size: 0.9rem;
    color: #0f172a;
}

.fan-map-info__cta {
    background: linear-gradient(135deg, #ef4444, #f97316);
    color: #fff;
    border: none;
    border-radius: 999px;
    padding: 0.4rem 1rem;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
}

.fan-map-info__link {
    color: #1d4ed8;
    text-decoration: none;
    font-weight: 600;
}

/* Filmmaker dashboard */
.maker-dashboard {
    color: #f8fafc;
}

.maker-hero-panel {
    position: relative;
    display: grid;
    gap: clamp(2rem, 3vw, 3.25rem);
    padding: clamp(2rem, 4vw, 3.75rem);
    border-radius: 32px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background:
        radial-gradient(circle at 10% -20%, rgba(236, 72, 153, 0.28), transparent 55%),
        radial-gradient(circle at 90% 120%, rgba(56, 189, 248, 0.22), transparent 65%),
        linear-gradient(135deg, rgba(17, 24, 39, 0.92), rgba(2, 6, 23, 0.88));
}

.maker-hero-panel::before {
    content: "";
    position: absolute;
    inset: -30% -10% 40% 30%;
    background: radial-gradient(circle, rgba(251, 191, 36, 0.35), transparent 60%);
    filter: blur(60px);
    opacity: 0.8;
}

.maker-hero-panel > * {
    position: relative;
    z-index: 1;
}

@media (min-width: 1024px) {
    .maker-hero-panel {
        grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
        align-items: center;
    }
}

.maker-hero-copy {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.maker-hero-eyebrow {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    color: rgba(251, 191, 36, 0.8);
}

.maker-hero-title {
    font-size: clamp(2.25rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.1;
}

.maker-hero-summary {
    color: rgba(226, 232, 240, 0.85);
    font-size: 1rem;
    max-width: 42rem;
}

.maker-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
}

.maker-status-chip {
    display: inline-flex;
    flex-direction: column;
    gap: 0.35rem;
    padding: 0.75rem 1.25rem;
    border-radius: 18px;
    border: 1px solid rgba(248, 250, 252, 0.1);
    background: rgba(15, 23, 42, 0.65);
    backdrop-filter: blur(6px);
}

.maker-status-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: rgba(148, 163, 184, 0.85);
}

.maker-status-value {
    font-weight: 700;
    font-size: 1rem;
    transition: color 0.25s ease;
}

.maker-status-value--draft {
    color: #fbbf24;
}

.maker-status-value--progress {
    color: #38bdf8;
}

.maker-status-value--ready {
    color: #34d399;
}

.maker-secondary-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.6rem 1.4rem;
    border-radius: 999px;
    border: 1px solid rgba(248, 113, 113, 0.5);
    color: #f8fafc;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    background: rgba(248, 113, 113, 0.15);
    transition: all 0.2s ease;
}

.maker-secondary-btn:hover {
    background: rgba(248, 113, 113, 0.25);
    border-color: rgba(248, 113, 113, 0.7);
}

.maker-hero-stat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
}

.maker-hero-stat-card {
    padding: 1.25rem;
    border-radius: 20px;
    background: rgba(15, 23, 42, 0.78);
    border: 1px solid rgba(148, 163, 184, 0.25);
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.maker-hero-stat-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: rgba(148, 163, 184, 0.8);
}

.maker-hero-stat-value {
    font-size: 2.4rem;
    font-weight: 700;
    color: #fcd34d;
}

.maker-hero-stat-value--currency {
    font-size: 2rem;
    color: #38bdf8;
}

.maker-main-grid {
    display: grid;
    gap: 2.5rem;
}

@media (min-width: 1024px) {
    .maker-main-grid {
        grid-template-columns: minmax(0, 2.5fr) minmax(0, 1fr);
        align-items: start;
    }
}

.maker-main-column,
.maker-side-column {
    display: flex;
    flex-direction: column;
}

.maker-card {
    background: rgba(15, 23, 42, 0.82);
    border-radius: 26px;
    border: 1px solid rgba(148, 163, 184, 0.2);
    padding: clamp(1.75rem, 3vw, 2.5rem);
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
    box-shadow: 0 18px 36px rgba(15, 23, 42, 0.4);
}

.maker-card--primary {
    background: radial-gradient(circle at 10% -10%, rgba(251, 191, 36, 0.18), transparent 60%),
        radial-gradient(circle at 120% 10%, rgba(56, 189, 248, 0.18), transparent 65%),
        rgba(15, 23, 42, 0.88);
}

.maker-card--accent {
    background: linear-gradient(145deg, rgba(126, 34, 206, 0.35), rgba(59, 130, 246, 0.25));
}

.maker-card--search {
    background: linear-gradient(160deg, rgba(30, 58, 138, 0.4), rgba(15, 23, 42, 0.88));
}

.maker-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1.5rem;
}

.maker-card-header--wrap {
    flex-wrap: wrap;
}

.maker-card-eyebrow {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: rgba(148, 163, 184, 0.8);
    margin-bottom: 0.4rem;
}

.maker-card-title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    line-height: 1.2;
}

.maker-note {
    color: rgba(203, 213, 225, 0.78);
    font-size: 0.9rem;
}

.maker-form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.25rem 1.5rem;
}

.maker-field {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.maker-field--full {
    grid-column: 1 / -1;
}

.maker-field--wide {
    grid-column: span 2;
}

@media (max-width: 768px) {
    .maker-field--wide {
        grid-column: span 1;
    }
}

.maker-field-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(148, 163, 184, 0.85);
}

.maker-input,
.maker-select,
.maker-textarea {
    width: 100%;
    border-radius: 16px;
    border: 1px solid rgba(148, 163, 184, 0.4);
    background: rgba(2, 6, 23, 0.75);
    color: #f8fafc;
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.maker-input:focus,
.maker-select:focus,
.maker-textarea:focus {
    outline: none;
    border-color: rgba(248, 113, 113, 0.7);
    box-shadow: 0 0 0 4px rgba(248, 113, 113, 0.15);
}

.maker-select {
    appearance: none;
    background-image: linear-gradient(45deg, transparent 50%, rgba(248, 113, 113, 0.7) 50%),
        linear-gradient(135deg, rgba(248, 113, 113, 0.7) 50%, transparent 50%);
    background-position: calc(100% - 20px) calc(1.2em), calc(100% - 15px) calc(1.2em);
    background-size: 5px 5px;
    background-repeat: no-repeat;
}

.maker-textarea {
    min-height: 120px;
    resize: vertical;
}

.maker-field--toggle {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
    color: rgba(226, 232, 240, 0.85);
}

.maker-checkbox {
    width: 1.1rem;
    height: 1.1rem;
    border-radius: 6px;
    border: 1px solid rgba(248, 113, 113, 0.5);
    background: rgba(15, 23, 42, 0.6);
}

.maker-field--actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 1rem;
}

.maker-primary-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    padding: 0.75rem 1.6rem;
    border-radius: 999px;
    background: linear-gradient(135deg, #ef4444, #ec4899);
    color: #fff;
    font-weight: 700;
    font-size: 0.95rem;
    border: none;
    cursor: pointer;
    box-shadow: 0 12px 24px rgba(236, 72, 153, 0.3);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.maker-primary-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 16px 32px rgba(236, 72, 153, 0.35);
}

.maker-link-reset {
    background: none;
    border: none;
    color: #38bdf8;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: underline;
    cursor: pointer;
    padding: 0;
}

.maker-feedback {
    border-radius: 16px;
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
    background: rgba(15, 23, 42, 0.7);
    border: 1px solid transparent;
}

.maker-feedback--success {
    color: #bbf7d0;
    border-color: rgba(34, 197, 94, 0.45);
}

.maker-feedback--error {
    color: #fecaca;
    border-color: rgba(248, 113, 113, 0.45);
}

.maker-feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.25rem;
}

.maker-feature-card {
    background: rgba(15, 23, 42, 0.7);
    border-radius: 18px;
    border: 1px solid rgba(148, 163, 184, 0.25);
    padding: 1.1rem 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.maker-feature-icon {
    font-size: 1.5rem;
}

.maker-feature-card h4 {
    font-weight: 600;
    font-size: 1rem;
}

.maker-feature-card p {
    font-size: 0.9rem;
    color: rgba(203, 213, 225, 0.8);
}

.maker-metric {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.35rem;
    padding: 0.75rem 1rem;
    border-radius: 16px;
    border: 1px solid rgba(59, 130, 246, 0.35);
    background: rgba(30, 64, 175, 0.35);
}

.maker-metric-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: rgba(191, 219, 254, 0.8);
}

.maker-metric-value {
    font-size: 2.5rem;
    font-weight: 700;
}

.maker-filter-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.1rem 1.5rem;
}

.maker-slot-stack,
.maker-booking-stack {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.maker-slot-card {
    background: rgba(15, 23, 42, 0.9);
    border-radius: 24px;
    border: 1px solid rgba(148, 163, 184, 0.3);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.4rem;
    box-shadow: 0 18px 32px rgba(15, 23, 42, 0.45);
}

.maker-slot-header {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

@media (min-width: 768px) {
    .maker-slot-header {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
    }
}

.maker-slot-title {
    font-size: 1.4rem;
    font-weight: 600;
}

.maker-slot-location,
.maker-slot-time {
    font-size: 0.95rem;
    color: rgba(203, 213, 225, 0.78);
}

.maker-slot-price {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    align-items: flex-end;
}

.maker-tag {
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0.75rem;
    border-radius: 999px;
    border: 1px solid rgba(56, 189, 248, 0.5);
    background: rgba(59, 130, 246, 0.2);
    font-size: 0.8rem;
}

.maker-price-tag {
    font-size: 1.8rem;
    font-weight: 700;
    color: #34d399;
}

.maker-slot-subprice {
    font-size: 0.8rem;
    color: rgba(203, 213, 225, 0.7);
}

.maker-slot-meta {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1rem;
}

.maker-slot-meta dt {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: rgba(148, 163, 184, 0.8);
    margin-bottom: 0.2rem;
}

.maker-slot-meta dd {
    font-size: 0.95rem;
    color: rgba(226, 232, 240, 0.88);
}

.maker-slot-footer {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

@media (min-width: 768px) {
    .maker-slot-footer {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
}

.maker-slot-highlight {
    font-size: 0.9rem;
    color: rgba(203, 213, 225, 0.8);
}

.maker-booking-card {
    background: rgba(15, 23, 42, 0.88);
    border-radius: 22px;
    border: 1px solid rgba(148, 163, 184, 0.28);
    padding: 1.35rem;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.maker-booking-header {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

@media (min-width: 640px) {
    .maker-booking-header {
        flex-direction: row;
        align-items: flex-start;
        justify-content: space-between;
    }
}

.maker-booking-title {
    font-size: 1.2rem;
    font-weight: 600;
}

.maker-booking-time,
.maker-booking-film {
    font-size: 0.9rem;
    color: rgba(203, 213, 225, 0.75);
}

.maker-status-pill {
    display: inline-flex;
    align-items: center;
    padding: 0.35rem 0.85rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.maker-status-pill--reserved {
    background: rgba(251, 191, 36, 0.2);
    color: #fbbf24;
}

.maker-status-pill--confirmed {
    background: rgba(16, 185, 129, 0.2);
    color: #34d399;
}

.maker-status-pill--completed {
    background: rgba(96, 165, 250, 0.2);
    color: #60a5fa;
}

.maker-status-pill--cancelled {
    background: rgba(148, 163, 184, 0.2);
    color: rgba(148, 163, 184, 0.9);
}

.maker-booking-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 0.9rem;
}

.maker-booking-grid span {
    display: block;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: rgba(148, 163, 184, 0.75);
    margin-bottom: 0.2rem;
}

.maker-booking-grid p {
    font-size: 0.95rem;
    color: rgba(226, 232, 240, 0.88);
}

.maker-booking-actions {
    display: flex;
    justify-content: flex-end;
}

.maker-booking-actions button {
    background: none;
    border: none;
    color: #fda4af;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
}

.maker-booking-actions button:hover {
    color: #fecdd3;
}

.maker-empty {
    border: 1px dashed rgba(148, 163, 184, 0.4);
    border-radius: 20px;
    padding: 1.5rem;
    text-align: center;
    font-size: 0.95rem;
    color: rgba(203, 213, 225, 0.7);
    background: rgba(15, 23, 42, 0.6);
}

