/* ═════════════════════════════════════════════════════════════════
   mgm VIETNAM OKTOBERFEST 2026 — STYLESHEET
   Design Aesthetic: Bavarian Festive Tech Fusion (Midnight & Amber Gold)
   ═════════════════════════════════════════════════════════════════ */

/* ─── LOCAL CUSTOM FONT FACES ─── */
@font-face {
  font-family: 'Rengkoxpersonal';
  src: url('../assets/Font/Rengkoxpersonal.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Boombie';
  src: url('../assets/Font/Boombie.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Roboto';
  src: url('../assets/Font/Roboto-Thin.ttf') format('truetype');
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Roboto';
  src: url('../assets/Font/Roboto-ThinItalic.ttf') format('truetype');
  font-weight: 100;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Roboto';
  src: url('../assets/Font/Roboto-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Roboto';
  src: url('../assets/Font/Roboto-LightItalic.ttf') format('truetype');
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Roboto';
  src: url('../assets/Font/Roboto-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Roboto';
  src: url('../assets/Font/Roboto-BoldItalic.ttf') format('truetype');
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}

/* ─── CSS CUSTOM PROPERTIES & TOKENS ─── */
:root {
  --bg-primary: #0b132b;
  --bg-secondary: #16203d;
  --bg-tertiary: #1c2951;
  --card-bg: rgba(22, 32, 61, 0.75);
  --card-border: rgba(245, 158, 11, 0.25);
  --glass-bg: rgba(11, 19, 43, 0.82);
  --glass-border: rgba(255, 255, 255, 0.12);

  --text-main: #f8fafc;
  --text-muted: #94a3b8;
  --text-gold: #fbbf24;

  --accent-amber: #f59e0b;
  --accent-amber-dark: #d97706;
  --accent-glow: rgba(245, 158, 11, 0.5);
  --mgm-red: #e11d48;
  --mgm-red-dark: #be123c;
  --bavarian-blue: #0284c7;

  --font-heading: 'Roboto', sans-serif;
  --font-body: 'Roboto', sans-serif;
  --font-hero: 'Rengkoxpersonal', cursive, sans-serif;
  --font-accent: 'Roboto', sans-serif;

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;

  --shadow-glow: 0 0 25px rgba(245, 158, 11, 0.35);
  --shadow-lg: 0 10px 30px -5px rgba(0, 0, 0, 0.5);

  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ─── RESET & BASE ─── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body.dark-theme {
  background-color: var(--bg-primary);
  color: var(--text-main);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ─── GLOBAL DARK CUSTOM SCROLLBAR ─── */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: #080e20;
}

::-webkit-scrollbar-thumb {
  background: rgba(245, 158, 11, 0.35);
  border-radius: 4px;
  border: 1px solid rgba(245, 158, 11, 0.15);
}

::-webkit-scrollbar-thumb:hover {
  background: #f59e0b;
  box-shadow: 0 0 10px rgba(245, 158, 11, 0.5);
}

* {
  scrollbar-width: thin;
  scrollbar-color: rgba(245, 158, 11, 0.35) #080e20;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* ─── LOWERCASE BRAND ENFORCEMENT ─── */
.lowercase-brand {
  text-transform: none !important;
}

/* ─── SCROLL REVEAL ANIMATIONS ─── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
  will-change: opacity, transform;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* ─── TYPOGRAPHY UTILITIES ─── */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  line-height: 1.2;
}

.gold-gradient-text {
  background: linear-gradient(135deg, #fff59d 0%, #fbbf24 45%, #f59e0b 80%, #d97706 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: none !important;
  filter: drop-shadow(0 4px 15px rgba(0, 0, 0, 0.75));
  display: inline-block;
}

.bavarian-callout {
  font-family: var(--font-body);
  font-weight: 700;
  color: var(--text-gold);
  text-transform: uppercase;
  letter-spacing: 2px;
  display: block;
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  text-shadow: 0 0 15px rgba(245, 158, 11, 0.6);
}

/* ─── BADGES & BUTTONS ─── */
.mgm-badge {
  background: linear-gradient(135deg, var(--mgm-red), var(--mgm-red-dark));
  color: #fff;
  font-weight: 800;
  padding: 0.25rem 0.6rem;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  letter-spacing: 1px;
}
.mgm-badge.large {
  font-size: 1.1rem;
  padding: 0.35rem 0.8rem;
}

.pill-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(245, 158, 11, 0.15);
  border: 1px solid rgba(245, 158, 11, 0.4);
  color: var(--text-gold);
  padding: 0.4rem 1.2rem;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.pill-badge.gold {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.25), rgba(217, 119, 6, 0.25));
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.95rem;
  transition: all var(--transition-normal);
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-amber), var(--accent-amber-dark));
  color: #000;
  box-shadow: 0 4px 15px rgba(245, 158, 11, 0.4);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(245, 158, 11, 0.6);
  filter: brightness(1.1);
}

.btn-hero-primary,
.btn-hero-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 56px;
  width: 270px;
  max-width: 100%;
  padding: 0 1.5rem;
  font-size: 1.05rem;
  font-weight: 700;
  border-radius: var(--radius-full);
  text-align: center;
  box-sizing: border-box;
}

.btn-hero-primary {
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 50%, #d97706 100%);
  color: #0b132b;
  border: 1px solid transparent;
  box-shadow: 0 0 30px rgba(245, 158, 11, 0.6);
}
.btn-hero-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 0 40px rgba(245, 158, 11, 0.8);
}

.btn-hero-secondary {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.btn-hero-secondary:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-2px);
}

/* ─── CALENDAR DROPDOWN PICKER ─── */
.calendar-dropdown-wrapper {
  position: relative;
  display: inline-flex;
  width: 270px;
  max-width: 100%;
}

.calendar-dropdown-wrapper .btn-hero-secondary {
  width: 100%;
}

.calendar-dropdown {
  position: absolute;
  bottom: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) scale(0.92);
  min-width: 270px;
  background: rgba(11, 19, 43, 0.94);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.6), 0 0 1px rgba(255, 255, 255, 0.15) inset;
  z-index: 50;
}

.calendar-dropdown::after {
  content: '';
  position: absolute;
  bottom: -7px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 12px;
  height: 12px;
  background: rgba(11, 19, 43, 0.94);
  border-right: 1px solid rgba(255, 255, 255, 0.14);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.calendar-dropdown.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) scale(1);
}

/* ─── CALENDAR VENUE SELECTOR ─── */
.cal-venue-selector {
  padding: 4px 4px 6px;
}

.cal-venue-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 6px;
  padding: 0 4px;
}

.cal-venue-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: var(--text-gold, #f59e0b);
}

.cal-venue-detected {
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.45);
  font-weight: 500;
}

.cal-venue-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  background: rgba(0, 0, 0, 0.3);
  padding: 3px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.cal-venue-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 6px 8px;
  background: transparent;
  border: 1px solid transparent;
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.78rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: inherit;
}

.cal-venue-btn i,
.cal-venue-btn svg {
  width: 13px;
  height: 13px;
  flex-shrink: 0;
}

.cal-venue-btn:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.cal-venue-btn.active {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.3) 0%, rgba(217, 119, 6, 0.2) 100%);
  border-color: rgba(245, 158, 11, 0.5);
  color: #fef08a;
  box-shadow: 0 2px 8px rgba(245, 158, 11, 0.2);
}

.cal-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
  margin: 4px 4px 6px;
}

.cal-option {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 9px 12px;
  background: transparent;
  border: none;
  border-radius: 10px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.85rem;
  font-weight: 500;
  font-family: inherit;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
  text-align: left;
  white-space: nowrap;
}

.cal-option:hover {
  background: rgba(245, 158, 11, 0.15);
  color: #fbbf24;
}

.cal-option svg,
.cal-option i {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  display: block;
}

