body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, sans-serif;
    color: white;
    min-height: 100vh;
    overflow-y: auto;
  }
  
  /* 🎬 Cinematic background */
  body::before {
    content: "";
    position: fixed;
    inset: 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 25%, #0f3460 50%, #e94560 100%);
    background-attachment: fixed;
    filter: brightness(0.7);
    z-index: -2;
  }
  
  /* Film strip effect (disabled) */
  /* body::after {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 40px;
    background: repeating-linear-gradient(90deg, #000 0px, #000 20px, #1a1a2e 20px, #1a1a2e 40px);
    z-index: -1;
    opacity: 0.3;
  } */
  
  /* dark overlay */
  .overlay {
    position: fixed;
    inset: 0;
    background: radial-gradient(circle at center, rgba(0,0,0,0.2), rgba(0,0,0,0.4));
    z-index: -1;
    pointer-events: none;
  }
  
  .container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    min-height: 100dvh;
    height: auto;
    padding: 20px;
  }
  
  .card {
    width: 100%;
    max-width: 420px;
    background: rgba(20,20,20,0.85);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.8);
    text-align: center;
    overflow: visible;
    position: relative;
    z-index: 1;
  }

  .vote-layout {
    max-width: min(1020px, 100%);
  }

  .admin-layout {
    max-width: min(1100px, 100%);
  }

  /* Utility class */
  .hidden {
    display: none !important;
  }

  .admin-top-three-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin-bottom: 12px;
  }

  .admin-top-three-card {
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.04);
    border-radius: 12px;
    padding: 12px;
    text-align: left;
  }

  .admin-top-rank {
    font-size: 12px;
    font-weight: 700;
    color: #ff9fc6;
    margin-bottom: 4px;
  }

  .admin-top-title {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
    margin-bottom: 4px;
  }

  .admin-top-votes {
    font-size: 12px;
    color: #bbb;
  }

  .admin-results-scroll {
    max-height: 360px;
    overflow-y: auto;
    padding-right: 4px;
  }

  .admin-results-scroll::-webkit-scrollbar {
    width: 8px;
  }

  .admin-results-scroll::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.22);
    border-radius: 999px;
  }

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

  /* Global nav (3-zone architecture) */
  .site-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 14px;
    padding: 10px 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.03));
  }

  .site-nav-left,
  .site-nav-center,
  .site-nav-right {
    display: flex;
    align-items: center;
  }

  .site-nav-left {
    justify-content: flex-start;
    min-width: 110px;
  }

  .site-nav-center {
    display: none;
    flex: 1;
    justify-content: center;
    gap: 18px;
  }

  .site-nav-right {
    margin-left: auto;
    justify-content: flex-end;
    gap: 10px;
    min-width: 200px;
  }

  .site-nav-brand {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #ffd7e3;
    text-decoration: none;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.02em;
  }

  .site-nav-brand::before {
    content: "";
    width: 40px;
    height: 40px;
    border-radius: 999px;
    border: none;
    background: transparent url("/icon.png") center / contain no-repeat;
    box-shadow: none;
    flex-shrink: 0;
  }

  .site-nav-tab {
    color: #efcfda;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    padding: 8px 2px;
    position: relative;
    transition: color 0.2s ease;
  }

  .site-nav-tab::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 2px;
    height: 2px;
    border-radius: 2px;
    background: linear-gradient(90deg, #ff4f9a, #ff8ec4);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.22s ease;
  }

  .site-nav-tab:hover,
  .site-nav-tab.active {
    color: #fff;
  }

  .site-nav-tab:hover::after,
  .site-nav-tab.active::after {
    transform: scaleX(1);
  }

  .site-nav-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 9px 14px;
    border-radius: 999px;
    text-decoration: none;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    background: linear-gradient(135deg, #ff4f9a, #ff6fb0);
    box-shadow: 0 8px 22px rgba(255, 79, 154, 0.3);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }

  .site-nav-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 12px 24px rgba(255, 79, 154, 0.35);
  }

  .site-nav-profile {
    position: relative;
  }

  .site-nav-profile summary {
    list-style: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: #ffe5ee;
    font-size: 15px;
  }

  .site-nav-profile summary::-webkit-details-marker {
    display: none;
  }

  .site-nav-profile[open] summary {
    border-color: rgba(255, 79, 154, 0.55);
    background: rgba(255, 79, 154, 0.22);
    color: #fff;
  }

  .site-nav-dropdown {
    position: absolute;
    right: 0;
    top: calc(100% + 8px);
    min-width: 170px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(12, 12, 18, 0.78);
    backdrop-filter: blur(8px);
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.45);
    overflow: hidden;
    z-index: 20;
  }

  .site-nav-dropdown a {
    display: block;
    color: #f6d3df;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    padding: 10px 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .site-nav-dropdown a:last-child {
    border-bottom: none;
  }

  .site-nav-dropdown a:hover,
  .site-nav-dropdown a.active {
    background: rgba(255, 79, 154, 0.2);
    color: #fff;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: auto;
    margin: 0;
    padding: 8px 10px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    font-size: 14px;
    cursor: pointer;
    order: 3;
  }

  .site-nav-drawer {
    display: none;
    width: 100%;
    order: 4;
    margin-top: 10px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(10, 10, 16, 0.72);
    backdrop-filter: blur(8px);
    padding: 10px;
    box-sizing: border-box;
  }

  .site-nav-drawer.open {
    display: grid;
    gap: 8px;
  }

  .site-nav-drawer a {
    color: #f3cad8;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    padding: 8px 10px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.03);
  }

  .site-nav-drawer a:hover,
  .site-nav-drawer a.active {
    border-color: rgba(255, 79, 154, 0.55);
    background: rgba(255, 79, 154, 0.2);
    color: #fff;
  }

  /* Showtimes flow */
  .showtimes-layout {
    max-width: min(860px, 100%);
    text-align: left;
  }

  .flow-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 14px;
  }

  .step-header {
    margin-bottom: 8px;
  }

  .step-header h2 {
    margin: 0;
    font-size: 18px;
  }

  .theater-search-box {
    margin-bottom: 12px;
  }

  .theater-results {
    display: grid;
    gap: 10px;
    max-height: 320px;
    overflow-y: auto;
    padding-right: 4px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    padding: 8px;
    background: rgba(255, 255, 255, 0.02);
  }

  .theater-results::-webkit-scrollbar {
    width: 8px;
  }

  .theater-results::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.22);
    border-radius: 999px;
  }

  .theater-result-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    color: #fff;
    margin: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 14px;
    padding: 14px;
    box-sizing: border-box;
  }

  .theater-result-item > div {
    min-width: 0;
    flex: 1;
  }

  .theater-result-item h3 {
    margin: 0 0 3px;
    font-size: 15px;
    color: #fff;
    word-break: break-word;
  }

  .theater-result-item p {
    margin: 0;
    color: #b6b6b6;
    font-size: 12px;
    word-break: break-word;
  }

  .theater-selected-shell {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .theater-result-item-selected {
    border-color: rgba(255, 210, 112, 0.9);
    box-shadow: 0 0 0 1px rgba(255, 210, 112, 0.65), 0 10px 24px rgba(255, 195, 87, 0.12);
    background: linear-gradient(180deg, rgba(255, 210, 112, 0.14), rgba(255, 210, 112, 0.06));
  }

  .theater-selected-shell h3 {
    margin: 0 0 4px;
    font-size: 15px;
  }

  .theater-selected-shell p {
    margin: 0;
    color: #bcbcbc;
    font-size: 12px;
  }

  .theater-selected-label {
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 10px !important;
    color: #ffbdd8 !important;
    margin-bottom: 6px !important;
  }

  .theater-change-btn {
    width: 100%;
    margin: 0;
    white-space: nowrap;
    padding: 10px 12px;
  }

  .theater-result-item:hover {
    border-color: rgba(255, 79, 154, 0.6);
    background: rgba(255, 79, 154, 0.12);
  }

  .partner-badge {
    display: inline-flex;
    padding: 5px 10px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    background: rgba(62, 234, 120, 0.2);
    color: #b9ffd2;
    border: 1px solid rgba(98, 242, 147, 0.4);
  }

  .partner-badge.not {
    background: rgba(255, 181, 71, 0.16);
    border-color: rgba(255, 181, 71, 0.45);
    color: #ffdca6;
  }

  .calendar-shell {
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 18px;
    padding: 14px;
    background: rgba(6, 7, 16, 0.55);
  }

  .calendar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 10px;
  }

  .calendar-header h2 {
    margin: 0;
    font-size: 18px;
    text-align: center;
    font-weight: 700;
  }

  .calendar-nav-btn {
    width: auto;
    margin: 0;
    padding: 8px 12px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: #fff;
    font-weight: 700;
  }

  .calendar-nav-btn:hover {
    background: rgba(255, 79, 154, 0.2);
    border-color: rgba(255, 79, 154, 0.45);
  }

  .calendar-view-toggle {
    display: flex;
    gap: 8px;
    margin: 0 0 10px;
  }

  .calendar-view-toggle .main-tab-btn {
    flex: 1 1 50%;
    max-width: none;
    min-width: 0;
    margin: 0;
    padding: 12px 16px;
    border-radius: 10px;
    font-size: 15px;
  }

  .calendar-weekdays,
  .calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 6px;
  }

  .calendar-weekdays span {
    font-size: 11px;
    color: #9e9e9e;
    text-align: center;
  }

  .calendar-day {
    margin: 0;
    min-height: 48px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.05);
    color: #e7e7e7;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    font-size: 13px;
  }

  .calendar-day.empty {
    opacity: 0.22;
  }

  .calendar-day.has-events {
    border-color: rgba(255, 79, 154, 0.6);
    background: linear-gradient(180deg, rgba(255, 79, 154, 0.2), rgba(255, 79, 154, 0.07));
    cursor: pointer;
  }

  .calendar-day.selected {
    box-shadow: 0 0 0 1px rgba(255, 165, 205, 0.95);
    background: linear-gradient(180deg, rgba(255, 79, 154, 0.35), rgba(255, 79, 154, 0.16));
  }

  .calendar-dot {
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: #ff88be;
    position: absolute;
    bottom: 7px;
  }

  .agenda-list {
    display: grid;
    gap: 8px;
  }

  .agenda-row {
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    padding: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.04);
  }

  .agenda-date {
    margin: 0;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
  }

  .agenda-count {
    margin: 4px 0 0;
    color: #a8a8a8;
    font-size: 12px;
  }

  .agenda-open-btn {
    width: auto;
    margin: 0;
    padding: 8px 12px;
    border-radius: 10px;
    background: rgba(255, 79, 154, 0.2);
    border: 1px solid rgba(255, 79, 154, 0.4);
    font-size: 12px;
    color: #fff;
    font-weight: 700;
  }

  .day-screenings {
    margin-top: 12px;
  }

  .day-screenings-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 8px;
    gap: 10px;
  }

  .day-screenings-header h3 {
    margin: 0;
    font-size: 15px;
  }

  .day-screenings-header p {
    margin: 0;
    color: #b7b7b7;
    font-size: 12px;
  }

  .screening-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .screening-list.single-screening {
    grid-template-columns: minmax(0, 520px);
    justify-content: center;
  }

  @media (max-width: 640px) {
    .calendar-shell {
      padding: 10px;
      border-radius: 14px;
    }

    .calendar-header h2 {
      font-size: 16px;
    }

    .calendar-nav-btn {
      padding: 7px 10px;
      border-radius: 9px;
    }

    .calendar-view-toggle .main-tab-btn {
      padding: 10px 12px;
      font-size: 14px;
    }

    .screening-list.single-screening {
      grid-template-columns: minmax(0, 1fr);
      justify-content: stretch;
    }

    .day-screenings {
      overflow-x: hidden;
    }

    .screening-card {
      padding: 10px;
    }

    .screening-card-top {
      display: grid;
      grid-template-columns: minmax(0, 1fr);
      align-items: start;
      gap: 5px;
      margin-bottom: 6px;
    }

    .screening-time {
      font-size: 11px;
    }

    .status-badge {
      font-size: 10px;
      padding: 3px 6px;
      white-space: normal;
      line-height: 1.2;
      max-width: 130px;
      width: auto;
      overflow-wrap: anywhere;
    }

    .screening-card h3 {
      font-size: 14px;
      margin: 0 0 6px;
      overflow-wrap: anywhere;
    }

    .screening-theater {
      font-size: 11px;
      overflow-wrap: anywhere;
    }
  }

  .screening-card {
    margin: 0;
    width: 100%;
    box-sizing: border-box;
    text-align: left;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.08), rgba(255, 79, 154, 0.07));
    padding: 12px;
    color: #fff;
    transition: transform 0.2s ease, border-color 0.2s ease;
    cursor: pointer;
  }

  .screening-card:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 79, 154, 0.7);
  }

  .screening-card-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
  }

  .screening-time {
    margin: 0;
    font-size: 12px;
    color: #d9d9d9;
  }

  .screening-card h3 {
    margin: 0 0 8px;
    font-size: 15px;
  }

  .screening-theater {
    margin: 0;
    font-size: 12px;
    color: #b8b8b8;
  }

  .status-badge {
    font-size: 11px;
    border-radius: 999px;
    padding: 4px 8px;
    font-weight: 700;
    border: 1px solid transparent;
    white-space: nowrap;
  }

  .status-live {
    background: rgba(82, 255, 143, 0.18);
    border-color: rgba(82, 255, 143, 0.35);
    color: #b6ffd0;
  }

  .status-ended {
    background: rgba(255, 119, 119, 0.18);
    border-color: rgba(255, 119, 119, 0.35);
    color: #ffc2c2;
  }

  .status-upcoming {
    background: rgba(255, 204, 102, 0.18);
    border-color: rgba(255, 204, 102, 0.35);
    color: #ffe4ad;
  }

  .calendar-empty {
    margin: 0;
    border: 1px dashed rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    padding: 10px;
    color: #a8a8a8;
    font-size: 13px;
  }

  .stack-form {
    display: grid;
    gap: 10px;
  }

  .form-textarea {
    width: 100%;
    min-height: 98px;
    resize: vertical;
    box-sizing: border-box;
    border: 2px solid #333;
    border-radius: 12px;
    background: #222;
    color: #fff;
    font-size: 15px;
    padding: 12px;
  }

  .form-textarea:focus {
    outline: none;
    border-color: #ff4757;
  }

  .success-shell {
    border-radius: 14px;
    border: 1px solid rgba(87, 244, 145, 0.4);
    background: rgba(87, 244, 145, 0.12);
    padding: 14px;
    text-align: left;
  }

  .success-shell h3 {
    margin: 0 0 8px;
  }

  .success-shell p {
    margin: 0;
    color: #d8ffe7;
  }

  /* Post-vote and results */
  .post-vote-shell {
    text-align: left;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    padding: 16px;
    background: rgba(10, 11, 20, 0.7);
  }

  .post-vote-header {
    text-align: center;
    margin-bottom: 14px;
  }

  .post-vote-icon {
    font-size: 40px;
    margin-bottom: 6px;
  }

  .post-vote-header h2 {
    margin: 0;
    font-size: 28px;
  }

  .post-vote-header p {
    margin: 8px 0 0;
    color: #c7c7c7;
    font-size: 13px;
  }

  .results-leaderboard {
    margin-top: 8px;
    display: grid;
    gap: 8px;
  }

  .results-leaderboard h2 {
    margin: 0 0 2px;
    font-size: 16px;
  }

  .leaderboard-row {
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.04);
  }

  .leaderboard-row.top {
    border-color: rgba(255, 79, 154, 0.6);
    box-shadow: inset 0 0 0 1px rgba(255, 79, 154, 0.2);
  }

  .leaderboard-head {
    display: grid;
    grid-template-columns: auto 40px 1fr auto;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
  }

  .leaderboard-poster {
    width: 40px;
    height: 58px;
    border-radius: 8px;
    object-fit: cover;
    display: block;
    background: #333;
    border: 1px solid rgba(255, 255, 255, 0.12);
  }

  .leaderboard-poster-fallback {
    width: 40px;
    height: 58px;
    border-radius: 8px;
    background: linear-gradient(135deg, rgba(255, 71, 87, 0.35), rgba(255, 107, 129, 0.15));
    border: 1px solid rgba(255, 255, 255, 0.12);
  }

  .leaderboard-head p {
    margin: 0;
  }

  .leaderboard-head .rank {
    font-size: 12px;
    color: #ffb2cf;
    font-weight: 700;
  }

  .leaderboard-head .movie {
    font-size: 14px;
    font-weight: 700;
    min-width: 0;
    overflow-wrap: anywhere;
    text-align: center;
    justify-self: center;
  }

  .leaderboard-head .votes {
    font-size: 12px;
    color: #ccc;
    white-space: nowrap;
    text-align: right;
    justify-self: end;
  }

  .chosen-movie-header {
    justify-content: center;
  }

  .chosen-movie-header > span,
  .admin-movie-title {
    text-align: center;
  }

  #adminList .chosen-movie-header {
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr) 44px;
    align-items: center;
    column-gap: 10px;
  }

  #adminList .chosen-movie-header::after {
    content: "";
    width: 44px;
    height: 1px;
  }

  #adminList .chosen-movie-header .chosen-movie-poster,
  #adminList .chosen-movie-header .chosen-movie-poster-fallback {
    grid-column: 1;
    justify-self: start;
  }

  #adminList .admin-movie-title {
    grid-column: 2;
    text-align: center;
    justify-self: center;
    width: 100%;
    overflow-wrap: anywhere;
  }

  @media (max-width: 520px) {
    .leaderboard-head {
      grid-template-columns: auto 36px 1fr;
      grid-template-areas:
        "rank poster movie"
        "votes votes votes";
      align-items: start;
    }

    .leaderboard-head .rank { grid-area: rank; }
    .leaderboard-head .leaderboard-poster,
    .leaderboard-head .leaderboard-poster-fallback { grid-area: poster; width: 36px; height: 52px; }
    .leaderboard-head .movie { grid-area: movie; }
    .leaderboard-head .votes { grid-area: votes; }
  }

  .leaderboard-track {
    height: 8px;
    background: rgba(255, 255, 255, 0.09);
    border-radius: 999px;
    overflow: hidden;
  }

  .leaderboard-fill {
    display: block;
    height: 100%;
    background: linear-gradient(90deg, #ff4f9a, #ff8dbe);
    transition: width 0.45s ease;
  }

  .share-panel {
    margin-top: 12px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .post-vote-note {
    margin-top: 12px;
    font-size: 13px;
    color: #ffd5e3;
    text-align: center;
  }

  .upcoming-next-event {
    margin-top: 12px;
    padding: 14px;
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.08), rgba(255, 79, 154, 0.09));
    border-color: rgba(255, 255, 255, 0.18);
  }

  .upcoming-next-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
  }

  .upcoming-next-when {
    margin: 2px 0 0;
    font-size: 13px;
    font-weight: 700;
    color: #fff;
  }

  .upcoming-next-location {
    margin: 4px 0 0;
    font-size: 12px;
    color: #d2d2d2;
  }

  .upcoming-next-link {
    margin-top: 0;
    white-space: nowrap;
  }

  .upcoming-next-grid {
    margin-top: 12px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 10px;
  }

  .upcoming-next-movie {
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    background: rgba(10, 10, 14, 0.5);
    padding: 8px;
  }

  .upcoming-next-poster {
    width: 100%;
    aspect-ratio: 2 / 3;
    object-fit: cover;
    border-radius: 10px;
    display: block;
    background: #333;
  }

  .upcoming-next-poster-fallback {
    background: linear-gradient(135deg, rgba(255, 71, 87, 0.35), rgba(255, 107, 129, 0.15));
  }

  .upcoming-next-title {
    margin: 8px 2px 2px;
    font-size: 13px;
    line-height: 1.3;
    color: #fff;
    font-weight: 700;
    text-align: left;
  }

  .upcoming-next-empty {
    margin: 0;
    color: #cfcfcf;
    font-size: 12px;
    text-align: left;
  }

  @media (max-width: 640px) {
    .upcoming-next-header {
      flex-direction: column;
      align-items: flex-start;
    }

    .upcoming-next-grid {
      grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    }
  }

  .confetti-container {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 9999;
    overflow: hidden;
  }

  .confetti-piece {
    position: absolute;
    top: -10px;
    width: 8px;
    height: 12px;
    opacity: 0.95;
    transform: rotate(20deg);
    animation: confettiFall 1.8s ease-in forwards;
  }

  @keyframes confettiFall {
    0% { transform: translateY(0) rotate(0deg); opacity: 1; }
    100% { transform: translateY(110vh) rotate(520deg); opacity: 0.1; }
  }

  .how-it-works-shell,
  .suggestion-shell,
  .petition-shell,
  .faq-grid {
    border-radius: 16px;
    padding: 16px;
  }

  .steps-grid {
    margin-top: 10px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .step-card {
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.04);
    padding: 12px;
    text-align: center;
  }

  .step-card span {
    display: inline-flex;
    align-items: center;
    font-size: 20px;
    margin-right: 8px;
    vertical-align: middle;
  }

  .step-card h3 {
    display: inline-flex;
    align-items: center;
    margin: 0 0 8px;
    font-size: 14px;
    vertical-align: middle;
  }

  .step-card p {
    margin: 0;
    color: #c4c4c4;
    font-size: 12px;
  }

  .faq-grid details {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 8px 0;
  }

  .faq-grid details:first-of-type {
    border-top: 0;
  }

  .faq-grid summary {
    cursor: pointer;
    font-weight: 700;
    font-size: 13px;
    align-items: center;
    justify-content: center;
  }

  .faq-grid p {
    margin: 8px 0 0;
    color: #c8c8c8;
    font-size: 12px;
  }

  .admin-tab-switcher {
    display: flex;
    gap: 0;
  }

  @media (max-width: 900px) {
    .showtimes-layout {
      max-width: 100%;
    }

    .screening-list {
      grid-template-columns: 1fr;
    }
  }

  @media (max-width: 700px) {
    .site-nav {
      flex-wrap: wrap;
    }

    .nav-toggle {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      order: 3;
    }

    .site-nav-left {
      min-width: 0;
      flex: 1;
    }

    .site-nav-center {
      display: none;
    }

    .site-nav-right {
      min-width: 0;
      flex: 1;
      justify-content: flex-end;
    }

    .site-nav-cta {
      display: none;
    }

    .site-nav-drawer a[href="/reelsuccess.html"],
    .site-nav-drawer a[href="/admin.html"] {
      display: none !important;
    }

    .site-nav-links {
      width: auto;
    }

    .site-nav-drawer {
      display: none;
      order: 4;
    }

    .steps-grid,
    .share-panel {
      grid-template-columns: 1fr;
    }

    .calendar-day {
      min-height: 40px;
      font-size: 12px;
    }

    .admin-tab-switcher {
      flex-direction: column;
    }

    .admin-tab-switcher button {
      border-left: none !important;
      border-top: 1px solid #333;
    }

    .admin-tab-switcher button:first-child {
      border-top: none;
    }
  }

  @media (min-width: 701px) {
    .site-nav-drawer a[href="/email-signup.html"] {
      display: none !important;
    }
  }

  @media (max-width: 900px) {
    .site-nav-cta {
      display: none !important;
    }
  }

  /* ReelSuccess */
  .reelsuccess-card {
    max-width: 860px;
    text-align: center;
  }

  .reelsuccess-card h1,
  .reelsuccess-card .subtitle {
    text-align: center;
  }

  .reelsuccess-topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid #333;
  }

  .reelsuccess-topbar .app-link {
    color: #ff4757;
    text-decoration: none;
    font-weight: 600;
  }

  .reelsuccess-topbar .app-link:hover {
    text-decoration: underline;
  }

  .reelsuccess-auth-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: flex-end;
  }

  .reelsuccess-sign-btn {
    padding: 10px 16px;
    background: #ff4757;
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    font-size: 14px;
    transition: background 0.2s ease;
    white-space: nowrap;
  }

  .reelsuccess-sign-btn:hover {
    background: #ff3838;
  }

  .reelsuccess-controls {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .reelsuccess-search-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
    align-items: center;
  }

  .reelsuccess-auth-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
  }

  .reelsuccess-auth-actions {
    display: flex;
    gap: 8px;
    align-items: center;
  }

  .reelsuccess-any-button {
    white-space: nowrap;
    padding: 12px 14px;
    margin-top: 0;
  }

  @media (max-width: 640px) {
    .container {
      align-items: flex-start;
      padding: 12px;
      min-height: 100dvh;
    }

    .card {
      max-width: 100%;
      padding: 18px;
    }

    .top-right-links {
      position: static;
      justify-content: center;
      margin-bottom: 8px;
    }

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

    .reelsuccess-any-button {
      width: 100%;
    }

    .reelsuccess-topbar {
      flex-direction: column;
      align-items: flex-start;
      gap: 10px;
    }

    .reelsuccess-auth-actions {
      width: 100%;
      justify-content: space-between;
      flex-wrap: wrap;
    }
  }

  .reelsuccess-select {
    width: 100%;
    padding: 12px;
    border-radius: 10px;
    border: 1px solid #555;
    background: #1f1f1f;
    color: #fff;
    font-size: 14px;
  }

  .reelsuccess-search-results {
    display: grid;
    gap: 6px;
    max-height: 260px;
    overflow-y: auto;
    padding: 8px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(0, 0, 0, 0.35);
  }

  .reelsuccess-search-result-item {
    width: 100%;
    text-align: left;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #fff;
    border-radius: 8px;
    padding: 8px 10px;
    cursor: pointer;
    display: grid;
    gap: 3px;
  }

  .reelsuccess-search-result-item:hover {
    background: rgba(255, 71, 87, 0.18);
    border-color: rgba(255, 71, 87, 0.55);
  }

  .reelsuccess-search-result-item.active {
    background: rgba(255, 71, 87, 0.28);
    border-color: rgba(255, 71, 87, 0.8);
  }

  .reelsuccess-search-result-item .title {
    font-size: 13px;
    font-weight: 700;
    line-height: 1.2;
  }

  .reelsuccess-search-result-item .meta {
    font-size: 12px;
    color: #cfcfcf;
    line-height: 1.2;
  }

  .reelsuccess-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 12px;
  }

  .reelsuccess-stats-grid > div {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 8px;
  }

  .reelsuccess-stats-grid strong {
    display: block;
    font-size: 14px;
    color: #fff;
  }

  .reelsuccess-stats-grid span {
    font-size: 12px;
    color: #bbb;
  }

  .reelsuccess-table-wrap {
    overflow-x: auto;
  }

  .reelsuccess-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
  }

  .reelsuccess-table th,
  .reelsuccess-table td {
    text-align: left;
    padding: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    white-space: nowrap;
  }

  .reelsuccess-table th {
    color: #ff8e8e;
    font-weight: 700;
  }

  .reelsuccess-rec-title-cell {
    white-space: normal !important;
    min-width: 260px;
  }

  .reelsuccess-rec-movie-cell {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    min-width: 260px;
  }

  img.reelsuccess-rec-poster {
    width: 48px !important;
    min-width: 48px !important;
    max-width: 48px !important;
    height: 72px !important;
    min-height: 72px !important;
    max-height: 72px !important;
    display: block;
    object-fit: cover;
    border-radius: 8px;
    background: #333;
    flex-shrink: 0;
  }

  .reelsuccess-rec-poster-fallback {
    width: 48px;
    min-width: 48px;
    max-width: 48px;
    height: 72px;
    min-height: 72px;
    max-height: 72px;
    background: linear-gradient(135deg, rgba(255, 71, 87, 0.35), rgba(255, 107, 129, 0.15));
  }

  .reelsuccess-rec-title {
    white-space: normal;
    line-height: 1.25;
    font-weight: 600;
    color: #fff;
  }

  .reelsuccess-score-tabs {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin: 0 0 8px;
  }

  .reelsuccess-score-tab-btn {
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.06);
    color: #ddd;
    border-radius: 999px;
    padding: 6px 10px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
  }

  .reelsuccess-score-tab-btn:hover {
    border-color: rgba(255, 71, 87, 0.55);
    background: rgba(255, 71, 87, 0.16);
  }

  .reelsuccess-score-tab-btn.active {
    border-color: rgba(255, 71, 87, 0.85);
    background: rgba(255, 71, 87, 0.32);
    color: #fff;
  }

  
  /* 🎬 Logo */
  .logo {
    width: 70px;
    margin-top: 8px;
    margin-bottom: 10px;
  }

  .top-right-links {
    position: absolute;
    top: 12px;
    right: 14px;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: #aaa;
  }

  .top-right-links .app-link {
    margin-top: 0;
    font-size: 12px;
    font-weight: 500;
  }

  .admin-inline-link {
    margin: -12px 0 14px;
    text-align: center;
    font-size: 12px;
  }

  .admin-inline-link .app-link {
    margin-top: 0;
    text-align: center;
    align-items: center;
  }
  
  /* Titles */
  h1 {
    font-size: 22px;
    margin-bottom: 5px;
    text-align: center;
  }

  .card h2,
  .card h3,
  .info-box > h1,
  .info-box > h2,
  .info-box > h3,
  .suggestion-shell h1,
  .how-it-works-shell h1,
  .how-it-works-shell h2,
  .how-it-works-shell h3 {
    text-align: center;
  }
  
  .subtitle {
    font-size: 13px;
    color: #aaa;
    margin-bottom: 24px;
    line-height: 1.55;
    text-align: center;
  }

  .vote-mode-note {
    margin: -6px 0 18px;
    font-size: 12px;
    color: #d0d0d0;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 999px;
    padding: 8px 12px;
  }

  .main-tabs {
    display: flex;
    gap: 8px;
    margin: 24px 0 20px 0;
    justify-content: center;
  }

  .main-tab-btn {
    flex: 0 1 auto;
    padding: 12px 24px;
    background: #222;
    color: #aaa;
    border: none;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    border-radius: 8px;
  }

  .main-tab-btn:hover {
    background: #333;
    color: #ddd;
  }

  .main-tab-btn.active {
    background: #ff4757;
    color: #fff;
  }

  .main-tab-panel[hidden] {
    display: none !important;
  }

  .main-tab-panel h1,
  .main-tab-panel h2,
  .main-tab-panel h3,
  .main-tab-panel .subtitle,
  .main-tab-panel .step-header {
    text-align: center;
  }
  .main-tab-panel p,
  .how-it-works-shell p,
  .suggestion-shell p,
  .petition-shell p,
  .step-card p {
    text-align: center;
  }

  #tabResults h1,
  #tabResults h2,
  #tabResults h3,
  #tabResults .subtitle,
  #tabEdit h1,
  #tabEdit h2,
  #tabEdit h3,
  #tabEdit .subtitle,
  #tabShowtime h1,
  #tabShowtime h2,
  #tabShowtime h3,
  #tabShowtime .subtitle,
  #tabAccess h1,
  #tabAccess h2,
  #tabAccess h3,
  #tabAccess .subtitle {
    text-align: center;
  }

  .moments-feed {
    display: grid;
    gap: 10px;
  }

  .moment-item {
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 10px;
    padding: 10px;
    background: rgba(0, 0, 0, 0.25);
  }

  .moment-item-title {
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 6px;
  }

  .moment-item-body {
    font-size: 12px;
    line-height: 1.45;
    color: #d8d8d8;
    white-space: pre-wrap;
  }

  .moment-item-meta {
    margin-top: 8px;
    font-size: 11px;
    color: #9a9a9a;
  }

  .info-box {
    text-align: left;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 12px 14px;
    margin: 0 0 12px;
  }

  .info-box h2 {
    margin: 0 0 8px;
    font-size: 14px;
    color: #ffffff;
  }

  .mission-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
  }

  .timetable-link {
    color: #ff6b6b;
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    margin-top: 1px;
    white-space: nowrap;
  }

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

  .info-box p,
  .info-box li {
    margin: 0;
    font-size: 12px;
    line-height: 1.5;
    color: #d7d7d7;
  }

  .timeline-box ul {
    margin: 0;
    padding-left: 18px;
    display: grid;
    gap: 8px;
  }

  .event-grid {
    display: grid;
    gap: 10px;
    margin-top: 14px;
    position: relative;
    z-index: 2;
    pointer-events: auto;
  }

  .event-card {
    display: block;
    width: 100%;
    text-align: left;
    font: inherit;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 12px;
    padding: 12px;
    text-decoration: none;
    color: #e9e9e9;
    box-sizing: border-box;
    appearance: none;
    transition: border-color 0.2s ease, background 0.2s ease;
    cursor: pointer;
    pointer-events: auto;
  }

  .event-card * {
    pointer-events: auto;
  }

  .event-card:hover {
    border-color: rgba(255, 107, 107, 0.8);
    background: rgba(255, 255, 255, 0.08);
  }

  .event-card.disabled,
  .event-card.loading {
    cursor: not-allowed;
    opacity: 0.72;
  }

  .event-card.disabled:hover,
  .event-card.loading:hover {
    border-color: rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.05);
  }

  .event-card strong {
    color: #fff;
  }

  .event-card span {
    color: #bdbdbd;
    font-size: 12px;
  }
  
  .subtitle a {
    color: #ff4757;
    text-decoration: none;
  }
  
  #step-title {
    color: #bbb;
    margin-bottom: 15px;
  }
  
  /* Search */
  #search-section {
    position: relative;
    margin: 15px 0;
    z-index: 10;
  }

  .search-container {
    position: relative;
    width: 100%;
  }

  .search-disclaimer {
    font-size: 12px;
    color: #999;
    margin-top: 8px;
    text-align: center;
    font-style: italic;
  }

  .search-input {
    width: 100%;
    padding: 14px;
    padding-right: 50px;
    border: 2px solid #333;
    border-radius: 12px;
    background: #222;
    color: white;
    font-size: 16px;
    transition: border-color 0.2s ease;
    box-sizing: border-box;
  }

  .search-input:focus {
    outline: none;
    border-color: #ff4757;
  }

  .clear-search-btn {
    position: absolute;
    right: 12px;
    top: 20%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #888;
    font-size: 20px;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: none;
    align-items: center;
    justify-content: center;
    transition: color 0.2s ease;
    z-index: 10;
  }

  .clear-search-btn.shown {
    display: flex;
  }

  .clear-search-btn:hover {
    color: #ff4757;
  }

  .search-input:focus {
    outline: none;
    border-color: #ff4757;
  }

  .search-input::placeholder {
    color: #666;
  }

  .search-results {
    position: static;
    background: #222;
    border: 2px solid #333;
    border-radius: 12px;
    max-height: 300px;
    overflow-y: auto;
    margin-top: 10px;
  }

  .search-results.hidden {
    display: none;
  }

  .search-disclaimer {
    font-size: 12px;
    color: #999;
    margin-top: 8px;
    text-align: center;
    font-style: italic;
  }

  .search-result-item {
    padding: 12px 14px;
    cursor: pointer;
    border-bottom: 1px solid #333;
    transition: background 0.2s ease;
  }

  .allowed-movie-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    width: 100%;
  }

  .allowed-movie-main {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
  }

  .allowed-movie-poster {
    width: 42px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
    background: #333;
    flex-shrink: 0;
  }

  .allowed-movie-title {
    font-weight: 600;
    color: white;
  }

  .allowed-movie-votes {
    font-size: 0.9em;
    color: #999;
    flex-shrink: 0;
  }

  .allowed-movie-item.eliminated {
    cursor: not-allowed;
    opacity: 0.55;
    pointer-events: none;
    background: rgba(255, 255, 255, 0.03);
  }

  .allowed-movie-item.eliminated .allowed-movie-title {
    text-decoration: line-through;
    color: #bbb;
  }

  .search-result-item:hover {
    background: #2a2a2a;
  }

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

  /* Movie Preview */
  .movie-preview {
    padding: 12px;
    background: #222;
    border-radius: 0 0 12px 12px;
    border: 2px solid #ff4757;
    border-top: none;
    margin: -2px 0 15px 0;
    overflow: visible;
  }

  .preview-content {
    display: flex;
    gap: 12px;
  }

  .movie-poster {
    width: 80px;
    height: 120px;
    border-radius: 8px;
    object-fit: cover;
    background: #333;
    display: block;
    flex-shrink: 0;
  }

  .movie-info {
    flex: 1;
  }

  .movie-info h2 {
    margin: 0 0 4px 0;
    font-size: 16px;
  }

  .info-subtitle {
    margin: 2px 0;
    font-size: 11px;
    color: #aaa;
  }

  /* Chosen Movies */
  .chosen-section {
    margin-top: 20px;
  }

  .chosen-label {
    font-size: 13px;
    color: #888;
    margin-bottom: 10px;
  }

  .chosen-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .chosen-movie {
    padding: 12px;
    background: #222;
    border-radius: 8px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.2s ease;
  }

  .no-click .chosen-movie {
    cursor: default;
    pointer-events: none;
  }

  .no-click .chosen-movie:hover {
    background: #222;
    border-color: transparent;
  }

  .chosen-movie.selected {
    background: #2a2a2a;
    border-color: #ffeb3b;
    box-shadow: 0 0 15px rgba(255, 235, 59, 0.4);
  }

  .chosen-movie-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
  }

  img.chosen-movie-poster {
    width: 44px !important;
    min-width: 44px !important;
    max-width: 44px !important;
    height: 64px !important;
    min-height: 64px !important;
    max-height: 64px !important;
    object-fit: cover;
    border-radius: 8px;
    display: block;
    background: #333;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.25);
  }

  .chosen-movie-poster-fallback {
    width: 44px;
    min-width: 44px;
    max-width: 44px;
    height: 64px;
    min-height: 64px;
    max-height: 64px;
    border-radius: 8px;
    background: linear-gradient(135deg, rgba(255, 71, 87, 0.35), rgba(255, 107, 129, 0.15));
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.2);
  }

  .chosen-movie-title {
    font-weight: 600;
    margin-bottom: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-width: 0;
  }

  .chosen-movie-title span {
    overflow-wrap: anywhere;
  }

  .chosen-movie-year {
    font-size: 12px;
    color: #aaa;
  }

  .chosen-movie-bar {
    height: 6px;
    background: #333;
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 4px;
  }

  .chosen-movie-fill {
    height: 100%;
    background: linear-gradient(90deg, #ff4757, #ff6b81);
    transition: width 0.3s ease;
  }

  .chosen-movie-count {
    font-size: 11px;
    color: #888;
    text-align: right;
  }
  
  /* Options */
  .option {
    background: #222;
    padding: 16px;
    border-radius: 12px;
    margin-bottom: 10px;
    cursor: pointer;
    transition: all 0.2s ease;
    border: 2px solid transparent;
    text-align: left;
  }
  
  .option-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
    font-size: 14px;
  }

  .vote-count {
    font-size: 12px;
    color: #ff4757;
    font-weight: 600;
  }

  .vote-bar {
    height: 6px;
    background: #333;
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 4px;
  }

  .vote-fill {
    height: 100%;
    background: linear-gradient(90deg, #ff4757, #ff6b81);
    transition: width 0.3s ease;
  }

  .vote-percentage {
    font-size: 11px;
    color: #888;
    text-align: right;
  }

  .option:hover {
    background: #2a2a2a;
  }

  .option.selected {
    border: 2px solid #ff4757;
    background: #2b1b1d;
  }

  /* Button (voting flow only) */
  #tabVotePanel button,
  .vote-email-modal button,
  #button-container button {
    width: 100%;
    padding: 14px;
    margin-top: 15px;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    background: linear-gradient(135deg, #ff4757, #ff6b81);
    color: white;
  }

  .submit-btn {
    width: 100%;
    padding: 14px;
    margin-top: 15px;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    background: linear-gradient(135deg, #ff4757, #ff6b81);
    color: white;
  }

  .submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 71, 87, 0.4);
  }

  .submit-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
  }

  .suggestion-shell .submit-btn {
    width: 100%;
    padding: 14px;
    margin-top: 15px;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    background: linear-gradient(135deg, #ff4757, #ff6b81);
    color: #fff;
  }

  .suggestion-shell .submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 71, 87, 0.4);
  }

  .suggestion-shell .submit-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
  }
  
  #button-container {
    display: flex;
    gap: 10px;
  }

  .captcha-notice {
    margin: 12px 0 0;
    font-size: 12px;
    color: #cfcfcf;
    min-height: 18px;
  }

  .captcha-container {
    display: flex;
    justify-content: center;
    margin-top: 10px;
    min-height: 66px;
  }

  .captcha-container iframe {
    max-width: 100%;
  }

  #button-container button {
    flex: 1;
    margin-top: 15px;
  }

  #submitBtn {
    width: 100%;
    padding: 14px;
    margin-top: 15px;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    background: linear-gradient(135deg, #ff4757, #ff6b81);
    color: white;
  }

  #submitBtn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
  }

  #submitBtn:not(:disabled):hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 71, 87, 0.4);
  }

  #backBtn {
    background: #333;
    color: #aaa;
  }

  #backBtn:hover {
    background: #444;
    color: white;
  }
  
  #tabVotePanel button:disabled,
  .vote-email-modal button:disabled,
  #button-container button:disabled {
    opacity: 0.3;
    cursor: not-allowed;
  }
  
  /* Results */
  #results {
    margin-top: 20px;
  }
  
  .confirmation {
    text-align: center;
  }

  .confirmation-poster {
    width: 132px;
    height: 196px;
    object-fit: cover;
    border-radius: 14px;
    background: #333;
    display: block;
    margin: 0 auto 18px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.38);
  }
  
  .voted-movie-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 12px 0 18px;
  }
  
  .checkmark {
    font-size: 28px;
    color: #4caf50;
    font-weight: bold;
  }
  
  .confirmation h2 {
    margin: 10px 0;
    font-size: 16px;
    color: #bbb;
  }
  
  .voted-movie {
    font-size: 18px;
    color: white;
    margin: 15px 0;
    font-weight: 600;
  }
  
  .vote-counted {
    color: #4caf50;
    font-size: 14px;
    margin: 10px 0;
  }
  
  .track-results {
    margin-top: 20px;
    color: #aaa;
    font-size: 13px;
    text-align: center;
  }

  .admin-actions-row {
    justify-content: center;
  }
  
  .app-link-confirmation {
    color: #ff4757;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    margin-top: 8px;
  }
  
  .app-link-confirmation:hover {
    text-decoration: underline;
  }
  
  .app-link {
    display: inline-block;
    margin-top: 5px;
    color: #ff4757;
    text-decoration: none;
    font-weight: 600;
    align-items: center;
    justify-content: center;
  }

  /* Email Step */
  .email-step {
    margin: 30px 0;
  }

  .email-step label {
    display: block;
    text-align: left;
    color: white;
    margin-bottom: 12px;
    font-size: 13px;
    font-weight: 500;
  }

  .email-step input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ff6b6b;
    border-radius: 6px;
    background: rgba(0, 0, 0, 0.3);
    color: white;
    font-size: 14px;
    margin-bottom: 16px;
    box-sizing: border-box;
  }

  .email-step input::placeholder {
    color: #999;
  }

  .email-step input:focus {
    outline: none;
    border-color: #ff8787;
    background: rgba(0, 0, 0, 0.5);
  }

  .email-step .submit-btn {
    width: 100%;
    padding: 12px;
    background: linear-gradient(135deg, #ff6b6b, #ff8787);
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .email-step .submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.3);
  }

  .email-step .submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
  }

  .email-help {
    font-size: 12px;
    color: #ccc;
    margin-top: 16px;
  }

  .email-help a {
    color: #ff6b6b;
    text-decoration: none;
  }

  .email-help a:hover {
    text-decoration: underline;
  }

  .vote-email-modal {
    position: fixed;
    inset: 0;
    z-index: 40;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: rgba(0, 0, 0, 0.7);
  }

  .vote-email-modal-card {
    width: 100%;
    max-width: 420px;
    background: rgba(20, 20, 20, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.7);
    margin: 0;
  }

  .vote-email-disclaimer {
    margin-top: 0;
    margin-bottom: 14px;
    text-align: left;
  }

  .vote-email-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .secondary-btn {
    width: 100%;
    padding: 12px;
    background: transparent;
    color: #ddd;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: border-color 0.2s ease, color 0.2s ease;
  }

  .secondary-btn:hover {
    border-color: rgba(255, 255, 255, 0.55);
    color: #fff;
  }

  .hidden {
    display: none !important;
  }