      @import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Manrope:wght@400;600;800&display=swap");

      :root {
        --bg-1: #0a1026;
        --bg-2: #3d1d55;
        --bg-3: #ff4f8b;
        --text: #f7f7fb;
        --muted: #ced2eb;
        --line: rgba(255, 255, 255, 0.22);
        --panel: rgba(10, 11, 26, 0.42);
        --accent: #ffd166;
      }

      * {
        box-sizing: border-box;
      }

      html,
      body {
        margin: 0;
        min-height: 100%;
      }

      body {
        font-family: "Manrope", sans-serif;
        color: var(--text);
        background: radial-gradient(circle at 20% 10%, #5e2f86 0%, transparent 35%),
          radial-gradient(circle at 90% 25%, #ef476f 0%, transparent 25%),
          radial-gradient(circle at 15% 85%, #2d6cdf 0%, transparent 30%),
          linear-gradient(135deg, var(--bg-1), var(--bg-2) 45%, var(--bg-3));
        background-repeat: no-repeat;
        background-position: 20% 10%, 90% 25%, 15% 85%, center top;
        background-size: 160% 140%, 150% 130%, 150% 140%, cover;
        background-attachment: scroll;
      }

      .section {
        width: min(1120px, 92vw);
        margin: 0 auto;
      }

      .submit-festival-controls {
        position: fixed;
        top: 14px;
        right: 14px;
        z-index: 60;
        display: flex;
        align-items: center;
        gap: 0.55rem;
      }

      .submit-festival-fixed {
        text-decoration: none;
        color: #0f1020;
        background: var(--accent);
        border-radius: 999px;
        padding: 0.7rem 1rem;
        font-weight: 800;
        box-shadow: 0 10px 26px rgba(0, 0, 0, 0.35);
      }
      .language-dropdown-wrap {
        position: relative;
      }
      .language-dropdown.is-customized {
        display: none;
      }
      .custom-select--lang .custom-select-trigger {
        border-radius: 999px;
        border: 1px solid rgba(255, 255, 255, 0.35);
        background: rgba(10, 11, 26, 0.82);
        padding: 0.7rem 1rem;
        font-size: 1rem;
        font-weight: 800;
        box-shadow: 0 10px 26px rgba(0, 0, 0, 0.35);
        width: auto;
        gap: 0.4rem;
      }
      .custom-select--lang .custom-select-menu {
        left: auto;
        right: 0;
        min-width: 80px;
      }

      header {
        padding: 3.6rem 0 1.8rem;
      }

      h1 {
        margin: 0;
        font-family: "Bebas Neue", sans-serif;
        font-size: clamp(2.8rem, 10vw, 5.4rem);
        letter-spacing: 0.03em;
      }

      .sub {
        margin: 0.6rem 0 0;
        color: var(--muted);
      }

      .actions {
        margin-top: 1.2rem;
      }

      .button {
        display: inline-block;
        text-decoration: none;
        color: #0f1020;
        background: var(--accent);
        padding: 0.75rem 1.2rem;
        border-radius: 999px;
        font-weight: 800;
      }

      .block-title {
        margin: 0 0 0.8rem;
        font-family: "Bebas Neue", sans-serif;
        font-size: clamp(2rem, 6vw, 3.2rem);
        letter-spacing: 0.03em;
      }

      .spotlight {
        margin-bottom: 2.2rem;
      }

      .slider-shell {
        border: 1px solid var(--line);
        border-radius: 16px;
        background: var(--panel);
        backdrop-filter: blur(10px);
      }

      .slider-window {
        overflow: hidden;
      }

      .slider-track {
        display: flex;
        transition: transform 0.55s ease;
        will-change: transform;
      }

      .slide-card {
        min-width: 100%;
        border-right: 1px solid var(--line);
        padding: 2.2rem 2rem;
        background: rgba(255, 255, 255, 0.08);
      }

      .slide-inner {
        display: flex;
        align-items: flex-end;
        justify-content: space-between;
        gap: 1rem;
      }

      .slide-copy {
        max-width: 70ch;
      }

      .slide-card h3 {
        margin: 0 0 0.4rem;
        font-family: "Bebas Neue", sans-serif;
        font-size: clamp(2rem, 7vw, 4rem);
        letter-spacing: 0.03em;
        line-height: 0.95;
      }

      .slide-card p {
        margin: 0;
        color: var(--muted);
        font-size: clamp(1rem, 2vw, 1.2rem);
      }

      .ticket-btn {
        display: inline-block;
        text-decoration: none;
        color: #0f1020;
        background: var(--accent);
        padding: 0.7rem 1.1rem;
        border-radius: 999px;
        font-weight: 800;
        white-space: nowrap;
      }

      .slider-controls {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 0.8rem;
        padding: 0.8rem 1rem;
        border-top: 1px solid var(--line);
      }

      .slider-btn {
        border: 1px solid var(--line);
        background: rgba(255, 255, 255, 0.08);
        color: var(--text);
        padding: 0.5rem 0.9rem;
        border-radius: 999px;
        font-weight: 700;
        cursor: pointer;
      }

      .slider-btn:hover {
        background: rgba(255, 255, 255, 0.16);
      }

      .slider-dots {
        display: flex;
        align-items: center;
        gap: 0.4rem;
      }

      .slider-dot {
        width: 10px;
        height: 10px;
        border-radius: 999px;
        border: 0;
        cursor: pointer;
        background: rgba(255, 255, 255, 0.35);
      }

      .slider-dot.is-active {
        background: var(--accent);
      }

      .highlights {
        margin-bottom: 2.2rem;
      }

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

      .highlight-card {
        border: 1px solid var(--line);
        border-radius: 16px;
        background: var(--panel);
        backdrop-filter: blur(10px);
        padding: 1rem;
      }

      .highlight-card h3 {
        margin: 0 0 0.35rem;
      }

      .highlight-card .ticket-btn {
        margin: 0.5rem 0 0.9rem;
        padding: 0.82rem 1.3rem;
      }

      .highlight-card p {
        margin: 0 0 0.75rem;
        color: var(--muted);
      }

      .highlight-meta {
        font-size: 0.88rem;
        color: var(--accent);
        font-weight: 700;
      }

      .overview {
        margin-bottom: 1rem;
      }

      .filters-wrap {
        margin-bottom: 1rem;
        position: relative;
        z-index: 40;
      }

      .filters {
        border: 1px solid var(--line);
        border-radius: 16px;
        background: var(--panel);
        backdrop-filter: blur(10px);
        position: relative;
        z-index: 41;
        padding: 0.9rem;
        display: grid;
        gap: 0.7rem;
        grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
        align-items: end;
      }

      .filter-item label {
        display: block;
        font-size: 0.85rem;
        color: var(--muted);
        margin-bottom: 0.3rem;
      }

      .filter-item input,
      .filter-item select {
        width: 100%;
        padding: 0.6rem 0.7rem;
        border: 1px solid var(--line);
        border-radius: 10px;
        background: rgba(255, 255, 255, 0.08);
        color: var(--text);
      }

      .filter-item select.is-customized {
        position: absolute;
        width: 1px;
        height: 1px;
        padding: 0;
        margin: -1px;
        overflow: hidden;
        clip: rect(0, 0, 0, 0);
        white-space: nowrap;
        border: 0;
      }

      .custom-select {
        position: relative;
        z-index: 1;
      }

      .custom-select.is-open {
        z-index: 80;
      }

      .custom-select-trigger {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 0.6rem;
        padding: 0.6rem 0.7rem;
        border: 1px solid var(--line);
        border-radius: 10px;
        background: rgba(255, 255, 255, 0.08);
        color: var(--text);
        font-size: 0.95rem;
        cursor: pointer;
      }

      .custom-select-label {
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
      }

      .custom-select-chevron {
        opacity: 0.85;
        line-height: 1;
      }

      .custom-select-menu {
        position: absolute;
        left: 0;
        right: 0;
        top: calc(100% + 0.35rem);
        z-index: 90;
        display: none;
        padding: 0.35rem;
        border: 1px solid var(--line);
        border-radius: 10px;
        background: #171a2e;
        box-shadow: 0 10px 28px rgba(0, 0, 0, 0.25);
        max-height: 230px;
        overflow-y: auto;
      }

      .custom-select.is-open .custom-select-menu {
        display: block;
      }

      .custom-select-option {
        width: 100%;
        border: 0;
        background: transparent;
        color: var(--text);
        text-align: left;
        padding: 0.52rem 0.55rem;
        border-radius: 8px;
        font-size: 0.95rem;
        cursor: pointer;
      }

      .custom-select-option:hover,
      .custom-select-option.is-selected {
        background: rgba(255, 255, 255, 0.14);
      }

      .filter-actions {
        display: flex;
        gap: 0.6rem;
        align-items: center;
      }

      @media (max-width: 680px) {
        .submit-festival-controls {
          top: 10px;
          right: 10px;
          gap: 0.4rem;
        }
        .submit-festival-fixed {
          font-size: 0.82rem;
          padding: 0.62rem 0.85rem;
        }
        .custom-select--lang .custom-select-trigger {
          padding: 0.62rem 0.85rem;
          font-size: 0.82rem;
        }
        .filter-item label {
          font-size: 0.95rem;
        }
        .filter-item input,
        .custom-select-trigger,
        .custom-select-option,
        .filter-button,
        .filter-reset {
          font-size: 1rem;
        }
      }

      .filter-button {
        border: 0;
        border-radius: 999px;
        padding: 0.65rem 1rem;
        background: var(--accent);
        color: #0f1020;
        font-weight: 800;
        cursor: pointer;
      }

      .filter-reset {
        color: var(--text);
        text-decoration: none;
        border: 1px solid var(--line);
        border-radius: 999px;
        padding: 0.58rem 0.9rem;
      }

      .table-wrap {
        border: 1px solid var(--line);
        border-radius: 16px;
        background: var(--panel);
        backdrop-filter: blur(10px);
        overflow: auto;
        margin-bottom: 1rem;
      }

      #festivalPagination {
        margin-bottom: 2rem;
      }

      table {
        width: 100%;
        border-collapse: collapse;
        min-width: 740px;
      }

      th,
      td {
        padding: 0.95rem 1rem;
        text-align: left;
        border-bottom: 1px solid var(--line);
      }

      th {
        font-size: 0.85rem;
        text-transform: uppercase;
        letter-spacing: 0.08em;
        color: var(--muted);
      }

      td a {
        color: var(--accent);
        text-decoration: none;
        font-weight: 700;
      }

      td a:hover {
        text-decoration: underline;
      }
      .hot-badge {
        display: inline-block;
        margin-left: 0.35rem;
        color: #0f1020;
        background: #ff6b4a;
        border-radius: 999px;
        padding: 0.1rem 0.45rem;
        font-size: 0.72rem;
        font-weight: 800;
        letter-spacing: 0.03em;
      }

      .rating-vote {
        display: inline-flex;
        align-items: center;
        gap: 0.45rem;
      }

      .rating-btn {
        width: 32px;
        height: 32px;
        border-radius: 999px;
        border: 1px solid var(--line);
        background: rgba(255, 255, 255, 0.08);
        cursor: pointer;
        font-size: 16px;
        line-height: 1;
      }

      .rating-btn.up {
        color: #31d17a;
      }

      .rating-btn.down {
        color: #ff5f73;
      }

      .rating-score {
        min-width: 52px;
        text-align: center;
        font-weight: 800;
        color: var(--text);
      }

      tbody tr:hover {
        background: rgba(255, 255, 255, 0.05);
      }

      footer {
        border-top: 1px solid var(--line);
        color: var(--muted);
        padding: 1rem 0 2rem;
      }

      .footer-row {
        width: min(1120px, 92vw);
        margin: 0 auto;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between;
        gap: 0.8rem;
      }

      .footer-contact {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: 1rem;
      }

      .footer-contact a {
        color: var(--text);
        text-decoration: none;
      }

      .footer-contact a:hover {
        text-decoration: underline;
      }

      .social-link {
        display: inline-flex;
        align-items: center;
        gap: 0.4rem;
      }

      .legal-links {
        width: min(1120px, 92vw);
        margin: 0.45rem auto 0;
        display: flex;
        gap: 0.9rem;
        flex-wrap: wrap;
      }

      .legal-links a {
        color: var(--muted);
        text-decoration: none;
        font-size: 0.88rem;
      }

      .legal-links a:hover {
        color: var(--text);
        text-decoration: underline;
      }

      @media (max-width: 740px) {
        .slide-card {
          padding: 1.6rem 1.1rem;
        }

        .slide-inner {
          flex-direction: column;
          align-items: flex-start;
        }
      }