/* ─── NAVIGATION BAR ─── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: all var(--transition-normal);
  padding: 1rem 0;
}
.navbar.scrolled {
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--glass-border);
  padding: 0.6rem 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.navbar-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.2rem;
}
.nav-logo-img {
  height: 32px;
  width: auto;
  object-fit: contain;
  display: block;
}
.brand-divider {
  color: rgba(255, 255, 255, 0.3);
  font-weight: 300;
  font-size: 1.2rem;
}
.brand-text {
  color: #fff;
  letter-spacing: 0.5px;
}
.year-highlight {
  color: var(--text-gold);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: color var(--transition-fast);
}
.nav-link i {
  width: 18px;
  height: 18px;
}
.nav-link:hover {
  color: var(--text-gold);
}

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

.nav-badge-soon {
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  background: linear-gradient(135deg, var(--accent-amber), var(--accent-amber-dark));
  color: #0b132b;
  padding: 0.12rem 0.48rem;
  border-radius: var(--radius-full);
  box-shadow: 0 0 10px rgba(245, 158, 11, 0.4);
  line-height: 1.2;
}

.mobile-toggle {
  display: none;
  color: #fff;
}
.mobile-toggle i {
  width: 28px;
  height: 28px;
}

/* ─── TOAST NOTIFICATIONS (COMING SOON & ALERTS) ─── */
.toast-container {
  position: fixed;
  top: 5.2rem;
  right: 1.5rem;
  z-index: 3000;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  pointer-events: none;
  max-width: 400px;
  width: calc(100vw - 2.5rem);
}

@media (max-width: 600px) {
  .toast-container {
    top: 4.8rem;
    right: 1rem;
    left: 1rem;
    width: auto;
  }
}

.toast-item {
  pointer-events: auto;
  background: linear-gradient(145deg, rgba(16, 26, 56, 0.95), rgba(11, 19, 43, 0.98));
  border: 1px solid rgba(245, 158, 11, 0.4);
  border-radius: var(--radius-md);
  padding: 1rem 1.2rem;
  box-shadow: 0 16px 35px rgba(0, 0, 0, 0.8), 0 0 20px rgba(245, 158, 11, 0.2);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  color: #fff;
  opacity: 0;
  transform: translateY(-15px) scale(0.96);
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.toast-item.show {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.toast-icon-circle {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(245, 158, 11, 0.15);
  border: 1px solid rgba(245, 158, 11, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-amber);
  flex-shrink: 0;
}

.toast-icon-circle i {
  width: 20px;
  height: 20px;
}

.toast-body {
  flex: 1;
}

.toast-title {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.2rem;
}

.toast-msg {
  font-size: 0.83rem;
  color: var(--text-muted);
  line-height: 1.45;
  margin: 0;
}

.toast-close-btn {
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-size: 1.3rem;
  line-height: 1;
  cursor: pointer;
  padding: 0;
  transition: color var(--transition-fast);
}

.toast-close-btn:hover {
  color: #fff;
}

/* ─── HERO SECTION ─── */
.hero-section {
  position: relative;
  min-height: 100vh;
  padding: 8rem 1.5rem 5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

/* ─── HERO BACKGROUND SLIDER (CROSS-FADE + KEN BURNS ZOOM OUT) ─── */
.hero-bg-slider {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  isolation: isolate;
  -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 1) 75%, rgba(0, 0, 0, 0) 100%);
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 1) 75%, rgba(0, 0, 0, 0) 100%);
  pointer-events: none;
}

@keyframes kenBurnsZoomOut {
  0% {
    transform: scale(1.15);
  }
  100% {
    transform: scale(1.0);
  }
}

.hero-bg-slide {
  position: absolute;
  top: -30px;
  left: -30px;
  right: -30px;
  bottom: -30px;
  background-size: cover;
  background-position: center;
  filter: brightness(0.88) contrast(1.06);
  opacity: 0;
  transform: scale(1.15);
  transition: opacity 1.8s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform, opacity;
  pointer-events: none;
}

.hero-bg-slide.active {
  opacity: 1;
  z-index: 2;
  animation: kenBurnsZoomOut 7.5s cubic-bezier(0.1, 0, 0.2, 1) forwards;
}

.hero-bg-slide.leaving {
  opacity: 0;
  z-index: 1;
  transform: scale(1.0);
  transition: opacity 1.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 38%, rgba(11, 19, 43, 0.55) 0%, rgba(11, 19, 43, 0.75) 65%),
              linear-gradient(to bottom, rgba(11, 19, 43, 0.65) 0%, rgba(11, 19, 43, 0.45) 30%, rgba(11, 19, 43, 0.85) 70%, var(--bg-primary) 100%);
  z-index: 2;
  pointer-events: none;
}

.bubbles-canvas {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
}

.hero-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 150px;
  background: linear-gradient(to bottom, transparent 0%, var(--bg-primary) 100%);
  z-index: 4;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 900px;
  margin: 0 auto;
}

/* ─── OKTOBERFEST BRANDING FONT CLASS ─── */
.font-oktoberfest {
  font-family: 'Rengkoxpersonal', cursive, sans-serif;
  font-weight: normal;
  display: inline-block;
  letter-spacing: 1px;
  font-size: 1.18em;
  line-height: 1;
}

.hero-title {
  font-family: var(--font-body);
  font-size: clamp(1.85rem, 5.5vw, 4.5rem);
  font-weight: 800;
  margin: 1.2rem 0 0.8rem;
  letter-spacing: -0.5px;
  line-height: 1.18;
  word-break: break-word;
}
.hero-subheading {
  display: block;
  font-size: clamp(0.95rem, 2.5vw, 1.8rem);
  color: #fff;
  font-weight: 700;
  margin-top: 0.5rem;
  letter-spacing: 0.5px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.75);
}

.hero-description {
  font-size: clamp(0.95rem, 2vw, 1.25rem);
  color: #e2e8f0;
  max-width: 720px;
  margin: 0 auto 2.5rem;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
}

/* COUNTDOWN TIMER & EVENT DETAILS WRAPPER */
.countdown-wrapper {
  position: relative;
  max-width: 680px;
  margin: 0 auto 2.2rem;
}

.countdown-container {
  position: relative;
  background: linear-gradient(145deg, rgba(16, 26, 56, 0.92), rgba(11, 19, 43, 0.95));
  border: 1px solid rgba(245, 158, 11, 0.35);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: var(--radius-lg);
  padding: 1.8rem 2.2rem;
  box-shadow: var(--shadow-glow), var(--shadow-lg), 0 12px 36px rgba(0, 0, 0, 0.5);
  z-index: 5;
  overflow: hidden;
}

.countdown-container::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('../assets/images/oktoberfest_pattern.png');
  background-repeat: repeat;
  background-size: 340px 340px;
  background-position: center center;
  opacity: 0.055;
  pointer-events: none;
  z-index: 0;
  -webkit-mask-image: radial-gradient(ellipse at center, rgba(0,0,0,1) 40%, rgba(0,0,0,0.3) 80%, rgba(0,0,0,0) 100%);
  mask-image: radial-gradient(ellipse at center, rgba(0,0,0,1) 40%, rgba(0,0,0,0.3) 80%, rgba(0,0,0,0) 100%);
}

.countdown-container > * {
  position: relative;
  z-index: 1;
}

.hero-event-info {
  margin-top: 1.35rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  align-items: center;
  width: 100%;
}

.event-info-pill-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.65rem;
  background: rgba(245, 158, 11, 0.12);
  border: 1px solid rgba(245, 158, 11, 0.3);
  padding: 0.45rem 1.4rem;
  border-radius: var(--radius-full);
  color: var(--text-gold);
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.3px;
}

.event-info-pill-item .info-item-segment {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.event-info-pill-item i {
  color: var(--accent-amber);
  width: 15px;
  height: 15px;
  flex-shrink: 0;
}

.event-info-pill-item .info-divider {
  opacity: 0.35;
  font-weight: 400;
}

.hero-venues-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.45rem;
  width: 100%;
}

.hero-venues-label {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-gold);
  text-transform: none;
  letter-spacing: 0.4px;
}

.hero-venues-label i {
  width: 14px;
  height: 14px;
  color: var(--accent-amber);
}

.hero-venues-grid {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 0.75rem;
  width: 100%;
}

.venue-pill-item {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  padding: 0.42rem 0.95rem;
  border-radius: var(--radius-md);
  color: #f1f5f9;
  font-size: 0.84rem;
  line-height: 1.35;
  white-space: nowrap;
  cursor: pointer;
  font-family: inherit;
  transition: all var(--transition-fast);
  text-decoration: none;
}

