/* --------------------------------------------------------------------------
   Fonts
   -------------------------------------------------------------------------- */
   @import url("https://fonts.googleapis.com/css2?family=Dosis:wght@300;400;500;600&family=Poppins:wght@300;400;500;600;700&display=swap");

   /* --------------------------------------------------------------------------
      CSS Custom Properties (design tokens)
      -------------------------------------------------------------------------- */
   :root {
     --font-base: "Poppins", sans-serif;
     --font-alt: "Dosis", sans-serif;

     --text: #ffffff;
     --text-muted: rgba(255, 255, 255, 0.7);
     --text-dim: #a3a5a8;

     --bg-deep-start: #0a0a0f;
     --bg-deep-end: #000000;
     --bg-indigo: #152a6f;
     --bg-charcoal: #1f1f21;

     /* Promoter theming variables - will be set by JavaScript */
     --promoter-primary: var(--bg-deep-start);
     --promoter-secondary: var(--bg-deep-end);
   
     --brand-gold: #c49721;
     --brand-blue: #1c3996;
   
     --glass-04: rgba(255, 255, 255, 0.04);
     --glass-05: rgba(255, 255, 255, 0.05);
     --glass-06: rgba(255, 255, 255, 0.06);
     --glass-08: rgba(255, 255, 255, 0.08);
     --glass-10: rgba(255, 255, 255, 0.10);
     --glass-12: rgba(255, 255, 255, 0.12);
     --glass-15: rgba(255, 255, 255, 0.15);
     --glass-20: rgba(255, 255, 255, 0.20);
     --glass-30: rgba(255, 255, 255, 0.30);
   
     --blur-10: blur(10px) saturate(160%);
     --blur-15: blur(15px) saturate(180%);
     --blur-20: blur(20px) saturate(180%);
     --blur-30: blur(30px) saturate(180%);
   
     --shadow-1: 0 2px 8px rgba(0,0,0,0.3), inset 0 1px 0 rgba(255,255,255,0.08);
     --shadow-2: 0 4px 15px rgba(0,0,0,0.3), inset 0 1px 0 rgba(255,255,255,0.10);
     --shadow-3: 0 4px 20px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.05);
     --shadow-4: 0 8px 32px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.05);
     --shadow-5: 0 8px 30px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.10);
     --shadow-6: 0 6px 20px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.15);
   
     --radius-3: 3px;
     --radius-5: 5px;
   
     --transition-quick: all 0.2s ease;
     --transition-normal: all 0.3s ease;
     --transition-smooth: all 0.6s cubic-bezier(0.4,0,0.2,1);
   }
   
   /* --------------------------------------------------------------------------
      Reset & Base
      -------------------------------------------------------------------------- */
   *,
   *::before,
   *::after {
     margin: 0;
     padding: 0;
     box-sizing: border-box;
   }
   
   .hidden { display: none; }
   
   /* Hide initial redirect content - show only loading animation */
   #initialContent { display: none !important; }
   
  html {
    height: 100%;
    min-height: 100vh;
    overflow-x: hidden;
    width: 100%;
  }

   /* Ensure background covers full viewport even with scrollable content */
   body::before {
     content: '';
     position: fixed;
     top: 0;
     left: 0;
     width: 100%;
     height: 100vh;
     background: linear-gradient(180deg, var(--bg-deep-start) 0%, var(--bg-deep-end) 100%);
     background-size: 100% 100vh;
     z-index: -1;
     pointer-events: none;
   }

   /* Promoter theming override for body::before */
   body.promoter-header-active::before {
     background: linear-gradient(180deg, var(--promoter-primary) 0%, var(--promoter-secondary) 100%) !important;
     background-size: 100% 100vh !important;
   }

  body {
    font-family: var(--font-base);
    color: var(--text);
    background: var(--bg-deep-start);
    background-attachment: fixed;
    overflow-x: hidden;
    position: relative;
    height: 100vh;
    min-height: 100vh;
    margin: 0;
    padding: 0;
    width: 100%;
    max-width: 100vw;
  }

   body:not(.promoter-header-active) {
     background: var(--bg-indigo);
     background-attachment: fixed;
     height: 100vh;
     min-height: 100vh;
     margin: 0;
     padding: 0;
   }

   /* Ensure background covers full viewport for promoter inactive state */
   body:not(.promoter-header-active)::before {
     content: '';
     position: fixed;
     top: 0;
     left: 0;
     width: 100%;
     height: 100vh;
     background: linear-gradient(180deg, var(--bg-indigo) 0%, var(--bg-charcoal) 100%);
     background-size: 100% 100vh;
     z-index: -1;
     pointer-events: none;
   }
   
   input {
     all: unset;
     display: inline-block;
     color: #f5f5f5;
   }
   
   button {
     all: unset;
   }
   
  /* Utility */
  .no-padding { padding-top: 0 !important; }
  .left-aligned-title { text-align: left; width: 100%; }
  
  /* Override: use margin-left instead of padding-left for consistent spacing */
  .event-lineup-title.left-aligned-title,
  .left-aligned-title-tickets-title { padding-left: 0; }
   
   /* Accessibility: respect reduced motion */
   @media (prefers-reduced-motion: reduce) {
     * {
       animation: none !important;
       transition: none !important;
     }
   }
   
   /* --------------------------------------------------------------------------
      Top Banner
      -------------------------------------------------------------------------- */
   .app-banner {
     display: flex !important;
     justify-content: space-between;
     align-items: center;
     background: linear-gradient(180deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.2) 80%, rgba(0,0,0,0) 100%);
     backdrop-filter: var(--blur-20);
     -webkit-backdrop-filter: var(--blur-20);
     border-bottom: none;
     width: 100%;
     position: fixed; top: 0; left: 0;
     z-index: 1000;
     padding: 10px 0;
     box-shadow: none;
   }
   
   .app-logo { width: 70px; height: auto; margin-left: 20px; }
   .app-description { flex: 1; font-size: 16px; padding-left: 15px; }
   
   .app-open-button {
     background: var(--glass-06);
     backdrop-filter: var(--blur-20);
     -webkit-backdrop-filter: var(--blur-20);
     border: 1px solid var(--glass-20);
     padding: 10px 28px;
     color: var(--text);
     border-radius: var(--radius-5);
     font-weight: 600;
     font-size: 14px;
     transition: var(--transition-normal);
     margin: 10px 20px;
     box-shadow: var(--shadow-2);
     cursor: pointer;
   }
   .app-open-button:hover {
     background: var(--glass-12);
     transform: translateY(-1px);
     box-shadow: 0 6px 20px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.15);
     border-color: rgba(255,255,255,0.3);
   }
   
   /* Hide banner under promoter header to prevent overlap */
   body.promoter-header-active .app-banner { display: none !important; }
   

   /* --------------------------------------------------------------------------
      Event Image & Overlay
      -------------------------------------------------------------------------- */
  .event-image-container {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: visible;
    border-radius: 0;
    margin-top: 0;
    transition: margin-top 0.6s ease;
    z-index: 2;
    isolation: isolate;
  }
   body.promoter-header-active .event-image-container { margin-top: 0; }
   
  .event-image-background {
    position: absolute; 
    inset: -3%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: blur(30px);
    transform: scale(1.1) translateZ(0);
    z-index: 1;
    transition: opacity 0.3s ease;
    contain: paint;
    will-change: transform, filter;
  }
   
   .event-image-main {
     position: absolute; top: 50%; left: 50%;
     transform: translate(-50%, -50%);
     max-width: 100%; max-height: 100%;
     padding-top: 90px;
     object-fit: contain;
     border-radius: var(--radius-5);
     z-index: 3;
     transition: all 0.4s ease;
     filter:
       drop-shadow(0 20px 40px rgba(0,0,0,0.8))
       drop-shadow(0 8px 16px rgba(0,0,0,0.6));
   }
   .event-image-main:hover {
     transform: translate(-50%, -50%) scale(1.02);
     filter:
       drop-shadow(0 30px 60px rgba(0,0,0,0.9))
       drop-shadow(0 12px 24px rgba(0,0,0,0.7));
   }
   
   .event-overlay {
     position: absolute; bottom: -10px; left: 50%;
     transform: translateX(-50%);
     display: flex; gap: 12px; align-items: center; justify-content: center;
     width: 800px; z-index: 10;
   }
   
   .event-age,
   .event-dresscode-container,
   .event-overlay button {
     background: rgba(0,0,0,0.4);
     backdrop-filter: var(--blur-20);
     -webkit-backdrop-filter: var(--blur-20);
     border: 1px solid var(--glass-15);
     border-radius: var(--radius-5);
     color: #f0f0f0;
     font-size: 13px;
     box-shadow: 0 4px 20px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.1);
     transition: var(--transition-normal);
   }
   
  .event-age {
    padding: 8px 18px;
    font-weight: 400;
    position: relative; z-index: 15;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 80px;
  }
  .event-age:hover {
    background: var(--glass-08);
    transform: translateY(-1px);
    box-shadow: 0 6px 25px rgba(0,0,0,0.6), inset 0 1px 0 rgba(255,255,255,0.15);
  }
  
  .event-dresscode-container {
    display: flex; align-items: center; gap: 8px;
    padding: 8px 18px; color: #fff; font-weight: 400;
    position: relative; z-index: 15;
    min-width: 80px;
  }
  .event-dresscode-container:hover {
    background: var(--glass-08);
    transform: translateY(-1px);
    box-shadow: 0 6px 25px rgba(0,0,0,0.6), inset 0 1px 0 rgba(255,255,255,0.15);
  }
  .event-dresscode p { font-weight: 300; }
  .event-dresscode-container .dresscode-icon { 
    width: 18px; 
    height: 18px; 
    min-width: 18px;
    min-height: 18px;
    margin-left: 8px;
    color: #ffffff;
    flex-shrink: 0;
  }
   
   .event-overlay button {
     display: inline-flex; align-items: center; justify-content: center;
     padding: 8px 20px; max-width: 400px;
     font-weight: 400; position: relative; z-index: 15; cursor: pointer;
   }
   .event-overlay button:hover {
     background: var(--glass-08);
     transform: translateY(-1px);
     box-shadow: 0 6px 25px rgba(0,0,0,0.6), inset 0 1px 0 rgba(255,255,255,0.15);
   }
   
   /* --------------------------------------------------------------------------
      Event Details
      -------------------------------------------------------------------------- */
  .event-details-container { position: relative; margin-left: 50px; z-index: 5; }
   .event-name {
     font-size: 45px; font-weight: 700; margin: 30px 0 0 50px;
     text-align: left; text-transform: uppercase; color: #fff;
     text-shadow: 0 2px 10px rgba(0,0,0,0.5); position: relative; display: inline-block;
   }
   .left-aligned-title-tickets-title {
     margin-left: 50px; color: #fff; text-shadow: 0 2px 10px rgba(0,0,0,0.5);
   }
   .combined-club-date {
     display: flex; justify-content: left; gap: 5px;
     font-size: 22px; margin-left: 50px; font-weight: 300;
   }
   .event-date { color: var(--brand-gold); }
   .event-club-name { color: #fff; }
   
   .event-music_type { font-weight: 300; font-family: var(--font-base); }
   .event-music_types {
     display: flex; flex-direction: row; flex-wrap: wrap;
     gap: 6px; margin: 8px 0; align-items: center;
   }
   .music_type {
     background: var(--glass-06);
     backdrop-filter: var(--blur-15);
     -webkit-backdrop-filter: var(--blur-15);
     border: 1px solid var(--glass-15);
     border-radius: var(--radius-5);
     padding: 5px 12px; font-size: 10px; color: #f0f0f0; font-weight: 400;
     letter-spacing: .5px; text-transform: uppercase;
     transition: var(--transition-quick);
     box-shadow: var(--shadow-1);
   }
   .music_type:hover {
     transform: translateY(-1px);
     background: var(--glass-12);
     box-shadow: 0 4px 12px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.12);
   }
   
   .countdown-title { margin-top: 10px; font-size: 22px; font-weight: 700; text-align: left; }
   .table-title,
   .media-title {
     margin-top: 10px; font-size: 30px; margin-left: 100px; margin-bottom: -10px;
     font-weight: 700; align-self: flex-start; color: #fff;
     text-shadow: 0 2px 10px rgba(0,0,0,0.5);
   }
   .media-title { margin-bottom: 15px; }
  .event-lineup-title {
    margin-top: 10px; font-size: 42px; font-weight: 700; text-align: left; color: #fff;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
    margin-left: 50px;
  }
   
  /* Countdown */
  .countdown-container {
    text-align: left; color: #fff; background: none;
    font-size: 30px; font-weight: 600; margin: 20px 0 30px 50px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
    contain: layout paint;
  }

  /* Elegant event description section */
  .event-description-section { margin: 0 0 20px; }
  .event-description-card {
    margin: 0 25px 10px; padding: 16px 18px;
  
    color: rgba(255,255,255,0.92);
  }
  /* Font size follows body at each breakpoint for perfect coherence */
  .event-description-content { font-size: 1em; line-height: 1.6; }
  .event-description-content p { margin: 0 0 10px; }
  .event-description-content a { color: #c49721; text-decoration: underline; }
  .event-description-content ul, .event-description-content ol { margin-left: 18px; }

  /* Tablet (475–950px) mirrors left paddings used elsewhere */
  @media only screen and (min-width: 475px) and (max-width: 950px) {
    .event-description-card { margin: 0 2px 10px; padding: 14px 16px; }
    .event-description-content { font-size: 12px; }
  }

  @media only screen and (min-width: 0px) and (max-width: 475px) {
    .event-description-card { margin: 0 2px 10px; padding: 12px 14px; }
    .event-description-content { font-size: 9px; }
  }
  @media only screen and (min-width: 0px) and (max-width: 375px) {
    .event-description-card { margin: 0 2px 10px; padding: 10px 12px; }
    .event-description-content { font-size: 7px; }
  }
   
   /* DJ Lineup */
   .dj-lineup-section { text-align: center; color: #fff; margin: 15px 0 20px; padding-bottom: 20px; }
   .dj-profiles-container { display: flex; flex-wrap: wrap; margin-left: 50px; justify-content: flex-start; align-items: flex-start; gap: 10px; }
   .dj-profile { width: 100px; display: flex; flex-direction: column; align-items: center; text-align: center; }
   .dj-profile img {
     width: 100px; height: 100px; border-radius: 50%; object-fit: cover; margin-bottom: 10px; flex-shrink: 0;
     border: 2px solid var(--glass-15); box-shadow: 0 4px 15px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.08);
     transition: var(--transition-normal);
   }
   .dj-profile img:hover {
     transform: scale(1.03);
     border-color: rgba(255,255,255,0.25);
     box-shadow: 0 8px 24px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.12);
   }
   .dj-name { font-size: 16px; color: #fff; overflow-wrap: break-word; line-height: 1.2; min-height: 20px; }
   
   /* Badges & countdown (legacy mini clusters) */
   .bottom-container { display: flex; justify-content: space-between; align-items: flex-start; }
   .Onsale-Fewtickets-container { display: flex; flex-direction: row; }
   .Onsale-container,
   .Fewtickets-container {
     margin-left: 5px; display: inline-flex; padding: 5px;
     background: linear-gradient(90deg, #07b89c 0%, #171b68 80%);
     background: -webkit-linear-gradient(90deg, #07b89c 0%, #171b68 80%);
     border-radius: 10px;
   }
   .Onsale text { font-size: 15px; }
   .Fewtickets text { color: white; font-size: 15px; }
   .Ticket-countdown-container {
     display: inline-flex; padding: 5px; background: grey; border-radius: 10px; margin-right: 5px;
   }
   
   /* --------------------------------------------------------------------------
      Entry Options
      -------------------------------------------------------------------------- */
   #entranceChoice { display: flex; flex-direction: column; width: 100%; max-width: 100vw; position: relative; z-index: 1; overflow-x: hidden; }
   #entranceChoiceContainer,
   #entryoptions-container,
   #Big-tables-container {
     display: flex; flex-direction: column; align-items: flex-start; justify-content: flex-start;
     position: relative; width: 100%; padding-left: 0; margin-bottom: 20px;
   }
   .EntryOptionContainer { width: 100%; display: flex; flex-direction: column; margin: 0; align-items: flex-start; position: relative; justify-content: flex-start; padding-bottom: 10px; }
   
  .EntryOption {
    width: 80%; max-width: 600px; margin: 0 100px 12px;
    padding: 18px; color: #fff; cursor: pointer; position: relative;
    background: var(--glass-04);
    backdrop-filter: var(--blur-20);
    -webkit-backdrop-filter: var(--blur-20);
    border-radius: var(--radius-5);
    border: 1px solid var(--glass-12);
    display: flex; flex-direction: column;
    box-shadow: var(--shadow-3);
    transition: var(--transition-normal);
  }
   .EntryOption:hover {
     background: var(--glass-08);
     transform: translateY(-2px);
     box-shadow: var(--shadow-5);
     border-color: rgba(255,255,255,0.2);
   }
   .EntryOptionTicketType { font-weight: 600; text-transform: capitalize; color: #fff; font-size: 18px; letter-spacing: .5px; }
   .EntryOptionDescription { font-size: 14px; padding-bottom: 10px; color: var(--text-muted); }
   .EntryOptionDescriptionandPrice {
     display: flex; flex-direction: row; justify-content: space-between; width: 100%;
     font-size: 18px; text-align: left; text-transform: lowercase;
   }
   .EntryOptionPrice { font-weight: 700; color: #fff; font-size: 20px; }
   
   .entryoption-bottom-container { display: flex; justify-content: space-between; align-items: flex-start; }
   .entryoption-ticket-countdown-container {
     display: inline-flex; padding: 6px 14px; font-size: 12px; color: rgba(255,255,255,0.9);
     background: var(--glass-05); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
     border-radius: var(--radius-5);
     border: 1px solid rgba(255,255,255,0.1);
     box-shadow: 0 2px 8px rgba(0,0,0,0.2), inset 0 1px 0 rgba(255,255,255,0.05);
   }
   
   /* status group */
   .entryoption-status-group { display: flex; flex-direction: row; gap: 5px; }
   .entryoption-onsale-container,
   .entryoption-fewtickets-container {
     display: flex; justify-content: center; align-items: center; text-align: center;
     padding: 6px 16px; font-size: 11px; font-weight: 100; color: #fff;
     background: var(--glass-08); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
     border: 1px solid var(--glass-15); border-radius: var(--radius-5);
     box-shadow: 0 2px 8px rgba(0,0,0,0.3), inset 0 1px 0 rgba(255,255,255,0.1);
   }

  /* Safari-safe promoter theming for entry option badges (no JS timing dependency) */
  body.promoter-header-active .entryoption-onsale-container,
  body.promoter-header-active .entryoption-ticket-countdown-container {
    background: linear-gradient(90deg, var(--promoter-primary) 0%, #1f1f21 30%) !important;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
  }
  
  /* Few tickets keeps red urgency gradient regardless of promoter */
  .entryoption-fewtickets-container {
    background: linear-gradient(90deg, #B60000 0%, #1f1f21 30%) !important;
  }

  /* Default theming when NO promoter is fetched (Safari-safe) */
  body:not(.promoter-header-active) .entryoption-onsale-container,
  body:not(.promoter-header-active) .entryoption-ticket-countdown-container {
    background: linear-gradient(90deg, var(--bg-indigo) 0%, var(--bg-charcoal) 30%);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
  }
  
  /* Few tickets always red (no promoter state) */
  body:not(.promoter-header-active) .entryoption-fewtickets-container {
    background: linear-gradient(90deg, #B60000 0%, var(--bg-charcoal) 30%) !important;
  }
   
   /* Tables option card */
   #TablesOptionContainer {
     width: 100%; height: 125px; display: flex; margin-top: 20px; align-items: flex-start; justify-content: flex-start;
   }
  #TablesOption {
    width: 80%; max-width: 600px; height: 100%; margin: 0 100px;
    padding: 18px; color: #fff; cursor: pointer; position: relative;
    background: var(--glass-04);
    backdrop-filter: var(--blur-20);
    -webkit-backdrop-filter: var(--blur-20);
    border: 1px solid var(--glass-12);
    border-radius: var(--radius-5);
    box-shadow: var(--shadow-3);
    transition: var(--transition-normal);
  }
   #TablesOption:hover {
     background: var(--glass-08);
     transform: translateY(-2px);
     box-shadow: var(--shadow-5);
     border-color: rgba(255,255,255,0.2);
   }
   #TablesOptionTicketType { top: 20px; left: 20px; color: #fff; font-weight: 700; }
   #TablesOptionTicketType text { font-size: 18px; color: #fff; font-weight: 600; }
   #TablesOptionDescriptionandPrice { flex-direction: row; }
   #TablesOptionDescription { left: 20px; font-size: 15px; color: var(--text-muted); }
   
   .TablesOption-bottom-container { display: flex; justify-content: space-between; align-items: left; margin-top: 10px; }
   .TablesOption-Onsale-Fewtickets-container { display: flex; flex-direction: row; font-size: 12px; }
   .TablesOption-Onsale-container {
     background: var(--glass-08); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
     padding: 6px 16px; border-radius: var(--radius-5);
     border: 1px solid var(--glass-15); font-size: 11px; font-weight: 500;
     box-shadow: 0 2px 8px rgba(0,0,0,0.3), inset 0 1px 0 rgba(255,255,255,0.1);
   }
   /* Safari-safe promoter theming for Tables tag */
   body.promoter-header-active .TablesOption-Onsale-container {
     background: linear-gradient(90deg, var(--promoter-primary) 0%, #1f1f21 30%) !important;
     -webkit-backdrop-filter: blur(10px);
     backdrop-filter: blur(10px);
     color: #fff;
   }
   /* Default theming when NO promoter is fetched */
   body:not(.promoter-header-active) .TablesOption-Onsale-container {
     background: linear-gradient(90deg, var(--bg-indigo) 0%, var(--bg-charcoal) 30%);
     -webkit-backdrop-filter: blur(10px);
     backdrop-filter: blur(10px);
     color: #fff;
   }
   .TablesOption-Onsale text { font-size: 12px; color: #fff; font-weight: 400; }
   
   /* --------------------------------------------------------------------------
      Media Section
      -------------------------------------------------------------------------- */
   #Media-container {
     display: flex; flex-direction: column; align-items: flex-start; justify-content: flex-start;
     margin: 0 0 30px 0; width: 100%; padding-left: 0;
   }
  .media-iframe-container {
    width: 560px; height: 315px; margin: 0 100px;
    background: rgba(0,0,0,0.6);
    backdrop-filter: var(--blur-15);
    -webkit-backdrop-filter: var(--blur-15);
    border-radius: var(--radius-5);
    border: 1px solid var(--glass-12);
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-4);
    transition: var(--transition-normal);
  }
   .media-iframe-container:hover {
     transform: translateY(-2px);
     box-shadow: 0 12px 40px rgba(0,0,0,0.6), inset 0 1px 0 rgba(255,255,255,0.08);
     border-color: rgba(255,255,255,0.18);
   }
   .media-iframe-container iframe {
     position: absolute; inset: 0; width: 100%; height: 100%;
     border: none; border-radius: 10px;
   }
   
   /* --------------------------------------------------------------------------
      Guest Options (small helpers)
      -------------------------------------------------------------------------- */
   #guestOptions h3 { font-size: 24px; color: #fff; }
   #guestOptions button {
     font-size: 24px; color: #000; padding: 10px 20px; margin-top: 15px;
   }
   
   /* --------------------------------------------------------------------------
      Forms (PATT user / Guest / Payment)
      -------------------------------------------------------------------------- */
   #pattUserForm input,
   #pattUserForm select,
  #guestForm input,
  #guestForm select,
  #paymentForm input,
  #paymentForm select {
    width: 100%; max-width: 600px;
     padding: 14px 16px;
     margin-bottom: 15px;
     font-size: 13px;
     border-radius: var(--radius-5);
     border: 1px solid var(--glass-12);
     background: var(--glass-04);
     backdrop-filter: var(--blur-15);
     -webkit-backdrop-filter: var(--blur-15);
     color: #fff;
     transition: var(--transition-normal);
     box-shadow: 0 2px 8px rgba(0,0,0,0.2), inset 0 1px 0 rgba(255,255,255,0.05);
    box-sizing: border-box;
   }
   
   #pattUserForm input,
   #pattUserForm select { margin-left: 1.40%; margin-bottom: 20px; }
   
  #guestForm { margin: 10px auto; margin-top: 10px; max-width: 600px; }
  #guestForm input,
  #guestForm select { width: 100% !important; max-width: 600px; margin-left: 0; }
  
  #paymentForm { align-items: center; margin: 10px auto; margin-top: 10px; margin-bottom: 40px; max-width: 600px; }
  #paymentForm h2 { width: 76.5%; font-size: 24px; color: #f5f5f5; margin-bottom: 20px; font-weight: 500; }
  /* Form headings scale by breakpoint to stay coherent */
  #paymentForm h3,
  #guestForm h3,
  #pattUserForm h3 { font-size: 22px; color: #f5f5f5; margin: 6px 0 12px 0; }
  #paymentForm input,
  #paymentForm select { width: 100% !important; max-width: 600px; margin-left: 0; }
   
   #pattUserForm input:hover,
   #pattUserForm select:hover,
   #guestForm input:hover,
   #guestForm select:hover,
   #paymentForm input:hover,
   #paymentForm select:hover {
     background: var(--glass-06);
     border-color: rgba(255,255,255,0.18);
   }
   
   #guestForm select,
   #paymentForm select {
     -webkit-appearance: none; -moz-appearance: none; appearance: none;
     background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
     background-repeat: no-repeat; background-position: right 12px center; background-size: 16px; padding-right: 40px;
   }
   #guestForm select:invalid,
   #paymentForm select:invalid { color: rgba(255,255,255,0.6); }
   #guestForm select:valid,
   #paymentForm select:valid { color: #fff; }
   
  .name-container { display: flex; gap: 10px; width: 100%; margin: 10px 0; }
  #guestForm .firstname-container,
  #guestForm .lastname-container,
  #paymentForm .firstname-container,
  #paymentForm .lastname-container { flex: 1; min-width: 0; }
   .name-container input {
     border: 1px solid var(--glass-12); background: var(--glass-04);
     backdrop-filter: var(--blur-15); -webkit-backdrop-filter: var(--blur-15);
     padding: 14px 16px; border-radius: var(--radius-5); color: #fff; font-size: 13px;
     transition: var(--transition-normal);
     box-shadow: 0 2px 8px rgba(0,0,0,0.2), inset 0 1px 0 rgba(255,255,255,0.05);
   }
   .name-container input:hover { background: var(--glass-06); border-color: rgba(255,255,255,0.18); }
   
  #paymentForm #payment-element-container {
    display: flex; flex-direction: column; justify-content: center;
    width: 100%; max-width: 600px; margin: 10px 0 0 0; font-size: 18px; border-radius: var(--radius-3);
     background-color: transparent;
   }
  #paymentForm #payment-element {
    width: 100%; margin: 10px 0; font-size: 18px; padding: 20px; justify-content: center;
    border-radius: var(--radius-3);
    background: linear-gradient(180deg, rgba(255,255,255,0.85) 0%, rgba(255,255,255,0.75) 100%);
    backdrop-filter: var(--blur-15);
    -webkit-backdrop-filter: var(--blur-15);
    color: #071f30;
    border: 1px solid rgba(255,255,255,0.6);
    box-shadow: 0 6px 20px rgba(0,0,0,0.25), inset 0 1px 0 rgba(255,255,255,0.25);
  }
   
   /* Buttons (guest & payment) */
  #paymentForm button,
  #guestForm button {
    width: 100% !important; max-width: 600px; padding: 15px 10px; font-size: 14px; font-weight: 500; display: block; margin-left: 0; margin-right: 0;
     border-radius: var(--radius-5);
     border: 1px solid var(--glass-20);
     background: var(--glass-06);
     backdrop-filter: var(--blur-20);
     -webkit-backdrop-filter: var(--blur-20);
     text-align: center; color: #fff; cursor: pointer;
     transition: var(--transition-normal);
     box-shadow: var(--shadow-2);
     margin-bottom: 10px; margin-left: 0;
   }
   #paymentForm button:hover,
   #guestForm button:hover {
     background: var(--glass-12);
     transform: translateY(-1px);
     box-shadow: var(--shadow-6);
     border-color: rgba(255,255,255,0.3);
   }
   
   /* Focus states */
   #pattUserForm input:focus,
   #guestForm input:focus,
   #guestForm select:focus,
   #paymentForm input:focus,
   #paymentForm select:focus {
     outline: none;
     border-color: rgba(255,255,255,0.3);
     background: var(--glass-08);
     box-shadow: 0 0 0 2px rgba(255,255,255,0.1), 0 4px 12px rgba(0,0,0,0.3), inset 0 1px 0 rgba(255,255,255,0.1);
   }
   
   /* Select option menus */
   #paymentForm select option,
   #guestForm select option {
     background-color: rgba(20,20,25,0.95); color: #fff; padding: 12px; backdrop-filter: var(--blur-20);
   }
   
   /* Big CTAs (patt/entrance/guest options) */
   #pattUserForm button,
   #EntranceOptions button,
   #guestOptions button {
     font-size: 18px; padding: 20px 40px; cursor: pointer; border-radius: 8px;
     border: 2px solid #fff; background-color: #fff; color: #000;
     transition: background-color 0.3s, transform 0.2s;
   }
   #pattUserForm button:hover,
   #guestForm button:hover,
   #paymentForm button:hover,
   #entranceChoice button:hover,
   #EntranceOptions button:hover,
   #guestOptions button:hover {
     transform: scale(1.05);
   }
   .back-btn {
     font-size: 18px; padding: 20px 40px; margin-top: 15px; cursor: pointer; border-radius: 8px;
     border: 2px solid #fff; background-color: #f2f2f2; color: #000; transition: background-color 0.3s, transform 0.2s;
   }
   .back-btn:hover { background-color: #e6e6e6; transform: scale(1.05); }
   
   /* Submit button pair (fixed selector list) */
  #paymentForm .submit-btn,
  #guestForm .submit-btn {
    font-size: 18px; font-weight: 300; padding: 15px 30px; cursor: pointer; border-radius: var(--radius-3);
    border: 0; background: linear-gradient(90deg, var(--brand-blue) 0%, rgba(240,240,240,0.06) 30%); color: #fff;
    transition: background-color 0.3s, transform 0.2s;
    max-width: 600px; width: 100%; box-sizing: border-box;
  }
   #paymentForm .submit-btn:hover,
   #guestForm .submit-btn:hover {
     background-color: #000;
     transform: scale(1.05);
   }
   
   /* --------------------------------------------------------------------------
      Loading Overlay & Indicators
      -------------------------------------------------------------------------- */
   #overlay {
     display: none; position: fixed; inset: 0; z-index: 9998; opacity: 0; transition: opacity 0.4s ease-in-out;
     background: radial-gradient(ellipse at center, rgba(20,0,0,0.95) 0%, rgba(0,0,0,0.98) 100%);
     backdrop-filter: var(--blur-30); -webkit-backdrop-filter: var(--blur-30);
   }
   #overlay.show { opacity: 1; }
   
   #loadingIndicator,
   #guestloadingIndicator,
   #pattuserloadingIndicator,
   #initialLoadingIndicator {
     display: none; position: fixed; top: 50%; left: 50%; transform: translate(-50%, -50%);
     z-index: 9999; text-align: center; color: #fff; font-family: var(--font-base);
     opacity: 0; transition: opacity 0.4s ease-in-out;
   }
   #loadingIndicator.show,
   #guestloadingIndicator.show,
   #pattuserloadingIndicator.show,
   #initialLoadingIndicator.show { opacity: 1; }
   
   .patt-loading-container {
     position: relative; display: flex; flex-direction: column; align-items: center; justify-content: center;
     padding: 45px; min-width: 320px; max-width: 420px;
     background: rgba(0,0,0,0.5);
     backdrop-filter: var(--blur-30); -webkit-backdrop-filter: var(--blur-30);
     border-radius: var(--radius-5); border: 1px solid var(--glass-12);
     box-shadow: 0 20px 60px rgba(0,0,0,0.8), inset 0 2px 0 rgba(255,255,255,0.08);
   }
   
   /* Spinning logo */
   .patt-loading-logo { width: 80px; height: 80px; margin-bottom: 30px; position: relative; animation: logoFloat 3s ease-in-out infinite; }
   .patt-loading-logo::before {
     content: ""; position: absolute; top: -10px; left: -10px; right: -10px; bottom: -10px; border-radius: 50%;
     background: conic-gradient(from 0deg, transparent, rgba(28,57,150,0.8), rgba(196,151,33,0.8), transparent);
     animation: logoSpin 2s linear infinite; z-index: -1;
   }
   .patt-loading-logo img {
     width: 100%; height: 100%; border-radius: 50%; object-fit: contain;
     background: rgba(31,31,33,0.9); padding: 15px; border: 2px solid rgba(196,151,33,0.5);
     box-shadow: 0 0 30px rgba(28,57,150,0.3);
   }
   @keyframes logoSpin { to { transform: rotate(360deg); } }
   @keyframes logoFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
   
   /* Progress rings */
   .patt-loading-rings { position: relative; width: 120px; height: 120px; margin-bottom: 25px; }
   .patt-loading-ring { position: absolute; border-radius: 50%; border: 2px solid transparent; animation: ringRotate 2s linear infinite; }
   .patt-loading-ring:nth-child(1) { width: 120px; height: 120px; border-top: 2px solid rgba(28,57,150,0.8); border-right: 2px solid rgba(28,57,150,0.4); }
   .patt-loading-ring:nth-child(2) { width: 90px; height: 90px; top: 15px; left: 15px; border-top: 2px solid rgba(196,151,33,0.8); border-left: 2px solid rgba(196,151,33,0.4); animation-duration: 1.5s; animation-direction: reverse; }
   .patt-loading-ring:nth-child(3) { width: 60px; height: 60px; top: 30px; left: 30px; border-top: 2px solid rgba(240,240,240,0.6); border-bottom: 2px solid rgba(240,240,240,0.3); animation-duration: 1s; }
   @keyframes ringRotate { to { transform: rotate(360deg); } }
   
   /* Loading text */
   .patt-loading-text { font-size: 18px; font-weight: 500; color: #fff; margin-bottom: 15px; letter-spacing: 1px; text-shadow: 0 2px 10px rgba(28,57,150,0.3); }
   .patt-loading-subtext { font-size: 14px; font-weight: 300; color: rgba(196,151,33,0.9); margin-bottom: 25px; opacity: 0; animation: fadeInUp 0.8s ease-out 0.5s forwards; }
   @keyframes fadeInUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
   
   /* Progress bar */
   .patt-loading-progress { width: 100%; height: 4px; background: rgba(255,255,255,0.1); border-radius: 2px; overflow: hidden; margin-bottom: 20px; }
   .patt-loading-progress-bar {
     width: 0%; height: 100%;
     background: linear-gradient(90deg, rgba(28,57,150,0.8) 0%, rgba(196,151,33,0.9) 50%, rgba(28,57,150,0.8) 100%);
     border-radius: 2px; animation: progressFlow 2s ease-in-out infinite; position: relative;
   }
   .patt-loading-progress-bar::after {
     content: ""; position: absolute; inset: 0;
     background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.4) 50%, transparent 100%); animation: progressShine 1.5s ease-in-out infinite;
   }
   @keyframes progressFlow { 0%,100% { width: 20%; } 50% { width: 80%; } }
   @keyframes progressShine { 0% { transform: translateX(-100%); } 100% { transform: translateX(100%); } }
   
   /* Floating particles */
   .patt-loading-particles { position: absolute; inset: 0; pointer-events: none; overflow: hidden; border-radius: 20px; }
   .patt-particle { position: absolute; width: 4px; height: 4px; background: rgba(196,151,33,0.6); border-radius: 50%; animation: particleFloat 4s ease-in-out infinite; }
   .patt-particle:nth-child(odd) { background: rgba(28,57,150,0.6); animation-duration: 3s; }
   .patt-particle:nth-child(1) { top: 20%; left: 10%; animation-delay: 0s; }
   .patt-particle:nth-child(2) { top: 60%; left: 20%; animation-delay: 0.5s; }
   .patt-particle:nth-child(3) { top: 30%; left: 80%; animation-delay: 1s; }
   .patt-particle:nth-child(4) { top: 80%; left: 70%; animation-delay: 1.5s; }
   .patt-particle:nth-child(5) { top: 10%; left: 60%; animation-delay: 2s; }
   .patt-particle:nth-child(6) { top: 70%; left: 90%; animation-delay: 2.5s; }
   @keyframes particleFloat {
     0%,100% { transform: translateY(0) scale(1); opacity: 0.6; }
     25% { transform: translateY(-20px) scale(1.2); opacity: 1; }
     50% { transform: translateY(-10px) scale(0.8); opacity: 0.8; }
     75% { transform: translateY(-30px) scale(1.1); opacity: 0.9; }
   }
   
   /* Loading responsive */
   @media (max-width: 768px) {
     .patt-loading-container { padding: 30px 20px; min-width: 280px; max-width: 320px; margin: 0 20px; }
     .patt-loading-logo { width: 60px; height: 60px; margin-bottom: 20px; }
     .patt-loading-rings { width: 90px; height: 90px; margin-bottom: 20px; }
     .patt-loading-ring:nth-child(1) { width: 90px; height: 90px; }
     .patt-loading-ring:nth-child(2) { width: 65px; height: 65px; top: 12.5px; left: 12.5px; }
     .patt-loading-ring:nth-child(3) { width: 40px; height: 40px; top: 25px; left: 25px; }
     .patt-loading-text { font-size: 16px; }
     .patt-loading-subtext { font-size: 12px; }
   }
   @media (max-width: 480px) {
     .patt-loading-container { padding: 25px 15px; min-width: 260px; max-width: 300px; }
     .patt-loading-logo { width: 50px; height: 50px; margin-bottom: 15px; }
     .patt-loading-rings { width: 70px; height: 70px; margin-bottom: 15px; }
     .patt-loading-ring:nth-child(1) { width: 70px; height: 70px; }
     .patt-loading-ring:nth-child(2) { width: 50px; height: 50px; top: 10px; left: 10px; }
     .patt-loading-ring:nth-child(3) { width: 30px; height: 30px; top: 20px; left: 20px; }
     .patt-loading-text { font-size: 14px; }
     .patt-loading-subtext { font-size: 11px; }
   }
   
   /* --------------------------------------------------------------------------
      Separators
      -------------------------------------------------------------------------- */
   .gradient-separator {
     width: 100%; height: 1px;
     background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.2) 25%, rgba(255,255,255,0.4) 50%, rgba(255,255,255,0.2) 75%, transparent 100%);
     box-shadow: 0 0 10px rgba(255,255,255,0.1);
     position: relative; z-index: 1;
   }
   hr {
     border: 0; height: 1px;
     background-image: linear-gradient(to right, rgba(0,0,0,0), rgba(0,0,0,0.75), rgba(0,0,0,0));
     margin: 20px 0;
   }
   
   /* --------------------------------------------------------------------------
      Footer
      -------------------------------------------------------------------------- */
  .footer {
    margin-top: 0; color: #fff;
    background: rgba(10,10,15,0.5);
    backdrop-filter: blur(20px) saturate(150%);
    -webkit-backdrop-filter: blur(20px) saturate(150%);
    padding: 20px 20px 20px; text-align: left; align-items: flex-start;
    font-family: var(--font-base); width: 100%; border-top: 0;
    position: relative; z-index: 1; box-sizing: border-box;
  }
  .footer p, .footer a, .footer li, .footer span { font-family: var(--font-base); }
  .footer-logo { margin-top: 0; }
   
   .footer-top p { margin-bottom: 20px; margin-left: 50px; }
   .footer-top1, .footer-top4 { display: flex; justify-content: space-between; margin-right: 50px; }
   .footer-top1 p, .footer-top4 p, .footer-top5 p, .footer-top6 p, .footer-top7 p, .footer-top8 p { margin: 0; }
   .footer-top2 { margin-right: 30%; margin-left: 50px; }
   .footer-top3 { width: 70px; }
   .footer-top5 { margin-bottom: 10px; margin-left: 50px; }
   .footer-top6 { margin-bottom: 10px; margin-left: 50px; margin-right: 10px; justify-content: flex-end; text-align: right; }
   .footer-top7 { margin: 10px 0; display: inline-flex; flex-direction: row; }
   .footer-top8 { margin-bottom: 10px; display: inline-flex; }
   .footer-top9 { margin-left: 50px; }
   .footer-top9 p { margin: 0 0 10px; }
   
   .footer-buttons,
   .footer-buttons1,
   .footer-buttons2 {
     display: flex; gap: 10px; flex-wrap: wrap; padding: 10px 10px 0 0;
   }
   .footer-buttons1 { padding: 10px 0 0 0; }
   .footer-buttons2 { display: inline-flex; padding: 0; }
   
   .footer-buttons a,
   .footer-buttons1 a {
     width: 90px; height: 25px; padding: 10px;
     display: inline-flex; align-items: center; justify-content: center;
     border-radius: var(--radius-3);
     text-decoration: none; color: #fff;
     background: rgba(240,240,240,0.1);
     transition: background-color 0.3s;
     font-size: 8px; font-weight: 700;
   }
   .footer-buttons a:hover,
   .footer-buttons1 a:hover { background-color: rgba(240,240,240,0.2); color: #fff; }
   .footer-buttons a i,
   .footer-buttons1 a i { margin-right: 5px; font-size: 15px; }
   
   .footer-buttons2 a {
     width: 10px; height: 10px; padding: 10px;
     display: inline-flex; align-items: center; justify-content: center;
     border-radius: var(--radius-3); text-decoration: none; color: #fff; background: none;
     transition: background-color 0.3s; font-size: 8px; font-weight: 700;
   }
   .footer-buttons2 a:hover { background-color: rgba(240,240,240,0.2); color: #fff; }
   .footer-buttons2 a i { margin-right: 5px; font-size: 15px; justify-content: center; }
   
   .lighter-text { font-weight: 350; color: var(--text-dim); margin-bottom: 10px; }
   .lighter-text a { text-decoration: none; color: inherit; display: block; }
   
   .footer-left { text-align: left; font-size: 8px; color: var(--text-dim); }
   .footer-bottom { display: flex; justify-content: space-between; align-items: flex-start; flex-wrap: wrap; text-align: center; }
   .footer-links { flex: 1; display: flex; justify-content: flex-start; flex-wrap: wrap; gap: 10px; margin-left: 50px; list-style: none; padding: 0; }
   .footer-links a { color: var(--text-dim); font-size: 8px; text-decoration: none; }
   .footer-logo { max-width: 100px; margin-left: 50px; margin-bottom: 10px; }
   .text-under-footer-logo { font-size: 15px; color: var(--text-dim); margin-left: 50px; font-weight: 350; margin-bottom: 10px; }
   .footer-line { display: flex; background-color: rgba(255,255,255,0.1); margin: 30px 0.1% 10px 0.2%; width: auto; height: 1px; }

  /* Smooth liquid-glass transition into footer */
  .footer-connector {
    width: 100%; height: 80px; position: relative; z-index: 1;
    background: linear-gradient(180deg,
      rgba(255,255,255,0.00) 0%,
      rgba(10,10,15,0.25) 60%,
      rgba(10,10,15,0.50) 100%);
    border-top: 0;
    backdrop-filter: blur(14px) saturate(140%);
    -webkit-backdrop-filter: blur(14px) saturate(140%);
  }
  @media only screen and (min-width: 475px) and (max-width: 950px) {
    .footer-connector { height: 48px; }
  }
  @media only screen and (max-width: 475px) {
    .footer-connector { height: 36px; }
  }
   
   /* --------------------------------------------------------------------------
      Promoter Header (glass bar)
      -------------------------------------------------------------------------- */
   .promoter-header-bar {
     position: fixed; top: 0; left: 0; width: 100%; height: 80px; z-index: 1001; overflow: hidden;
     backdrop-filter: var(--blur-10); -webkit-backdrop-filter: var(--blur-10);
     border-bottom: 0; background: linear-gradient(180deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.2) 70%, rgba(0,0,0,0) 100%);
     box-shadow: none; transition: var(--transition-smooth);
     transform: translateY(-100%); opacity: 0;
   }
   .promoter-header-bar:not(.hidden) { transform: translateY(0); opacity: 1; }
   
   .promoter-header-background { position: absolute; inset: 0; background: transparent; background-size: cover; background-position: center; filter: none; pointer-events: none; }
   .promoter-header-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0.15) 60%, rgba(0,0,0,0) 100%); pointer-events: none; }
   
   .promoter-header-content {
     position: relative; display: flex; align-items: center; height: 100%; width: 100%;
     margin: 0; padding-left: 50px; padding-right: 20px; z-index: 2;
   }
   
   .back-button-icon {
     background: var(--glass-06); backdrop-filter: var(--blur-20); -webkit-backdrop-filter: var(--blur-20);
     border: 1px solid var(--glass-15); border-radius: var(--radius-5);
     width: 38px; height: 38px; display: flex; align-items: center; justify-content: center; cursor: pointer;
     transition: var(--transition-normal); color: #fff; margin-right: 15px; flex-shrink: 0; box-shadow: var(--shadow-2);
   }
   .back-button-icon:hover { background: var(--glass-12); transform: translateX(-2px); box-shadow: var(--shadow-6); border-color: rgba(255,255,255,0.25); }
   .back-button-icon:active { transform: translateX(-3px) scale(0.97); }
   .back-button-icon svg { width: 20px; height: 20px; transition: transform 0.3s ease; }
   
   .promoter-avatar-container {
     position: relative; width: 70px; height: 70px; margin-right: 15px; flex-shrink: 0; padding: 8px; margin-left: 0;
   }
  .promoter-avatar {
    width: 100%; height: 100%; border-radius: 50%; object-fit: cover;
    border: 2px solid rgba(255,255,255,0.2);
    transition: all 0.4s ease;
    filter: brightness(1.05) saturate(1.1);
    box-shadow: var(--shadow-2);
  }
   .promoter-avatar-glow {
     position: absolute; top: 6px; left: 6px; right: 6px; bottom: 6px; border-radius: 50%;
     background: conic-gradient(from 0deg, transparent, rgba(196,151,33,0.6), rgba(28,57,150,0.6), transparent);
     animation: avatarGlowSpin 4s linear infinite; opacity: 0.8; z-index: -1;
   }
   .promoter-avatar-ring {
     position: absolute; top: 4px; left: 4px; right: 4px; bottom: 4px; border-radius: 50%;
     border: 2px solid transparent; background: linear-gradient(45deg, rgba(196,151,33,0.4), rgba(28,57,150,0.4)) border-box;
     -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
     mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
     -webkit-mask-composite: xor; mask-composite: exclude;
     animation: avatarRingPulse 2s ease-in-out infinite alternate;
   }
   @keyframes avatarGlowSpin {
     0% { transform: rotate(0) scale(1); opacity: .6; }
     50% { transform: rotate(180deg) scale(1.1); opacity: 1; }
     100% { transform: rotate(360deg) scale(1); opacity: .6; }
   }
   @keyframes avatarRingPulse { 0% { transform: scale(1); opacity: .5; } 100% { transform: scale(1.1); opacity: .8; } }
   
   .promoter-info { flex: 1; color: #fff; text-shadow: 0 2px 10px rgba(0,0,0,0.5); }
   .promoter-title {
     font-size: 12px; font-weight: 300; color: rgba(196,151,33,0.9); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 2px;
     opacity: 0; animation: slideInUp 0.8s ease-out 0.3s forwards;
   }
   .promoter-name {
     font-size: 22px; font-weight: 600; color: #fff; margin-bottom: 2px; text-transform: uppercase; letter-spacing: .5px;
     opacity: 0; background: linear-gradient(45deg, #fff, rgba(196,151,33,0.8), #fff); background-size: 200% 200%;
     -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
     animation: slideInUp 0.8s ease-out 0.5s forwards, textShimmer 3s ease-in-out infinite 1s;
   }
   @keyframes slideInUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
   @keyframes textShimmer { 0%,100% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } }
   
   .promoter-header-actions { position: relative; width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; }
   .promoter-social-pulse {
     width: 20px; height: 20px; border-radius: 50%;
     background: linear-gradient(45deg, rgba(196,151,33,0.6), rgba(28,57,150,0.6));
     animation: socialPulse 2s ease-in-out infinite; box-shadow: 0 0 20px rgba(196,151,33,0.3);
   }
   @keyframes socialPulse {
     0%,100% { transform: scale(1); opacity: .7; box-shadow: 0 0 20px rgba(196,151,33,0.3); }
     50% { transform: scale(1.2); opacity: 1; box-shadow: 0 0 30px rgba(28,57,150,0.5); }
   }
   
   /* Floating header particles */
   .promoter-header-particles { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
   .header-particle { position: absolute; width: 4px; height: 4px; background: rgba(196,151,33,0.6); border-radius: 50%; animation: headerParticleFloat 6s ease-in-out infinite; }
   .header-particle:nth-child(1) { top: 20%; left: 10%; animation-delay: 0s; animation-duration: 4s; }
   .header-particle:nth-child(2) { top: 60%; left: 25%; animation-delay: 1s; animation-duration: 5s; background: rgba(28,57,150,0.6); }
   .header-particle:nth-child(3) { top: 30%; right: 20%; animation-delay: 2s; animation-duration: 6s; }
   .header-particle:nth-child(4) { top: 70%; right: 10%; animation-delay: 3s; animation-duration: 4.5s; background: rgba(28,57,150,0.6); }
   .header-particle:nth-child(5) { top: 40%; left: 60%; animation-delay: 4s; animation-duration: 5.5s; }
   @keyframes headerParticleFloat {
     0%,100% { transform: translateY(0) translateX(0) scale(1); opacity: .4; }
     25% { transform: translateY(-15px) translateX(10px) scale(1.2); opacity: .8; }
     50% { transform: translateY(-8px) translateX(-5px) scale(0.8); opacity: 1; }
     75% { transform: translateY(-20px) translateX(15px) scale(1.1); opacity: .6; }
   }
   
   /* Transparent background handling */
   .promoter-avatar.transparent-bg {
     background: linear-gradient(135deg, rgba(31,31,33,0.8), rgba(21,42,111,0.6));
     padding: 6px; border: 2px solid rgba(196,151,33,0.4);
     box-shadow: 0 0 15px rgba(196,151,33,0.3), inset 0 0 15px rgba(255,255,255,0.1);
   }
   .promoter-avatar.transparent-bg + .promoter-avatar-glow {
     background: conic-gradient(from 0deg, rgba(196,151,33,0.8), rgba(28,57,150,0.8), rgba(196,151,33,0.8));
     filter: blur(8px);
   }
   
   /* Promoter header responsive */
   @media (max-width: 768px) {
     .promoter-header-bar { height: 70px; }
     .promoter-avatar-container { width: 67px; height: 67px; margin-right: 15px; padding: 6px; }
     .promoter-name { font-size: 18px; }
     .promoter-title { font-size: 10px; }
     .promoter-header-content { padding: 0 20px; }
     body.promoter-header-active .event-image-container { margin-top: 70px; }
     .back-button-icon { width: 35px; height: 35px; margin-right: 10px; }
     .back-button-icon svg { width: 18px; height: 18px; }
   }
   @media (max-width: 480px) {
     .promoter-header-bar { height: 65px; }
     .promoter-avatar-container { width: 60px; height: 60px; margin-right: 12px; padding: 5px; }
     .promoter-name { font-size: 16px; }
     .promoter-title { font-size: 9px; }
     body.promoter-header-active .event-image-container { margin-top: 60px; }
     .back-button-icon { width: 32px; height: 32px; margin-right: 8px; }
     .back-button-icon svg { width: 16px; height: 16px; }
   }
   
   /* --------------------------------------------------------------------------
      Misc form labels & name stacks
      -------------------------------------------------------------------------- */
   .event_music_type_container { display: flex; align-items: flex-start; justify-content: left; margin-left: 50px; margin-top: 5px; }
   .input-label { color: #fff; font-family: inherit; font-size: 12px; display: block; margin-bottom: 5px; }
   .firstname-container,
   .lastname-container { display: flex; width: 100%; justify-content: space-between; flex-direction: column; }
   
   /* --------------------------------------------------------------------------
      Responsive Blocks (0–475px)
      -------------------------------------------------------------------------- */
   @media only screen and (min-width: 0px) and (max-width: 475px) {
     #entranceChoice, .container, body { padding: 0; margin: 0; }
     .navbar-fixed-top, .navbar-fixed-bottom, .navbar-static-top { margin: 0; }

     body {
       font-size: 13px;
       background: var(--bg-indigo);
       background-attachment: fixed;
       height: 100vh;
       margin: 0;
       padding: 0;
     }

     body::before {
       content: '';
       position: fixed;
       top: 0;
       left: 0;
       width: 100%;
       height: 100vh;
       background: linear-gradient(180deg, var(--bg-indigo) 0%, var(--bg-charcoal) 100%);
       background-size: 100% 100vh;
       z-index: -1;
       pointer-events: none;
     }

     /* Promoter theming override for mobile 475px */
     body.promoter-header-active::before {
       background: linear-gradient(180deg, var(--promoter-primary) 0%, var(--promoter-secondary) 100%) !important;
       background-size: 100% 100vh !important;
     }
   
     .app-banner { flex-direction: row; padding: 12px; }
     .app-logo { width: 45px; height: 15px; }
     .app-description { font-size: 9px; text-align: center; padding: 8px; }
     .app-open-button { padding: 4px 8px; font-size: 9px; margin-top: 8px; margin-left: 0; margin-right: 8px; }
   
     .event-image-container { height: 280px; }
     .event-image-main { max-height: 280px; padding-top: 60px; }
     .event-overlay { gap: 8px; margin-top: 8px; width: 95%; }
   
    .event-details-container { margin-left: 15px; margin-right: 15px; }
     .event-name { font-size: 22px; margin: 20px 0 0 15px; margin-bottom: 0; }
     .left-aligned-title-tickets-title { margin-left: 15px; font-size: 20px; margin-bottom: 6px; }
     .combined-club-date { font-size: 14px; margin-left: 15px; gap: 3px; }
     .event-music_type { font-size: 10px; }
     .music_type { padding: 3px 6px; font-size: 7px; border-radius: 8px; }
     .event_music_type_container { margin-left: 15px; margin-top: 4px; margin-bottom: 4px; }
     .countdown-container { font-size: 20px; margin: 6px 15px; }
     .event-lineup-title { font-size: 20px; margin-left: 15px; margin-bottom: 6px; }
   
     .dj-lineup-section { margin: 8px 0 12px; padding-bottom: 8px; }
     .dj-profile { width: 60px; }
     .dj-profile img { width: 60px; height: 60px; }
     .dj-name { font-size: 10px; }
     .dj-profiles-container { margin-left: 15px; gap: 12px; }
   
    .EntryOptionContainer { width: 100%; max-width: calc(100% - 30px); margin: 0 15px; }
    .EntryOption { width: 100%; padding: 10px 12px; margin: 0; font-size: 11px; border-radius: 4px; }
     .EntryOptionTicketType { font-size: 13px; }
     .EntryOptionDescription { font-size: 9px; }
     .EntryOptionPrice { font-size: 14px; }
     .entryoption-onsale-container,
     .entryoption-fewtickets-container,
     .entryoption-ticket-countdown-container {
       padding: 3px 8px; font-size: 6px; border-radius: 3px;
       background: var(--glass-08); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
       border: 1px solid var(--glass-15);
       box-shadow: 0 2px 8px rgba(0,0,0,0.3), inset 0 1px 0 rgba(255,255,255,0.1);
     }
   
    .table-title { font-size: 18px; margin: 6px 15px 8px; }
    #TablesOption { width: 100%; max-width: calc(100% - 30px); padding: 10px 12px; margin: 0 15px; height: auto; border-radius: 4px; }
     #TablesOptionTicketType text { font-size: 13px; }
     #TablesOptionDescription { font-size: 9px; }
     .TablesOption-Onsale-container { padding: 2px 8px 3px; font-size: 6px; }
     .event-image-container { height: 500px; }
     .event-image-main { max-height: 400px; padding-top: 0px; }
 
   
     .media-title { font-size: 18px; margin-left: 30px; margin-top: 6px; margin-bottom: 8px; }
    .media-iframe-container { width: 100%; max-width: calc(100% - 30px); height: 180px; margin: 0 15px; }
   
    #guestForm, #paymentForm { margin: 0 auto; max-width: 92%; }
    #guestForm input, #guestForm select, #paymentForm input, #paymentForm select { width: 100% !important; max-width: 100%; }
    #paymentForm #payment-element-container { width: 100%; max-width: 100%; }
    #paymentForm h3, #guestForm h3, #pattUserForm h3 { font-size: 14px; }
    #guestForm input, #guestForm select, #paymentForm input, #paymentForm select { font-size: 12px; padding: 12px; }
    #paymentForm .submit-btn, #guestForm .submit-btn { font-size: 14px; padding: 12px; }
    .name-container { flex-direction: column; gap: 8px; }
   
    .event-age, .event-dresscode-container, .event-overlay button { padding: 4px 12px; font-size: 8px; }
    .event-dresscode-container .dresscode-icon { width: 10px; height: 10px; min-width: 10px; min-height: 10px; }
     .footer { padding: 12px; }
     .footer-top p { font-size: 8px; }
     .footer-logo { max-width: 60px; }
     .text-under-footer-logo { font-size: 10px; }
     .footer-buttons a { width: 60px; padding: 3px; font-size: 7px; }
     .footer-bottom { font-size: 7px; }
     .footer-links { margin-left: 15px; }
     .footer-links a { font-size: 7px; }
   }
   
   /* --------------------------------------------------------------------------
      Responsive Blocks (0–375px)
      -------------------------------------------------------------------------- */
   @media only screen and (min-width: 0px) and (max-width: 375px) {
    #entranceChoice, .container, body { padding: 0; margin: 0; overflow-x: hidden; }
     .navbar-fixed-top, .navbar-fixed-bottom, .navbar-static-top { margin: 0; }
     body {
       font-size: 12px;
       background: var(--bg-indigo);
       background-attachment: fixed;
       height: 100vh;
       margin: 0;
       padding: 0;
     }

     body::before {
       content: '';
       position: fixed;
       top: 0;
       left: 0;
       width: 100%;
       height: 100vh;
       background: linear-gradient(180deg, var(--bg-indigo) 0%, var(--bg-charcoal) 100%);
       background-size: 100% 100vh;
       z-index: -1;
       pointer-events: none;
     }

     /* Promoter theming override for mobile 375px */
     body.promoter-header-active::before {
       background: linear-gradient(180deg, var(--promoter-primary) 0%, var(--promoter-secondary) 100%) !important;
       background-size: 100% 100vh !important;
     }
   
     .app-banner { flex-direction: row; padding: 10px; }
     .app-logo { width: 40px; height: 13px; }
     .app-description { font-size: 8px; text-align: center; padding: 6px; }
     .app-open-button { padding: 3px 6px; font-size: 8px; margin-top: 6px; margin-left: 0; margin-right: 6px; }
   
     .event-image-container { height: 240px; }
     .event-image-main { max-height: 240px; padding-top: 50px; }
     .event-overlay { gap: 6px; margin-top: 6px; width: 98%; }
   
     .event-details-container { margin-left: 12px; }
     .event-name { font-size: 18px; margin: 16px 0 0 12px; margin-bottom: 0; }
     .left-aligned-title-tickets-title { margin-left: 12px; font-size: 16px; margin-bottom: 4px; }
     .combined-club-date { font-size: 12px; margin-left: 12px; gap: 2px; }
     .event-music_type { font-size: 9px; }
     .music_type { padding: 2px 4px; font-size: 6px; border-radius: 6px; }
     .event_music_type_container { margin-left: 12px; margin-top: 3px; margin-bottom: 3px; }
     .countdown-container { font-size: 12px; margin: 4px 12px; }
     .event-lineup-title { font-size: 16px; margin-left: 12px; margin-bottom: 4px; }
   
     .dj-lineup-section { margin: 6px 0 10px; padding-bottom: 6px; }
     .dj-profile { width: 50px; }
     .dj-profile img { width: 50px; height: 50px; }
     .dj-name { font-size: 8px; }
     .dj-profiles-container { margin-left: 12px; gap: 10px; }
   
    .EntryOptionContainer { width: 100%; max-width: calc(100% - 24px); margin: 0 12px; }
    .EntryOption { width: 100%; padding: 8px 10px; margin: 0; font-size: 10px; border-radius: 3px; }
     .EntryOptionTicketType { font-size: 11px; }
     .EntryOptionDescription { font-size: 8px; }
     .EntryOptionPrice { font-size: 12px; }
     .entryoption-onsale-container,
     .entryoption-fewtickets-container,
     .entryoption-ticket-countdown-container {
       padding: 2px 6px; font-size: 5px; border-radius: 2px;
       background: var(--glass-08); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
       border: 1px solid var(--glass-15);
       box-shadow: 0 2px 8px rgba(0,0,0,0.3), inset 0 1px 0 rgba(255,255,255,0.1);
     }
   
    .table-title { font-size: 14px; margin: 4px 12px 6px; }
    #TablesOption { width: 100%; max-width: calc(100% - 24px); padding: 8px 10px; margin: 0 12px; height: auto; border-radius: 3px; }
     #TablesOptionTicketType text { font-size: 11px; }
     #TablesOptionDescription { font-size: 8px; }
     .TablesOption-Onsale-container { padding: 1px 6px 2px; font-size: 5px; }
     .event-image-container { height: 300px; }
     .event-image-main { max-height: 300px; padding-top: 20px; }
 
     .media-title { font-size: 14px; margin-left: 12px; margin-top: 4px; margin-bottom: 6px; }
    .media-iframe-container { width: 100%; max-width: calc(100% - 24px); height: 150px; margin: 0 12px; }

    /* Ensure all post-title containers never overflow horizontally */
    #entranceChoiceContainer,
    #entryoptions-container,
    #Big-tables-container,
    .Tickets { width: 100%; max-width: 100%; margin: 0; padding: 0; overflow-x: hidden; }
   
    #guestForm, #paymentForm { margin: 0 auto; max-width: 94%; }
    #guestForm input, #guestForm select, #paymentForm input, #paymentForm select { width: 100% !important; max-width: 100%; }
    #paymentForm #payment-element-container { width: 100%; max-width: 100%; }
    #guestForm input, #guestForm select, #paymentForm input, #paymentForm select { font-size: 11px; padding: 10px; }
    #paymentForm .submit-btn, #guestForm .submit-btn { font-size: 13px; padding: 10px; }
    .name-container { flex-direction: column; gap: 8px; }
    #paymentForm h3, #guestForm h3, #pattUserForm h3 { font-size: 12px; }
   
     .event-age, .event-dresscode-container, .event-overlay button { padding: 3px 8px; font-size: 7px; }
    .event-dresscode-container .dresscode-icon { width: 9px; height: 9px; min-width: 9px; min-height: 9px; }
     .footer { padding: 10px; }
     .footer-top p { font-size: 7px; }
     .footer-logo { max-width: 50px; }
     .text-under-footer-logo { font-size: 8px; }
     .footer-buttons a { width: 50px; padding: 2px; font-size: 6px; }
     .footer-bottom { font-size: 6px; }
     .footer-links { margin-left: 12px; }
     .footer-links a { font-size: 6px; }
   }
   
   /* --------------------------------------------------------------------------
      Responsive Blocks (475–950px)
      -------------------------------------------------------------------------- */
  @media only screen and (min-width: 475px) and (max-width: 950px) {
    #entranceChoice, .container, body { padding: 0; margin: 0; }
    .navbar-fixed-top, .navbar-fixed-bottom, .navbar-static-top { margin: 0; }
    body {
      font-size: 14px;
      background: var(--bg-indigo);
      background-attachment: fixed;
      height: 100vh;
      margin: 0;
      padding: 0;
    }

    body::before {
      content: '';
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100vh;
      background: linear-gradient(180deg, var(--bg-indigo) 0%, var(--bg-charcoal) 100%);
      background-size: 100% 100vh;
      z-index: -1;
      pointer-events: none;
    }

    /* Promoter theming override for tablet 950px */
    body.promoter-header-active::before {
      background: linear-gradient(180deg, var(--promoter-primary) 0%, var(--promoter-secondary) 100%) !important;
      background-size: 100% 100vh !important;
    }

    /* Event image sizing for 475-550px range */
    .event-image-container { height: 500px; }
    .event-image-main { max-height: 500px; padding-top: 0px; }
   
     .app-banner { flex-direction: row; padding: 15px; }
     .app-logo { width: 60px; }
     .app-description { font-size: 14px; text-align: center; padding: 10px; }
     .app-open-button { padding: 10px 20px; font-size: 12px; margin-top: 10px; margin-left: 0; }
   
    .event-image-container { height: 500px; }
    .event-image-main { max-height: 500px; padding-top: 90px; }
     .event-overlay { gap: 10px; margin-top: 10px; width: 90%; }
   
     .event-details-container { margin-left: 20px; }
     .event-name { font-size: 32px; margin: 25px 0 0 20px; margin-bottom: 0; }
     .left-aligned-title-tickets-title { margin-left: 20px; font-size: 28px; margin-bottom: 8px; }
     .combined-club-date { font-size: 18px; margin-left: 20px; gap: 4px; }
     .event-music_type { font-size: 12px; }
     .music_type { padding: 4px 10px; font-size: 9px; border-radius: 12px; }
     .event_music_type_container { margin-left: 20px; margin-top: 6px; margin-bottom: 6px; }
     .countdown-container { font-size: 18px; margin: 8px 20px; }
     .event-lineup-title { font-size: 28px; margin-left: 20px; margin-bottom: 8px; }
   
     .dj-lineup-section { margin: 12px 0 16px; padding-bottom: 12px; }
     .dj-profile { width: 80px; }
     .dj-profile img { width: 80px; height: 80px; }
     .dj-name { font-size: 14px; }
     .dj-profiles-container { margin-left: 20px; gap: 15px; }
   
     .EntryOptionContainer { width: 85%; margin-left: 40px; }
     .EntryOption { width: 100%; padding: 14px 16px; margin-left: 0; margin-right: 0; font-size: 14px; border-radius: 6px; }
     .EntryOptionTicketType { font-size: 16px; }
     .EntryOptionDescription { font-size: 12px; }
     .EntryOptionPrice { font-size: 18px; }
     .entryoption-onsale-container,
     .entryoption-fewtickets-container,
     .entryoption-ticket-countdown-container {
       padding: 4px 12px; font-size: 8px; border-radius: 4px;
       background: var(--glass-08); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
       border: 1px solid var(--glass-15);
       box-shadow: 0 2px 8px rgba(0,0,0,0.3), inset 0 1px 0 rgba(255,255,255,0.1);
     }
   
     .table-title { font-size: 26px; margin-left: 40px; margin-top: 8px; margin-bottom: 12px; }
     #TablesOption { width: 85%; padding: 14px 16px; margin-left: 40px; margin-right: 0; height: auto; border-radius: 6px; }
     #TablesOptionTicketType text { font-size: 16px; }
     #TablesOptionDescription { font-size: 12px; }
     .TablesOption-Onsale-container { padding: 3px 12px 4px 12px; font-size: 8px; }
   
     .media-title { font-size: 26px; margin-left: 40px; margin-top: 0; margin-bottom: 10px; }
     .media-iframe-container { width: calc(100% - 40px); max-width: 480px; height: 270px; margin: 0 20px 0 40px; }
   
    #guestForm, #paymentForm { margin: 0 auto; max-width: 88%; }
    #guestForm input, #guestForm select, #paymentForm input, #paymentForm select { width: 100% !important; max-width: 100%; }
    #paymentForm #payment-element-container { width: 100%; max-width: 100%; }
    #guestForm input, #guestForm select, #paymentForm input, #paymentForm select { font-size: 12px; padding: 12px; }
    #paymentForm .submit-btn, #guestForm .submit-btn { font-size: 15px; padding: 12px; }
    .name-container { gap: 8px; }
    #paymentForm h3, #guestForm h3, #pattUserForm h3 { font-size: 18px; }
   
     .event-age, .event-dresscode-container, .event-overlay button { padding: 6px 16px; font-size: 11px; }
    .event-dresscode-container .dresscode-icon { width: 14px; height: 14px; min-width: 14px; min-height: 14px; }
   
     .footer { padding: 18px; }
     .footer-top p { font-size: 11px; }
     .footer-logo { max-width: 70px; }
     .text-under-footer-logo { font-size: 13px; }
     .footer-buttons a { width: 75px; padding: 4px; font-size: 9px; }
     .footer-bottom { font-size: 9px; }
     .footer-links { margin-left: 20px; }
     .footer-links a { font-size: 9px; }
   }
   
   /* --------------------------------------------------------------------------
      Phone input (intl-tel-input)
      -------------------------------------------------------------------------- */
   #moroccanCardButton,
   #internationalCardButton,
   #submitPayment { margin-bottom: 10px; }
   
   #payment-phone-container,
   #guest-phone-container {
     display: flex; width: 100%; margin-left: 1.40%; margin-top: 10px; justify-content: center;
   }
   #payment-phone-container .iti,
   #guest-phone-container .iti { display: flex; width: 100%; }
   
  #payment-phone-container .iti__input,
  #guest-phone-container .iti__input {
    font-size: 12px !important; border-radius: var(--radius-3) !important;
    background-color: rgba(240,240,240,0.10) !important; border-width: 0 !important; color: #fff !important;
    display: flex; width: 100%; margin-left: 0;
  }
   #payment-phoneNumber { display: flex; width: 100%; }
   
   #payment-phone-container .iti__input:focus,
   #guest-phone-container .iti__input:focus {
     outline: 2px solid #71f3 !important; border-color: #71f3 !important;
   }
   
   .iti--separate-dial-code .iti__input { padding-left: 80px !important; }
   
   .iti__country-list {
     background-color: #1f1f21 !important; border: 1px solid #71f3 !important; border-radius: var(--radius-3) !important;
     max-height: 200px !important; overflow-y: auto !important;
   }
   .iti__search-input {
     width: calc(100% - 20px) !important; padding: 15px 5px 15px 10px !important; font-size: 12px !important;
     border-radius: var(--radius-3) !important; background-color: #1f1f21 !important; border-width: 0 !important; color: #fff !important; margin: 10px !important; box-sizing: border-box !important;
   }
   .iti__search-input:focus { outline: 2px solid #71f3 !important; border-color: #71f3 !important; }
   .iti__search-input::placeholder { color: rgba(255,255,255,0.6) !important; }
   
   .iti__country { color: #fff !important; padding: 10px 15px !important; font-size: 12px !important; border-bottom: 1px solid rgba(255,255,255,0.1) !important; }
   .iti__country:hover, .iti__country.iti__highlight { background-color: rgba(240,240,240,0.10) !important; }
   .iti__selected-country { background-color: rgba(240,240,240,0.10) !important; border-right: 1px solid rgba(255,255,255,0.2) !important; padding: 0 8px !important; }
   .iti__selected-country:hover { background-color: rgba(255,255,255,0.1) !important; }
   .iti__arrow { border-top-color: #fff !important; }
   .iti__arrow--up { border-bottom-color: #fff !important; }
   
   .iti__input.iti__input--error { outline: 2px solid #ff4444 !important; border-color: #ff4444 !important; }
   .iti__input.iti__input--valid { outline: 2px solid #44ff44 !important; border-color: #44ff44 !important; }
   
   .iti, .intl-tel-input { width: 100% !important; display: flex; }
   
   /* --------------------------------------------------------------------------
      Media Section Width Tweaks
      -------------------------------------------------------------------------- */
   @media only screen and (min-width: 950px) and (max-width: 1200px) {
     body {
       font-size: 15px;
       background: var(--bg-indigo);
       background-attachment: fixed;
       height: 100vh;
       margin: 0;
       padding: 0;
     }

     body::before {
       content: '';
       position: fixed;
       top: 0;
       left: 0;
       width: 100%;
       height: 100vh;
       background: linear-gradient(180deg, var(--bg-indigo) 0%, var(--bg-charcoal) 100%);
       background-size: 100% 100vh;
       z-index: -1;
       pointer-events: none;
     }

     /* Promoter theming override for 950-1200px */
     body.promoter-header-active::before {
       background: linear-gradient(180deg, var(--promoter-primary) 0%, var(--promoter-secondary) 100%) !important;
       background-size: 100% 100vh !important;
     }

     .media-iframe-container { width: 500px; height: 281px; }
   }
  @media only screen and (min-width: 768px) and (max-width: 950px) {
    body {
      font-size: 15px;
      background: var(--bg-indigo);
      background-attachment: fixed;
      height: 100vh;
      margin: 0;
      padding: 0;
    }

    body::before {
      content: '';
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100vh;
      background: linear-gradient(180deg, var(--bg-indigo) 0%, var(--bg-charcoal) 100%);
      background-size: 100% 100vh;
      z-index: -1;
      pointer-events: none;
    }

    /* Promoter theming override for 768-950px */
    body.promoter-header-active::before {
      background: linear-gradient(180deg, var(--promoter-primary) 0%, var(--promoter-secondary) 100%) !important;
      background-size: 100% 100vh !important;
    }

    /* Event image sizing for tablet landscape */
    .event-image-container { height: 500px; }
    .event-image-main { max-height: 500px; padding-top: 90px; }

    .media-iframe-container { width: 450px; height: 253px; margin: 0 50px; }
    .media-title { margin-left: 50px; }
  }
  @media only screen and (min-width: 550px) and (max-width: 768px) {
    body {
      font-size: 14px;
      background: var(--bg-indigo);
      background-attachment: fixed;
      height: 100vh;
      margin: 0;
      padding: 0;
    }

    body::before {
      content: '';
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100vh;
      background: linear-gradient(180deg, var(--bg-indigo) 0%, var(--bg-charcoal) 100%);
      background-size: 100% 100vh;
      z-index: -1;
      pointer-events: none;
    }

    /* Promoter theming override for 550-768px */
    body.promoter-header-active::before {
      background: linear-gradient(180deg, var(--promoter-primary) 0%, var(--promoter-secondary) 100%) !important;
      background-size: 100% 100vh !important;
    }

    /* Event image sizing for tablet portrait */
    .event-image-container { height: 500px; }
    .event-image-main { max-height: 500px; padding-top: 20px; }

    .media-iframe-container { width: calc(100% - 40px); max-width: 420px; height: 236px; margin: 0 20px; }
  }

   /* --------------------------------------------------------------------------
      Desktop and Large Screens (1200px and up)
      -------------------------------------------------------------------------- */
   @media only screen and (min-width: 1200px) {
     body {
       font-size: 16px;
       background: var(--bg-indigo);
       background-attachment: fixed;
       height: 100vh;
       margin: 0;
       padding: 0;
     }

     body::before {
       content: '';
       position: fixed;
       top: 0;
       left: 0;
       width: 100%;
       height: 100vh;
       background: linear-gradient(180deg, var(--bg-indigo) 0%, var(--bg-charcoal) 100%);
       background-size: 100% 100vh;
       z-index: -1;
       pointer-events: none;
     }

     /* Promoter theming override for desktop */
     body.promoter-header-active::before {
       background: linear-gradient(180deg, var(--promoter-primary) 0%, var(--promoter-secondary) 100%) !important;
       background-size: 100% 100vh !important;
     }
   }
   