.venue-pill-item:hover {
  background: rgba(245, 158, 11, 0.16);
  border-color: rgba(245, 158, 11, 0.45);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(245, 158, 11, 0.25);
  color: #ffffff;
}

.venue-pill-item i {
  color: var(--accent-amber);
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.venue-pill-item:hover i {
  transform: scale(1.2);
}

.venue-pill-item strong {
  color: var(--text-gold);
}

.clickable-address {
  cursor: pointer;
  transition: all var(--transition-fast);
}

.clickable-address:hover {
  color: var(--accent-amber) !important;
  transform: translateX(3px);
}

.clickable-address:hover i {
  transform: scale(1.15);
}

@media (max-width: 768px) {
  .hero-venues-grid {
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .venue-pill-item {
    white-space: normal;
    text-align: center;
    justify-content: center;
    width: 100%;
    max-width: 360px;
  }
}

@media (max-width: 900px) {
  .hero-section {
    padding: 7rem 1.2rem 4rem;
  }
  .countdown-flank-wrapper {
    max-width: 580px;
  }
  .countdown-container {
    padding: 1.6rem 3.8rem 1.4rem;
  }
  .countdown-flank.flank-left {
    left: -12px;
  }
  .countdown-flank.flank-right {
    right: -12px;
  }
  .flank-img {
    height: 230px;
  }
}

@media (max-width: 768px) {
  .hero-section {
    padding: 5.8rem 1rem 3.5rem;
  }
  .countdown-flank-wrapper {
    margin: 1rem auto 2rem;
    padding: 0;
    max-width: 440px;
  }
  .countdown-container {
    padding: 1.3rem 2.6rem 1.1rem;
  }
  .countdown-flank {
    display: block;
    bottom: -10px;
    z-index: 10;
  }
  .countdown-flank.flank-left {
    left: -8px;
  }
  .countdown-flank.flank-right {
    right: -8px;
  }
  .flank-left .flank-img {
    height: 160px;
  }
  .flank-right .flank-img {
    height: 145px;
  }
  .character-speech-bubble {
    top: -36px;
    font-size: 0.75rem;
    padding: 0.3rem 0.65rem;
  }
}

@media (max-width: 480px) {
  .hero-section {
    padding: 5rem 0.75rem 2.8rem;
  }
  .hero-title {
    font-size: 1.6rem;
    line-height: 1.2;
    margin: 0.75rem 0 0.35rem;
  }
  .hero-subheading {
    font-size: 0.82rem;
    letter-spacing: 0.3px;
  }
  .hero-description {
    font-size: 0.82rem;
    line-height: 1.42;
    margin-bottom: 1.25rem;
  }
  .countdown-flank-wrapper {
    width: calc(100% - 20px);
    max-width: 310px;
    margin: 0.4rem auto 1.6rem;
    padding: 0;
  }
  .countdown-container {
    padding: 0.85rem 1.4rem 0.75rem;
    border-radius: 14px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.6);
  }
  .countdown-header {
    font-size: 0.72rem;
    margin-bottom: 0.45rem;
    gap: 0.25rem;
  }
  .countdown-header i {
    width: 13px;
    height: 13px;
  }
  .countdown-flank.flank-left {
    left: -12px;
    bottom: -5px;
  }
  .countdown-flank.flank-right {
    right: -8px;
    bottom: -5px;
  }
  .flank-left .flank-img {
    height: 115px;
  }
  .flank-right .flank-img {
    height: 104px;
  }
  .character-speech-bubble {
    top: -28px;
    font-size: 0.64rem;
    padding: 0.18rem 0.42rem;
  }
  .countdown-grid {
    gap: 0.12rem;
    width: 100%;
    max-width: 205px;
    margin: 0 auto;
    justify-content: center;
  }
  .countdown-card {
    min-width: 30px;
    flex: 1 1 0;
    max-width: 38px;
    padding: 0.22rem 0.1rem;
    border-radius: 6px;
  }
  .count-num {
    font-size: 1.02rem;
    line-height: 1.05;
  }
  .count-label {
    font-size: 0.5rem;
    margin-top: 0.08rem;
    letter-spacing: 0;
  }
  .count-colon {
    font-size: 0.82rem;
    margin: 0 -1px;
    padding: 0;
    opacity: 0.75;
  }
  .event-date-pill {
    font-size: 0.66rem;
    padding: 0.25rem 0.55rem;
    margin-top: 0.55rem;
    gap: 0.25rem;
    white-space: nowrap;
    letter-spacing: 0;
  }
  .event-date-pill i {
    width: 12px;
    height: 12px;
  }
  .hero-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.55rem;
    max-width: 280px;
    margin: 0 auto;
    width: 100%;
  }
  .btn-hero-primary {
    padding: 0.58rem 1.3rem;
    font-size: 0.85rem;
    width: 100%;
    justify-content: center;
    border-radius: 9999px;
  }
  .calendar-dropdown-wrapper {
    width: 100%;
  }
  .btn-hero-secondary {
    padding: 0.52rem 1.2rem;
    font-size: 0.85rem;
    width: 100%;
    justify-content: center;
    border-radius: 9999px;
    border: 1px solid rgba(255, 255, 255, 0.16);
  }
  .reg-cta-card {
    padding: 2.8rem 1.25rem;
  }
}

.countdown-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: var(--text-gold);
  font-weight: 700;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}

.countdown-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
}

.countdown-card {
  background: rgba(11, 19, 43, 0.8);
  border: 1px solid rgba(245, 158, 11, 0.3);
  border-radius: var(--radius-md);
  padding: 0.75rem 1.2rem;
  min-width: 85px;
}
.count-num {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 900;
  color: #fff;
  display: block;
  line-height: 1;
}
.count-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 0.3rem;
  display: block;
}

.count-colon {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--accent-amber);
  animation: blink 1.5s infinite;
}

.event-date-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1.2rem;
  font-size: 0.95rem;
  color: #fff;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.08);
  padding: 0.5rem 1.2rem;
  border-radius: var(--radius-full);
  border: 1px solid var(--glass-border);
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  flex-wrap: wrap;
}

.scroll-down-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ─── DECORATIVE HERO PATTERN DIVIDER (item-parterm.png) ─── */
.hero-pattern-divider {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: -60px;
  margin-bottom: -35px;
  z-index: 12;
  pointer-events: none;
  overflow: hidden;
}

.pattern-divider-img {
  width: 100%;
  max-width: 1440px;
  height: auto;
  display: block;
  object-fit: cover;
  filter: drop-shadow(0 10px 25px rgba(0, 0, 0, 0.65));
}

@media (max-width: 900px) {
  .hero-pattern-divider {
    margin-top: -35px;
    margin-bottom: -20px;
  }
}

/* ─── SECTION COMMON ─── */
.section {
  padding: 6rem 1.5rem;
  position: relative;
}

/* ─── CONTINUOUS WATERMARK PATTERN FLOW (FROM WHAT'S NEW DOWN TO FOOTER) ─── */
.sections-pattern-flow {
  position: relative;
}

.sections-pattern-flow::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('../assets/images/oktoberfest_pattern.png');
  background-repeat: repeat;
  background-size: 520px 520px;
  background-position: center top;
  background-attachment: fixed;
  opacity: 0.052;
  pointer-events: none;
  z-index: 0;
  -webkit-mask-image: linear-gradient(to bottom, 
    rgba(0,0,0,0) 0%, 
    rgba(0,0,0,0.85) 4%, 
    rgba(0,0,0,1) 12%, 
    rgba(0,0,0,1) 75%, 
    rgba(0,0,0,0.5) 90%, 
    rgba(0,0,0,0) 100%
  ),
  linear-gradient(to right, 
    rgba(0,0,0,0) 0%, 
    rgba(0,0,0,0.9) 6%, 
    rgba(0,0,0,1) 15%, 
    rgba(0,0,0,1) 85%, 
    rgba(0,0,0,0.9) 94%, 
    rgba(0,0,0,0) 100%
  );
  -webkit-mask-composite: destination-in;
  mask-image: linear-gradient(to bottom, 
    rgba(0,0,0,0) 0%, 
    rgba(0,0,0,0.85) 4%, 
    rgba(0,0,0,1) 12%, 
    rgba(0,0,0,1) 75%, 
    rgba(0,0,0,0.5) 90%, 
    rgba(0,0,0,0) 100%
  ),
  linear-gradient(to right, 
    rgba(0,0,0,0) 0%, 
    rgba(0,0,0,0.9) 6%, 
    rgba(0,0,0,1) 15%, 
    rgba(0,0,0,1) 85%, 
    rgba(0,0,0,0.9) 94%, 
    rgba(0,0,0,0) 100%
  );
  mask-composite: intersect;
}

.sections-pattern-flow > * {
  position: relative;
  z-index: 1;
}

.section-pattern-bg {
  position: relative;
}

.section-pattern-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('../assets/images/oktoberfest_pattern.png');
  background-repeat: repeat;
  background-size: 520px 520px;
  background-position: center top;
  background-attachment: fixed;
  opacity: 0.045;
  pointer-events: none;
  z-index: 0;
  -webkit-mask-image: linear-gradient(to right, rgba(0,0,0,0) 0%, rgba(0,0,0,0.6) 8%, rgba(0,0,0,1) 20%, rgba(0,0,0,1) 80%, rgba(0,0,0,0.6) 92%, rgba(0,0,0,0) 100%);
  mask-image: linear-gradient(to right, rgba(0,0,0,0) 0%, rgba(0,0,0,0.6) 8%, rgba(0,0,0,1) 20%, rgba(0,0,0,1) 80%, rgba(0,0,0,0.6) 92%, rgba(0,0,0,0) 100%);
}

.section-pattern-bg > * {
  position: relative;
  z-index: 1;
}

/* First pattern section: fade in from top */
.section-pattern-bg.section-pattern-first::before {
  -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 15%, rgba(0,0,0,1) 100%),
                      linear-gradient(to right, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 8%, rgba(0,0,0,1) 92%, rgba(0,0,0,0) 100%);
  -webkit-mask-composite: destination-in;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 15%, rgba(0,0,0,1) 100%),
              linear-gradient(to right, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 8%, rgba(0,0,0,1) 92%, rgba(0,0,0,0) 100%);
  mask-composite: intersect;
}

/* Last pattern section: fade out at bottom */
.section-pattern-bg.section-pattern-last::before {
  -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 0%, rgba(0,0,0,1) 85%, rgba(0,0,0,0) 100%),
                      linear-gradient(to right, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 8%, rgba(0,0,0,1) 92%, rgba(0,0,0,0) 100%);
  -webkit-mask-composite: destination-in;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 0%, rgba(0,0,0,1) 85%, rgba(0,0,0,0) 100%),
              linear-gradient(to right, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 8%, rgba(0,0,0,1) 92%, rgba(0,0,0,0) 100%);
  mask-composite: intersect;
}

.section-container {
  max-width: 1280px;
  margin: 0 auto;
}

.section-header {
  margin-bottom: 3.5rem;
}
.section-header.text-center {
  text-align: center;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--bavarian-blue);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.6rem;
}
.section-tag.gold {
  color: var(--text-gold);
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.8rem;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 860px;
  margin: 0 auto;
  text-wrap: balance;
}

/* ─── MEMORIES SLIDER (AUTO 4s) ─── */
.filter-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
  overflow-x: auto;
  padding: 0.4rem 0.2rem 0.6rem;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE / Edge */
  -webkit-overflow-scrolling: touch; /* Smooth iOS momentum scrolling */
}

.filter-bar::-webkit-scrollbar {
  display: none !important;
  width: 0 !important;
  height: 0 !important;
}

@media (max-width: 640px) {
  .filter-bar {
    justify-content: flex-start;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
}

.filter-tab {
  padding: 0.6rem 1.4rem;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-muted);
  font-weight: 600;
  font-size: 0.9rem;
  white-space: nowrap;
  transition: all var(--transition-fast);
}
.filter-tab:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}
.filter-tab.active {
  background: linear-gradient(135deg, var(--accent-amber), var(--accent-amber-dark));
  color: #0b132b;
  border-color: transparent;
  box-shadow: none;
}

.slider-wrapper {
  position: relative;
  padding: 0 1rem;
}

.slider-container {
  overflow: hidden;
  border-radius: var(--radius-lg);
  position: relative;
}

.slider-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
  will-change: transform;
}

.slider-item {
  flex: 0 0 33.333%;
  padding: 0 0.8rem;
  box-sizing: border-box;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--bg-secondary);
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-lg);
  cursor: pointer;
  user-select: none;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.2, 1, 0.2, 1);
}
.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11, 19, 43, 0.8) 0%, rgba(11, 19, 43, 0.15) 35%, transparent 70%);
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  opacity: 0;
  transition: opacity var(--transition-normal);
  pointer-events: none;
}
.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

/* ─── VIDEO HIGHLIGHT CARD IN MEMORIES SLIDER ─── */
.gallery-video-item {
  position: relative;
}

.video-play-badge {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.55rem;
  z-index: 5;
  pointer-events: none;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.play-icon-circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-amber), var(--accent-amber-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0b132b;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.65), 0 0 20px rgba(245, 158, 11, 0.6);
  transition: all var(--transition-fast);
}

.play-icon-circle i {
  width: 26px;
  height: 26px;
  margin-left: 3px;
  stroke: #0b132b;
  fill: #0b132b;
}

.video-badge-text {
  background: rgba(11, 19, 43, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #fff;
  font-size: 0.76rem;
  font-weight: 700;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  border: 1px solid rgba(245, 158, 11, 0.35);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.gallery-video-item:hover .video-play-badge {
  transform: translate(-50%, -50%) scale(1.1);
}

.gallery-video-item:hover .play-icon-circle {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8), 0 0 30px rgba(245, 158, 11, 0.9);
}

.gallery-tag {
  align-self: flex-start;
  background: var(--accent-amber);
  color: #0b132b;
  font-weight: 800;
  font-size: 0.85rem;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
  letter-spacing: 0.5px;
  display: inline-flex;
  align-items: center;
}

/* Ẩn các thông tin chữ thừa (tiêu đề, tên file, nút zoom chữ) */
.gallery-title,
.gallery-desc,
.gallery-zoom-btn {
  display: none !important;
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: var(--radius-full);
  background: rgba(11, 19, 43, 0.85);
  border: 1px solid var(--card-border);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
  transition: all var(--transition-fast);
}
.slider-btn:hover {
  background: var(--accent-amber);
  color: #0b132b;
  border-color: transparent;
  transform: translateY(-50%) scale(1.1);
}
.prev-btn { left: -15px; }
.next-btn { right: -15px; }

/* ─── MINIMALIST NUMERICAL PAGINATION & DOTS / SCRUBBER ─── */
.slider-pagination {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  margin-top: 2rem;
}

.slide-counter {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--text-muted);
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0 !important;
  user-select: none;
}

.counter-num-active {
  color: var(--text-gold);
  font-size: 1.4rem;
}

.counter-slash {
  color: rgba(255, 255, 255, 0.25);
  font-weight: 300;
}

.counter-num-total {
  color: var(--text-muted);
}

/* PROGRESS SCRUBBER TRACK (All Seasons) */
.slider-progress-track {
  width: 260px;
  max-width: 80%;
  height: 4px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-full);
  position: relative;
  cursor: pointer;
  transition: all var(--transition-fast);
}
.slider-progress-track:hover {
  height: 6px;
  background: rgba(255, 255, 255, 0.2);
}

.slider-progress-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--accent-amber), #fcd34d);
  border-radius: var(--radius-full);
  transition: width 0.25s cubic-bezier(0.2, 0.8, 0.2, 1);
  position: relative;
  box-shadow: 0 0 10px rgba(245, 158, 11, 0.6);
}

.slider-progress-fill::after {
  content: '';
  position: absolute;
  right: -4px;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  background: #ffffff;
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(245, 158, 11, 0.9), 0 0 2px rgba(0, 0, 0, 0.5);
  transition: transform var(--transition-fast);
}

/* INDICATOR DOTS (Individual Years) */
.slider-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  margin-top: 0.2rem;
}

.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.slider-dot.active {
  background: var(--accent-amber);
  width: 26px;
  border-radius: var(--radius-full);
  box-shadow: 0 0 10px rgba(245, 158, 11, 0.6);
}

/* ─── WHAT'S NEW ─── */

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

.feature-card {
  background: var(--card-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: var(--radius-lg);
  padding: 2.2rem 1.8rem;
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-amber), var(--bavarian-blue));
  opacity: 0;
  transition: opacity var(--transition-normal);
}
.feature-card:hover {
  transform: translateY(-8px);
  border-color: var(--card-border);
  box-shadow: var(--shadow-glow);
}
.feature-card:hover::before {
  opacity: 1;
}

.feature-icon-box {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.2), rgba(217, 119, 6, 0.1));
  border: 1px solid rgba(245, 158, 11, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-amber);
  margin-bottom: 1.5rem;
}
.feature-icon-box i {
  width: 30px;
  height: 30px;
}

.feature-title {
  font-size: 1.35rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.8rem;
}

.feature-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
}

/* ─── DRESS CODE SECTION ─── */
.dresscode-card-wrapper {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: var(--shadow-lg);
}

.dresscode-info {
  padding: 3.5rem 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.dresscode-title {
  font-size: 2.2rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 1.2rem;
}

.dresscode-quote {
  font-style: italic;
  font-size: 1.05rem;
  color: var(--text-gold);
  border-left: 3px solid var(--accent-amber);
  padding-left: 1.2rem;
  margin-bottom: 1.8rem;
  line-height: 1.6;
}

.dresscode-desc {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.memories-section .section-header {
  margin-bottom: 2.2rem;
}

/* ─── DRESS CODE ACCORDION ─── */
.attire-accordion {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-top: 0.5rem;
}

.attire-accordion-item {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.attire-accordion-item:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(245, 158, 11, 0.3);
}

.attire-accordion-item.active {
  background: rgba(245, 158, 11, 0.07);
  border-color: rgba(245, 158, 11, 0.35);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25), 0 0 15px rgba(245, 158, 11, 0.06);
}

.attire-accordion-header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 1.2rem;
  background: transparent;
  border: none;
  cursor: pointer;
  color: #fff;
  text-align: left;
  font-family: inherit;
  font-size: 0.92rem;
  outline: none;
  transition: color 0.2s ease;
}

.attire-header-title {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.attire-header-title i {
  color: var(--accent-amber);
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.attire-header-title strong {
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.2px;
}

.attire-subtitle {
  color: var(--text-muted);
  font-size: 0.82rem;
}

.attire-chevron {
  color: var(--text-muted);
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), color 0.2s ease;
}

.attire-accordion-item.active .attire-chevron {
  transform: rotate(180deg);
  color: var(--accent-amber);
}

.attire-accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
  opacity: 0;
}

.attire-accordion-item.active .attire-accordion-body {
  max-height: 300px;
  opacity: 1;
}

.attire-body-content {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding: 0.6rem 1.2rem 1.1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.attire-preview-box {
  width: 78px;
  height: 78px;
  border-radius: 12px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.15) 0%, rgba(255, 255, 255, 0.03) 70%);
  border: 1px solid rgba(245, 158, 11, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  padding: 6px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  position: relative;
}

.attire-preview-box.attire-zoomable {
  cursor: zoom-in;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.attire-preview-box.attire-zoomable:hover {
  transform: scale(1.06);
  border-color: rgba(245, 158, 11, 0.55);
  box-shadow: 0 6px 20px rgba(245, 158, 11, 0.22);
}

.attire-zoom-badge {
  position: absolute;
  bottom: -4px;
  right: -4px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-amber), var(--accent-amber-dark));
  color: #0b132b;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
  opacity: 0;
  transform: scale(0.6);
  transition: all 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.attire-zoom-badge i {
  width: 12px;
  height: 12px;
  stroke-width: 2.5;
  color: #0b132b;
}

.attire-preview-box.attire-zoomable:hover .attire-zoom-badge {
  opacity: 1;
  transform: scale(1);
}

.attire-png-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.4));
  transition: transform 0.3s ease;
}

.attire-preview-box.attire-zoomable:hover .attire-png-img {
  transform: scale(1.1);
}

.attire-details {
  flex: 1;
}

.attire-detail-heading {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-gold);
  margin-bottom: 0.25rem;
}

.attire-detail-text {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.45;
  margin: 0;
}

.dresscode-visual.dresscode-slider {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
}

.dresscode-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1), transform 1.2s cubic-bezier(0.4, 0, 0.2, 1);
  transform: scale(1.04);
}

.dresscode-slide.active {
  opacity: 1;
  transform: scale(1);
  z-index: 2;
}

@media (max-width: 900px) {
  .dresscode-visual.dresscode-slider {
    min-height: 320px;
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  }
}

/* ─── VENUES DUAL GRID ─── */
.venues-dual-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.venue-card {
  background: var(--card-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all var(--transition-normal);
}
.venue-card.highlight-blue {
  border-color: rgba(2, 132, 199, 0.4);
  box-shadow: 0 0 25px rgba(2, 132, 199, 0.25);
}
.venue-card.highlight-blue:hover {
  transform: translateY(-5px);
  border-color: var(--bavarian-blue);
  box-shadow: 0 0 35px rgba(2, 132, 199, 0.45);
}
.venue-card.highlight-blue .venue-item i {
  color: var(--bavarian-blue);
}

.venue-card.highlight {
  border-color: var(--card-border);
  box-shadow: var(--shadow-glow);
}
.venue-card.highlight:hover {
  transform: translateY(-5px);
  border-color: var(--accent-amber);
  box-shadow: 0 0 35px rgba(245, 158, 11, 0.5);
}

.office-tag {
  display: inline-block;
  background: rgba(2, 132, 199, 0.2);
  color: var(--bavarian-blue);
  font-size: 0.75rem;
  font-weight: 800;
  padding: 0.25rem 0.8rem;
  border-radius: var(--radius-full);
  letter-spacing: 1px;
  margin-bottom: 0.6rem;
}
.office-tag.gold {
  background: rgba(245, 158, 11, 0.2);
  color: var(--text-gold);
}

.office-title {
  font-size: 1.6rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 1.5rem;
}

.venue-card-body {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.venue-item {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}
.venue-item i {
  color: var(--accent-amber);
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  margin-top: 0.1rem;
}
.venue-item strong {
  color: #fff;
}

.margin-top-lg {
  margin-top: 2.5rem;
}

/* ─── REGISTRATION CTA CARD (WITH OKTOBERFEST WATERMARK PATTERN INSIDE) ─── */
.reg-cta-card {
  position: relative;
  padding: 4.5rem 2.5rem;
  border: 1px solid rgba(245, 158, 11, 0.28);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.75), 0 0 28px rgba(245, 158, 11, 0.14);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(145deg, rgba(12, 20, 44, 0.96), rgba(8, 14, 32, 0.98));
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.reg-cta-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('../assets/images/oktoberfest_pattern.png');
  background-repeat: repeat;
  background-size: 380px 380px;
  background-position: center center;
  opacity: 0.06;
  pointer-events: none;
  z-index: 0;
  -webkit-mask-image: radial-gradient(ellipse at center, rgba(0,0,0,1) 35%, rgba(0,0,0,0.35) 75%, rgba(0,0,0,0) 100%);
  mask-image: radial-gradient(ellipse at center, rgba(0,0,0,1) 35%, rgba(0,0,0,0.35) 75%, rgba(0,0,0,0) 100%);
}

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

.reg-cta-card .section-tag {
  margin-bottom: 0.8rem;
}

.reg-cta-card .section-title {
  margin-bottom: 0.8rem;
}

.reg-cta-card .section-subtitle {
  max-width: 780px;
  margin: 0 auto;
}

.reg-action-wrapper {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
  width: 100%;
}

/* ─── POP-UP REGISTRATION MODAL (SUPABASE INTEGRATED) ─── */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(6, 11, 25, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-normal);
}
.modal-backdrop.active {
  opacity: 1;
  visibility: visible;
}

.reg-modal-content {
  width: 100%;
  max-width: 680px;
  background: linear-gradient(145deg, rgba(12, 20, 44, 0.97), rgba(8, 14, 32, 0.98));
  border: 1px solid rgba(245, 158, 11, 0.28);
  border-radius: var(--radius-lg);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.9), 0 0 35px rgba(245, 158, 11, 0.15);
  position: relative;
  overflow-y: auto;
  overflow-x: hidden;
  max-height: 92vh;
  padding: 2.5rem 2.2rem;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  scrollbar-width: thin;
  scrollbar-color: rgba(245, 158, 11, 0.4) transparent;
}

/* ─── JOTFORM EMBED MODAL ─── */
.reg-modal-content.jotform-modal-content {
  max-width: 1020px;
  width: 95%;
  height: 92vh;
  max-height: 880px;
  padding: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: linear-gradient(145deg, rgba(12, 20, 44, 0.98), rgba(8, 14, 32, 0.99));
}

.jotform-modal-content .modal-close {
  top: 14px;
  right: 16px;
  z-index: 20;
  background: rgba(11, 19, 43, 0.85);
  border: 1px solid rgba(245, 158, 11, 0.35);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

.jotform-iframe-container {
  width: 100%;
  height: 100%;
  flex: 1;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.jotform-iframe {
  width: 100%;
  height: 100%;
  border: none;
  background: transparent;
  display: block;
}

@media (max-width: 768px) {
  .reg-modal-content.jotform-modal-content {
    width: 100%;
    height: 95vh;
    max-height: 95vh;
    border-radius: var(--radius-md);
  }
}

/* ─── VENUE MAP MODAL (GOOGLE MAPS) ─── */
.map-modal-content {
  max-width: 860px;
  width: 92%;
  padding: 2rem 2.2rem 2.2rem;
  background: rgba(11, 19, 43, 0.96);
  border: 1px solid rgba(245, 158, 11, 0.3);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.85), 0 0 35px rgba(245, 158, 11, 0.18);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.map-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 1rem;
  padding-right: 2.5rem;
}

.map-modal-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--accent-amber);
  background: rgba(245, 158, 11, 0.12);
  border: 1px solid rgba(245, 158, 11, 0.25);
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-full);
  margin-bottom: 0.45rem;
  transition: all 0.2s ease;
}

.map-modal-badge.badge-office {
  color: #38bdf8;
  background: rgba(56, 189, 248, 0.12);
  border-color: rgba(56, 189, 248, 0.28);
}

.map-modal-badge i {
  width: 12px;
  height: 12px;
}

.map-modal-title {
  font-size: 1.4rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 0.2rem;
  line-height: 1.25;
}

.map-modal-address {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.map-modal-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.map-venue-switcher {
  display: inline-flex;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-full);
  padding: 3px;
  gap: 4px;
}

.map-tab-btn {
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
  border: none;
  background: transparent;
  color: var(--text-muted);
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--transition-fast);
  font-family: inherit;
}

.map-tab-btn.active {
  background: linear-gradient(135deg, var(--accent-amber), var(--accent-amber-dark));
  color: #0b132b;
  box-shadow: 0 2px 8px rgba(245, 158, 11, 0.35);
}

.map-tab-btn:hover:not(.active) {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
}

.btn-open-gmaps {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 1rem;
  background: rgba(245, 158, 11, 0.12);
  border: 1px solid rgba(245, 158, 11, 0.3);
  color: var(--text-gold);
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
  transition: all var(--transition-fast);
}

.btn-open-gmaps:hover {
  background: rgba(245, 158, 11, 0.25);
  border-color: rgba(245, 158, 11, 0.5);
  color: #ffffff;
  transform: translateY(-1px);
}

.btn-open-gmaps i {
  width: 14px;
  height: 14px;
}

.map-iframe-container {
  width: 100%;
  height: 400px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: #060b19;
  position: relative;
}

.map-iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

@media (max-width: 768px) {
  .map-modal-content {
    padding: 1.5rem 1.2rem;
    width: 95%;
  }
  .map-modal-header {
    flex-direction: column;
    padding-right: 2rem;
    gap: 0.75rem;
  }
  .map-modal-actions {
    width: 100%;
    justify-content: space-between;
  }
  .map-iframe-container {
    height: 300px;
  }
}

.reg-modal-content::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('../assets/images/oktoberfest_pattern.png');
  background-repeat: repeat;
  background-size: 340px 340px;
  background-position: center center;
  opacity: 0.055;
  pointer-events: none;
  z-index: 0;
  -webkit-mask-image: radial-gradient(ellipse at center, rgba(0,0,0,1) 40%, rgba(0,0,0,0.35) 80%, rgba(0,0,0,0) 100%);
  mask-image: radial-gradient(ellipse at center, rgba(0,0,0,1) 40%, rgba(0,0,0,0.35) 80%, rgba(0,0,0,0) 100%);
}

.reg-modal-content > * {
  position: relative;
  z-index: 1;
}

.modal-close {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  color: var(--text-muted);
  width: 36px;
  height: 36px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: all var(--transition-fast);
  cursor: pointer;
}
.modal-close:hover {
  background: var(--mgm-red);
  color: #fff;
  border-color: transparent;
}

.reg-modal-header {
  margin-bottom: 1.5rem;
}
.reg-modal-header .modal-title {
  font-size: 1.85rem;
  font-weight: 800;
  color: #fff;
  margin: 0;
}

/* JOTFORM EVENT INFO BLOCK */
.jotform-event-info {
  background: rgba(11, 19, 43, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 1.3rem 1.5rem;
  margin-bottom: 1.8rem;
  font-size: 0.92rem;
  line-height: 1.6;
}

.event-info-headline {
  font-size: 1.05rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.4rem;
}

.event-info-text {
  color: #cbd5e1;
  margin-bottom: 0.8rem;
}

.event-info-details {
  color: #e2e8f0;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin-bottom: 0.8rem;
}
.event-info-details .info-row strong {
  color: #fff;
}

.info-venue-list {
  margin-left: 1.4rem;
  margin-top: 0.2rem;
  color: #cbd5e1;
}
.info-venue-list li {
  margin-bottom: 0.2rem;
}

.event-info-subtext {
  color: #cbd5e1;
  margin-bottom: 0.6rem;
}

.event-info-rsvp {
  font-weight: 800;
  color: var(--accent-amber);
  font-size: 0.95rem;
}

.reg-form {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.form-row-3 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0.8rem;
}
@media (max-width: 600px) {
  .form-row-3 {
    grid-template-columns: 1fr;
    gap: 0.6rem;
  }
  .reg-modal-content {
    padding: 1.8rem 1.2rem;
  }
}

.form-sub-field {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.sub-label {
  font-size: 0.76rem;
  color: var(--text-muted);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.form-label {
  font-size: 0.92rem;
  font-weight: 600;
  color: #fff;
}
.form-label .req {
  color: var(--mgm-red);
}

.form-input,
.form-textarea {
  width: 100%;
  background: rgba(11, 19, 43, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-sm);
  padding: 0.7rem 0.9rem;
  color: #fff;
  font-family: inherit;
  font-size: 0.95rem;
  transition: all var(--transition-fast);
  outline: none;
}

.form-input:focus,
.form-textarea:focus {
  border-color: var(--accent-amber);
  box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.2);
  background: rgba(11, 19, 43, 0.95);
}

.form-textarea {
  resize: vertical;
  min-height: 80px;
}

/* JOTFORM CUSTOM RADIO OPTIONS */
.jot-radio-group {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  margin-top: 0.2rem;
}

.jot-radio-label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
  user-select: none;
}
.jot-radio-label input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.jot-radio-custom {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.4);
  background: transparent;
  display: inline-block;
  position: relative;
  transition: all var(--transition-fast);
}

.jot-radio-label input:checked + .jot-radio-custom {
  border-color: var(--accent-amber);
}
.jot-radio-label input:checked + .jot-radio-custom::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-amber);
}

.jot-radio-text {
  color: #fff;
  font-size: 0.95rem;
  font-weight: 500;
}

.form-submit-row {
  margin-top: 0.5rem;
}
.btn-submit-reg {
  width: auto;
  min-width: 130px;
  padding: 0.7rem 2rem;
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: var(--radius-sm);
}

/* FEEDBACK MESSAGE */
.form-feedback-box {
  padding: 0.8rem 1.2rem;
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  font-weight: 500;
}
.form-feedback-box.error {
  background: rgba(239, 68, 68, 0.15);
  border: 1px solid rgba(239, 68, 68, 0.4);
  color: #fca5a5;
}
.form-feedback-box.success {
  background: rgba(34, 197, 94, 0.15);
  border: 1px solid rgba(34, 197, 94, 0.4);
  color: #86efac;
}

.form-submit-row {
  margin-top: 0.5rem;
}
.btn-submit-reg {
  width: 100%;
  justify-content: center;
  padding: 0.95rem;
  font-size: 1.05rem;
}

.spin-icon {
  animation: spin 1s linear infinite;
  display: inline-block;
  vertical-align: middle;
}
@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* SUCCESS STATE */
.reg-success-card {
  padding: 2.5rem 1rem;
}
.success-icon-box {
  width: 70px;
  height: 70px;
  margin: 0 auto 1.5rem;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.25), rgba(217, 119, 6, 0.15));
  border: 1px solid var(--accent-amber);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-amber);
  box-shadow: 0 0 25px rgba(245, 158, 11, 0.35);
}
.success-icon-box i {
  width: 36px;
  height: 36px;
}
.success-title {
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.8rem;
}
.success-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 520px;
  margin: 0 auto 2rem;
  line-height: 1.6;
}
.success-desc strong {
  color: var(--accent-amber);
}
.success-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

@media (max-width: 640px) {
  .form-row-2,
  .office-selector-row {
    grid-template-columns: 1fr;
  }
  .reg-modal-content {
    padding: 2rem 1.25rem;
  }
}

/* ─── ENHANCED 3-COLUMN FOOTER STYLES ─── */
.footer {
  background-color: #060b19;
  border-top: 1px solid var(--glass-border);
  padding: 5rem 1.5rem 2.5rem;
}

.footer-container {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2.5rem;
  align-items: start;
}

/* DIV 1: OFFICES */
.margin-top-md {
  margin-top: 1.5rem;
}

.footer-col-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-gold);
  margin-bottom: 0.8rem;
  letter-spacing: 0.5px;
}

.footer-address-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-address-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.footer-address-list i {
  width: 18px;
  height: 18px;
  color: var(--accent-amber);
  flex-shrink: 0;
  margin-top: 2px;
}

/* DIV 2: CONTACT */
.footer-email-link {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 1rem;
  font-weight: 700;
  font-style: italic;
  color: #fff;
  transition: color var(--transition-fast);
  margin-bottom: 1.2rem;
}

.footer-email-link:hover {
  color: var(--text-gold);
}

.footer-email-link i {
  width: 18px;
  height: 18px;
  color: var(--accent-amber);
}

.event-team-container {
  margin-top: 0.4rem;
}

.team-members-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 0.6rem;
}

.team-member-card {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: transparent;
  border: none;
  padding: 0;
  transition: transform var(--transition-fast);
}

.team-member-card:hover {
  transform: translateY(-2px);
}

.member-avatar {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  object-fit: cover;
  background: #2a3447;
}

.member-name {
  font-size: 0.92rem;
  font-weight: 600;
  color: #fff;
}

.team-caption {
  font-size: 0.85rem;
  font-style: italic;
  color: var(--text-muted);
}

/* DIV 3: BRAND (LEFT ALIGNED) */
.footer-brand-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.footer-brand-logo {
  height: 38px;
  width: auto;
  object-fit: contain;
  margin-bottom: 1.2rem;
}

.footer-company-name {
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1.2rem;
  line-height: 1.3;
  letter-spacing: 0.3px;
}

.footer-colorbar-wrapper {
  width: 220px;
  margin-bottom: 1.2rem;
}

.footer-colorbar-img {
  width: 100%;
  height: auto;
  display: block;
}

.footer-slogan {
  font-size: 1.1rem;
  color: #fff;
  font-weight: 500;
  letter-spacing: 0.3px;
}

.footer-links {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 2rem;
}
.footer-links a {
  color: var(--text-muted);
  font-size: 0.92rem;
  transition: color var(--transition-fast);
}
.footer-links a:hover {
  color: var(--accent-amber);
}

.footer-copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  width: 100%;
  padding-top: 1.8rem;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* ─── LIGHTBOX ─── */
.lightbox-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 3000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-normal);
}
.lightbox-backdrop.active {
  opacity: 1;
  visibility: visible;
}
.lightbox-close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  color: #fff;
  font-size: 1.5rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 3010;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.lightbox-close:hover {
  background: rgba(245, 158, 11, 0.25);
  border-color: var(--accent-amber);
  color: var(--accent-amber);
  transform: scale(1.1);
}
.lightbox-close i {
  width: 22px;
  height: 22px;
}
.lightbox-content {
  max-width: 90vw;
  max-height: 80vh;
  text-align: center;
  transition: all 0.3s ease;
}
.lightbox-content img {
  max-width: 100%;
  max-height: 75vh;
  border-radius: var(--radius-md);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.8);
}
.lightbox-caption {
  margin-top: 1rem;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 600;
}

/* ─── LIGHTBOX PNG TRANSPARENT PREVIEW MODE ─── */
.lightbox-backdrop.png-mode {
  background: radial-gradient(circle at center, rgba(11, 19, 43, 0.92) 0%, rgba(5, 8, 20, 0.97) 100%);
}

.lightbox-backdrop.png-mode .lightbox-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 520px;
  padding: 2.2rem 2rem 1.8rem;
  background: radial-gradient(circle at 50% 35%, rgba(245, 158, 11, 0.12) 0%, rgba(255, 255, 255, 0.02) 65%, transparent 100%);
  border: 1px solid rgba(245, 158, 11, 0.25);
  border-radius: var(--radius-lg);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.7), 0 0 40px rgba(245, 158, 11, 0.1);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  animation: zoomInOutfit 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.lightbox-backdrop.png-mode .lightbox-content img {
  max-width: 320px;
  max-height: 48vh;
  width: auto;
  height: auto;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
  filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.7)) drop-shadow(0 0 25px rgba(245, 158, 11, 0.35));
  animation: floatOutfitModal 3.5s ease-in-out infinite alternate;
  object-fit: contain;
}

@keyframes zoomInOutfit {
  from {
    opacity: 0;
    transform: scale(0.85);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes floatOutfitModal {
  0% {
    transform: translateY(0) scale(1);
  }
  100% {
    transform: translateY(-8px) scale(1.03);
  }
}

.lightbox-backdrop.png-mode .lightbox-caption {
  margin-top: 1.2rem;
  text-align: center;
}

/* ─── KEYFRAME ANIMATIONS ─── */
@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.2; }
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

/* ─── RESPONSIVE BREAKPOINTS ─── */
@media (max-width: 1024px) {
  .slider-item { flex: 0 0 50%; }
  .dresscode-card-wrapper { grid-template-columns: 1fr; }
  .dresscode-info { padding: 2.5rem 2rem; }
  .venues-dual-grid { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .team-members-row {
    flex-direction: row;
    gap: 1.5rem;
    flex-wrap: wrap;
  }
}

@media (max-width: 768px) {
  .slider-item { flex: 0 0 100%; }
  .prev-btn { left: 5px; }
  .next-btn { right: 5px; }

  .mobile-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    width: 42px;
    height: 42px;
    color: #fff;
    cursor: pointer;
    transition: all var(--transition-fast);
  }
  .mobile-toggle:hover,
  .mobile-toggle.active {
    background: rgba(245, 158, 11, 0.2);
    border-color: rgba(245, 158, 11, 0.45);
    color: var(--text-gold);
  }
  .mobile-toggle i {
    width: 22px;
    height: 22px;
  }

  /* ─── MOBILE RIGHT-ALIGNED FLOATING DROPDOWN CARD ─── */
  .nav-menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0.75rem;
    left: auto;
    width: 175px;
    background: rgba(11, 19, 43, 0.95);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(245, 158, 11, 0.28);
    border-radius: 14px;
    flex-direction: column;
    padding: 0.45rem;
    gap: 0.2rem;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.7), 0 0 20px rgba(245, 158, 11, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px) scale(0.94);
    transform-origin: top right;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.2s;
    z-index: 1001;
  }

  .nav-menu::after {
    content: '';
    position: absolute;
    top: -5px;
    right: 22px;
    transform: rotate(45deg);
    width: 9px;
    height: 9px;
    background: rgba(11, 19, 43, 0.95);
    border-left: 1px solid rgba(245, 158, 11, 0.28);
    border-top: 1px solid rgba(245, 158, 11, 0.28);
  }

  .nav-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
    pointer-events: auto;
  }

  .nav-menu .nav-link {
    width: 100%;
    padding: 0.6rem 0.85rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.88);
    border-radius: 9px;
    justify-content: flex-start;
    transition: background 0.15s ease, color 0.15s ease, transform 0.15s ease;
  }

  .nav-menu .nav-link:hover,
  .nav-menu .nav-link:active {
    background: rgba(245, 158, 11, 0.16);
    color: #fbbf24;
    transform: translateX(2px);
  }

  .countdown-grid { gap: 0.4rem; }
  .countdown-card {
    min-width: 65px;
    padding: 0.5rem 0.8rem;
  }
  .count-num { font-size: 1.6rem; }
}

/* ═══════════════════════════════════════════════════════
   CHATBOT WIDGET — BIERLY AI ASSISTANT
   ═══════════════════════════════════════════════════════ */

/* ─── FLOATING ACTION BUTTON ─── */
.chat-fab {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-amber) 0%, var(--accent-amber-dark) 100%);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(245, 158, 11, 0.45), 0 2px 8px rgba(0, 0, 0, 0.3);
  z-index: 9998;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.25s ease, box-shadow 0.3s ease;
  animation: chatFabPulse 3s ease-in-out infinite;
}

.chat-fab:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 32px rgba(245, 158, 11, 0.6), 0 4px 12px rgba(0, 0, 0, 0.4);
}

.chat-fab:active {
  transform: scale(0.95);
}

.chat-fab .chat-fab-icon {
  width: 28px;
  height: 28px;
  color: #fff;
  transition: transform 0.3s ease;
}

/* Ẩn nút tròn FAB phía dưới khi bảng chat đang mở (chỉ giữ dấu X trên header) */
.chat-fab.active {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: scale(0.5);
  animation: none;
}

@keyframes chatFabPulse {
  0%, 100% { box-shadow: 0 6px 24px rgba(245, 158, 11, 0.45), 0 2px 8px rgba(0, 0, 0, 0.3); }
  50% { box-shadow: 0 6px 32px rgba(245, 158, 11, 0.7), 0 2px 12px rgba(0, 0, 0, 0.4); }
}

/* ─── CHAT PANEL ─── */
.chat-panel {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 380px;
  height: 520px;
  background: rgba(11, 19, 43, 0.92);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(245, 158, 11, 0.2);
  border-radius: 20px;
  z-index: 9997;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px) scale(0.95);
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6), 0 0 30px rgba(245, 158, 11, 0.1);
}

.chat-panel.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

/* ─── CHAT HEADER ─── */
.chat-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.15) 0%, rgba(217, 119, 6, 0.1) 100%);
  border-bottom: 1px solid rgba(245, 158, 11, 0.18);
  flex-shrink: 0;
}

.chat-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-amber), var(--accent-amber-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(245, 158, 11, 0.35);
}

.chat-header-info {
  flex: 1;
}

.chat-header-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-main);
  line-height: 1.2;
}

.chat-header-status {
  font-size: 0.72rem;
  color: var(--text-gold);
  letter-spacing: 0.3px;
}

.chat-close-btn {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--text-muted);
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.chat-close-btn:hover {
  background: rgba(255, 255, 255, 0.15);
  color: var(--text-main);
}

.chat-close-btn i {
  width: 16px;
  height: 16px;
}

/* ─── CHAT MESSAGES AREA ─── */
.chat-messages {
  flex: 1;
  overflow-y: auto;
  padding: 16px 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  scroll-behavior: smooth;
}

.chat-messages::-webkit-scrollbar {
  width: 4px;
}

.chat-messages::-webkit-scrollbar-track {
  background: transparent;
}

.chat-messages::-webkit-scrollbar-thumb {
  background: rgba(245, 158, 11, 0.25);
  border-radius: 4px;
}

/* ─── CHAT MESSAGE BUBBLES ─── */
.chat-msg {
  display: flex;
  gap: 8px;
  max-width: 88%;
  animation: chatMsgIn 0.3s ease-out;
}

.chat-msg.user {
  align-self: flex-end;
  flex-direction: row-reverse;
}

.chat-msg-avatar {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  margin-top: 2px;
}

.chat-msg.bot .chat-msg-avatar {
  background: linear-gradient(135deg, var(--accent-amber), var(--accent-amber-dark));
}

.chat-msg.user .chat-msg-avatar {
  background: rgba(255, 255, 255, 0.12);
  font-size: 0.65rem;
}

.chat-msg-bubble {
  padding: 10px 14px;
  border-radius: 14px;
  font-size: 0.85rem;
  line-height: 1.55;
  letter-spacing: 0.15px;
  word-break: break-word;
}

.chat-msg.bot .chat-msg-bubble {
  background: rgba(22, 32, 61, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text-main);
  border-bottom-left-radius: 4px;
}

.chat-msg.user .chat-msg-bubble {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.22), rgba(217, 119, 6, 0.18));
  border: 1px solid rgba(245, 158, 11, 0.25);
  color: var(--text-main);
  border-bottom-right-radius: 4px;
}

@keyframes chatMsgIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ─── TYPING INDICATOR ─── */
.chat-typing {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 4px;
}

.chat-typing-dots {
  display: flex;
  gap: 4px;
  padding: 10px 16px;
  background: rgba(22, 32, 61, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  border-bottom-left-radius: 4px;
}

.chat-typing-dots span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-amber);
  animation: typingBounce 1.4s ease-in-out infinite;
}

.chat-typing-dots span:nth-child(2) { animation-delay: 0.15s; }
.chat-typing-dots span:nth-child(3) { animation-delay: 0.3s; }

@keyframes typingBounce {
  0%, 60%, 100% { transform: translateY(0); opacity: 0.4; }
  30% { transform: translateY(-6px); opacity: 1; }
}

/* ─── SUGGESTION CHIPS ─── */
.chat-suggestions {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 10px 14px 4px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  flex-shrink: 0;
}

.chat-chip {
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.72rem;
  background: rgba(245, 158, 11, 0.1);
  border: 1px solid rgba(245, 158, 11, 0.2);
  color: var(--text-gold);
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
  letter-spacing: 0.2px;
}

.chat-chip:hover {
  background: rgba(245, 158, 11, 0.2);
  border-color: rgba(245, 158, 11, 0.4);
  transform: translateY(-1px);
}

/* ─── CHAT INPUT BAR ─── */
.chat-input-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(11, 19, 43, 0.6);
  flex-shrink: 0;
}

.chat-input {
  flex: 1;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 10px 14px;
  color: var(--text-main);
  font-size: 0.85rem;
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s ease;
  resize: none;
  min-height: 20px;
  max-height: 80px;
  line-height: 1.4;
}

.chat-input::placeholder {
  color: var(--text-muted);
  opacity: 0.7;
}

.chat-input:focus {
  border-color: rgba(245, 158, 11, 0.4);
}

.chat-send-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-amber), var(--accent-amber-dark));
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.chat-send-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 4px 14px rgba(245, 158, 11, 0.4);
}

.chat-send-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.chat-send-btn i {
  width: 18px;
  height: 18px;
}

/* ─── WELCOME MESSAGE ─── */
.chat-welcome {
  text-align: center;
  padding: 8px 12px 4px;
}

.chat-welcome-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 4px;
}

.chat-welcome-sub {
  font-size: 0.76rem;
  color: var(--text-muted);
  line-height: 1.45;
}

/* ─── CHAT RESPONSIVE ─── */
@media (max-width: 480px) {
  .chat-fab {
    bottom: 18px;
    right: 18px;
    width: 52px;
    height: 52px;
  }

  .chat-panel {
    bottom: 0;
    right: 0;
    left: 0;
    width: 100%;
    height: 85vh;
    max-height: 85vh;
    border-radius: 20px 20px 0 0;
    border-bottom: none;
  }

  .chat-panel.open {
    transform: translateY(0) scale(1);
  }
}

@media (min-width: 481px) and (max-width: 768px) {
  .chat-panel {
    width: 340px;
    height: 480px;
    bottom: 20px;
    right: 20px;
  }
}
