:root {
    --bg-color: #121212;
    --text-color: #ffffff;
    --accent-color: #e6c06a;
    --card-bg: #1e1e1e;
    --button-bg: #333333;
    --button-hover: #444444;
    --hover-color: #292929;
}

.light-mode {
    --bg-color: #f5f5f5;
    --text-color: #121212;
    --accent-color: #c09a40;
    --card-bg: #ffffff;
    --button-bg: #e0e0e0;
    --button-hover: #d0d0d0;
    --hover-color: #292929;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    transition: background-color 0.3s ease, color 0.3s ease;
    will-change: background-color, color;
    transition: background-color 0.2s ease, 
                color 0.2s ease;
}

.container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    max-width: 100%;
    margin: 0 auto;
}

header {
    text-align: center;
    padding: 2rem 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.logo {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--accent-color);
}

.tagline {
    font-size: 1rem;
    letter-spacing: 2px;
    margin-top: 0.5rem;
    text-shadow: 0 0 8px rgba(0,0,0,0.7);
}

main {
    flex: 1;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.menu-buttons {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    width: 100%;
    max-width: 400px;
}

.menu-button {
    display: flex;
    align-items: center;
    padding: 1rem 1.5rem;
    background-color: var(--button-bg);
    border-radius: 8px;
    text-decoration: none;
    color: var(--text-color);
    transition: all 0.3s ease;
    will-change: transform, background-color;
    transform: translateZ(0); /* Hardware acceleration */
    transition: transform 0.2s cubic-bezier(0.25, 0.1, 0.25, 1), 
                background-color 0.3s ease;
}

.menu-button:hover {
    background-color: var(--button-hover);
    transform: translateY(-2px) translateZ(0);
}

.staff {
    border: 1px solid var(--accent-color);
}

.canva-container {
    width: 100%;
    height: calc(100vh - 200px);
    overflow: hidden;
    border-radius: 8px;
    z-index: 1;
    -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    -moz-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.canva-embed {
    width: 100%;
    height: 100%;
    border: none;
}

.back-button {
    margin-top: 1rem;
    color: var(--accent-color);
    text-decoration: none;
    font-weight: bold;
}

.specials-content {
    width: 100%;
    max-width: 500px;
}

.special-item {
    background-color: var(--card-bg);
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.special-item h2 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.special-item .price {
    font-weight: bold;
    margin-top: 0.5rem;
    font-size: 1.2rem;
}

.staff-menu-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    width: 100%;
    max-width: 500px;
}

.staff-notes {
    margin-top: 2rem;
    background-color: var(--card-bg);
    padding: 1.5rem;
    border-radius: 8px;
    width: 100%;
    max-width: 500px;
}

.staff-notes h2 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.add-note {
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 1.5rem;
}

footer {
    padding: 1.5rem;
    text-align: center;
    font-size: 0.85rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.theme-toggle {
    margin-top: 1rem;
}

#theme-button {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-color);
    will-change: transform;
    transition: transform 0.15s ease;
}

#theme-button:active {
    transform: scale(0.95);
}

@media (min-width: 768px) {
    .container {
        max-width: 800px;
    }
    
    .menu-buttons {
        grid-template-columns: repeat(2, 1fr);
    }
}

:root {
    --bg-color: rgba(18, 18, 18, 0.85);
    --text-color: #ffffff;
    --accent-color: #e6c06a;
    --card-bg: rgba(30, 30, 30, 0.9);
    --button-bg: rgba(51, 51, 51, 0.9);
    --button-hover: rgba(68, 68, 68, 0.95);
}

.light-mode {
    --bg-color: rgba(245, 245, 245, 0.85);
    --text-color: #121212;
    --accent-color: #c09a40;
    --card-bg: rgba(255, 255, 255, 0.9);
    --button-bg: rgba(224, 224, 224, 0.9);
    --button-hover: rgba(208, 208, 208, 0.95);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    background-image: url('https://i.imgur.com/6MWnhyq.gif');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    color: var(--text-color);
    line-height: 1.6;
    transition: color 0.3s ease;
}

.container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    max-width: 100%;
    margin: 0 auto;
    background-color: var(--bg-color);
    backdrop-filter: blur(3px);
}

header {
    text-align: center;
    padding: 2rem 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.logo {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--accent-color);
    text-shadow: 0 0 10px rgba(0,0,0,0.5);
}

.tagline {
    font-size: 1rem;
    letter-spacing: 2px;
    margin-top: 0.5rem;
    text-shadow: 0 0 8px rgba(0,0,0,0.7);
}

main {
    flex: 1;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.menu-buttons {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    width: 100%;
    max-width: 400px;
}

.menu-button {
    display: flex;
    align-items: center;
    padding: 1rem 1.5rem;
    background-color: var(--button-bg);
    border-radius: 8px;
    text-decoration: none;
    color: var(--text-color);
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    backdrop-filter: blur(5px);
    will-change: transform, background-color;
    transform: translateZ(0); /* Hardware acceleration */
    transition: transform 0.2s cubic-bezier(0.25, 0.1, 0.25, 1), 
                background-color 0.3s ease;
}

.menu-button:hover {
    background-color: var(--button-hover);
    transform: translateY(-2px) translateZ(0);
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

.menu-button .emoji {
    font-size: 1.5rem;
    margin-right: 1rem;
}

.menu-button .text {
    font-size: 1rem;
    font-weight: bold;
    letter-spacing: 1px;
}

.staff {
    border: 1px solid var(--accent-color);
}

.canva-container {
    width: 100%;
    height: calc(100vh - 200px);
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.canva-embed {
    width: 100%;
    height: 100%;
    border: none;
}

.back-button {
    margin-top: 1rem;
    color: var(--accent-color);
    text-decoration: none;
    font-weight: bold;
    text-shadow: 0 0 5px rgba(0,0,0,0.5);
}

.specials-content {
    width: 100%;
    max-width: 500px;
}

.special-item {
    background-color: var(--card-bg);
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    backdrop-filter: blur(5px);
}

.special-item h2 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.special-item .price {
    font-weight: bold;
    margin-top: 0.5rem;
    font-size: 1.2rem;
}

.staff-menu-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    width: 100%;
    max-width: 500px;
}

.staff-notes {
    margin-top: 2rem;
    background-color: var(--card-bg);
    padding: 1.5rem;
    border-radius: 8px;
    width: 100%;
    max-width: 500px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    backdrop-filter: blur(5px);
}

.staff-notes h2 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.add-note {
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 1.5rem;
}

footer {
    padding: 1.5rem;
    text-align: center;
    font-size: 0.85rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.theme-toggle {
    margin-top: 1rem;
}

#theme-button {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-color);
    will-change: transform;
    transition: transform 0.15s ease;
}

#theme-button:active {
    transform: scale(0.95);
}

@media (min-width: 768px) {
    .container {
        max-width: 800px;
    }
    
    .menu-buttons {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Add this to style.css */
.logo {
    font-size: 3.2rem; 
    letter-spacing: 2px;
    text-shadow: 0 0 15px rgba(138, 43, 226, 0.7);
    margin-bottom: 5px;
}

.tagline {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    opacity: 0.8;
}

main {
    padding: 2.5rem 1.5rem;
}

:root {
    --bg-color: rgba(18, 18, 18, 0.92);
    --text-color: #ffffff;
    --accent-color: #d4af37; /* Royal gold */
    --secondary-accent: rgba(138, 43, 226, 0.7); /* Purple */
    --card-bg: rgba(30, 30, 30, 0.95);
    --button-bg: rgba(40, 40, 40, 0.95);
    --button-hover: rgba(60, 60, 60, 0.95);
}

.menu-button {
    border-left: 3px solid var(--accent-color);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    will-change: transform, background-color;
    transform: translateZ(0); /* Hardware acceleration */
    transition: transform 0.2s cubic-bezier(0.25, 0.1, 0.25, 1), 
                background-color 0.3s ease;
}

.menu-button:hover {
    border-left: 8px solid var(--accent-color);
    background-color: var(--button-hover);
    transform: translateY(-2px) translateZ(0);
}

.container {
    min-height: 100vh;
    max-width: 100%;
    margin: 0 auto;
    background-color: var(--bg-color);
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.8);
}

@media (min-width: 768px) {
    .container {
        max-width: 800px;
        margin: 0 auto;
        border-left: 1px solid rgba(255, 255, 255, 0.1);
        border-right: 1px solid rgba(255, 255, 255, 0.1);
    }
}

/* Add animation keyframes */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.menu-buttons {
    animation: fadeUp 0.8s ease-out forwards;
}

.menu-button:nth-child(1) { animation-delay: 0.1s; }
.menu-button:nth-child(2) { animation-delay: 0.2s; }
.menu-button:nth-child(3) { animation-delay: 0.3s; }
.menu-button:nth-child(4) { animation-delay: 0.4s; }

body {
    font-family: 'Montserrat', 'Helvetica Neue', Arial, sans-serif;
}

/* Add this to head of HTML */
<link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@300;500;700&display=swap" rel="stylesheet">

.canva-container {
    width: 100%;
    height: calc(100vh - 200px);
    border-radius: 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease;
}

.canva-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
}

footer {
    padding: 2rem 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-icon {
    font-size: 1.5rem;
    color: var(--text-color);
    opacity: 0.7;
    transition: all 0.2s ease;
}

.social-icon:hover {
    color: var(--accent-color);
    opacity: 1;
}
/* YUTA Bar Style Inspired by Three Little Words */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Montserrat', sans-serif;
  color: #fff;
  background-color: #000;
  overflow-x: hidden;
}

.hero-section {
  position: relative;
  height: 100vh;
  width: 100vw;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  filter: brightness(0.5);
}

.hero-overlay {
  position: relative;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 2rem;
}

.hero-title {
  font-size: 4rem;
  font-weight: 800;
  color: #f9f9f9;
  margin-bottom: 1rem;
}

.hero-sub {
  font-size: 1.2rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 2rem;
  color: #d4af37;
}

.hero-btn {
  text-decoration: none;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border: 2px solid #d4af37;
  color: #fff;
  transition: all 0.3s ease;
}

.hero-btn:hover {
  background-color: #d4af37;
  color: #000;
}

.menu-section {
  padding: 4rem 2rem;
  background-color: #111;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.menu-card {
  padding: 2rem;
  background-color: #1a1a1a;
  border-left: 4px solid #d4af37;
  transition: all 0.3s ease;
  text-decoration: none;
  color: #fff;
}

.menu-card:hover {
    background-color: var(--hover-color);
    -webkit-transform: translateY(-5px);
    -moz-transform: translateY(-5px);
    -ms-transform: translateY(-5px);
    transform: translateY(-5px);
    -webkit-box-shadow: 0 0 30px rgba(212, 175, 55, 0.1);
    -moz-box-shadow: 0 0 30px rgba(212, 175, 55, 0.1);
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.1);
}

.menu-card h2 {
  margin-bottom: 0.5rem;
  font-size: 1.5rem;
}

.menu-card p {
  font-size: 0.9rem;
  color: #ccc;
}

.callout {
  padding: 4rem 2rem;
  background-color: #000;
  text-align: center;
}

.highlight-text {
  font-size: 1.8rem;
  font-weight: 700;
  color: #d4af37;
  margin-bottom: 1rem;
}

.special-btn {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.75rem 1.5rem;
  border: 2px solid #d4af37;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
}

.special-btn:hover {
  background-color: #d4af37;
  color: #000;
}

.footer {
  padding: 2rem;
  background-color: #111;
  color: #777;
  text-align: center;
}

.footer-links a {
  color: #d4af37;
  margin: 0 1rem;
  text-decoration: none;
}

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

.footer-copy {
  margin-top: 1rem;
  font-size: 0.8rem;
}

/* 🔥 YUTA Bar Style — Sonia’s Glow-Up Edition */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Montserrat', sans-serif;
  color: #fff;
  background-color: #000;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

.light-mode {
  background-color: #fdfdfd;
  color: #111;
}

.hero-section {
  position: relative;
  height: 100vh;
  width: 100vw;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  filter: brightness(0.4) contrast(1.1);
}

.hero-overlay {
  position: relative;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 2rem;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(4px);
}

.hero-title {
  font-size: 4.2rem;
  font-weight: 800;
  color: #fff;
  text-shadow: 0 0 20px rgba(212, 175, 55, 0.6);
  margin-bottom: 1rem;
}

.hero-sub {
  font-size: 1.2rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 2rem;
  color: #d4af37;
}

.hero-btn {
  text-decoration: none;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border: 2px solid #d4af37;
  color: #fff;
  transition: all 0.3s ease;
}

.hero-btn:hover {
  background-color: #d4af37;
  color: #000;
}

.menu-section {
  padding: 5rem 2rem;
  background-color: #111;
  text-align: center;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.menu-card {
  padding: 2rem;
  background-color: #1a1a1a;
  border-left: 4px solid #d4af37;
  transition: all 0.3s ease;
  text-decoration: none;
  color: #fff;
  border-radius: 8px;
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.05);
}

.menu-card:hover {
  background-color: #292929;
  transform: translateY(-5px);
  box-shadow: 0 0 30px rgba(212, 175, 55, 0.1);
}

.menu-card h2 {
  margin-bottom: 0.5rem;
  font-size: 1.5rem;
}

.menu-card p {
  font-size: 0.9rem;
  color: #ccc;
}

.callout {
  padding: 4rem 2rem;
  background-color: #000;
  text-align: center;
}

.highlight-text {
  font-size: 2rem;
  font-weight: 700;
  color: #d4af37;
  margin-bottom: 1rem;
}

.special-btn {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.75rem 1.5rem;
  border: 2px solid #d4af37;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
}

.special-btn:hover {
  background-color: #d4af37;
  color: #000;
}

.footer {
  padding: 3rem 2rem;
  background-color: #111;
  color: #777;
  text-align: center;
}

.footer-links {
  margin-bottom: 1rem;
}

.footer-links a {
  color: #d4af37;
  margin: 0 1rem;
  text-decoration: none;
  font-weight: 600;
}

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

.footer-copy {
  font-size: 0.8rem;
  opacity: 0.6;
}

/* Floating Cocktail Animation */
@keyframes float {
  0% { transform: translateY(0); opacity: 0.2; }
  100% { transform: translateY(-100vh); opacity: 0; }
}

/* Light Mode Adjustment */
.light-mode .hero-title,
.light-mode .highlight-text {
  color: #111;
  text-shadow: none;
}

.light-mode .hero-overlay {
  background: rgba(255,255,255,0.3);
  backdrop-filter: blur(3px);
}

.light-mode .menu-card {
  background-color: #f4f4f4;
  color: #111;
}

.light-mode .menu-card:hover {
  background-color: #eaeaea;
}

.light-mode .special-btn,
.light-mode .hero-btn {
  color: #111;
  border-color: #c59d38;
}

.light-mode .special-btn:hover,
.light-mode .hero-btn:hover {
  background-color: #c59d38;
  color: #fff;
}

.callout-gif {
  max-width: 280px;
  width: 100%;
  display: block;
  margin: 0 auto 1.5rem;
  border-radius: 12px;
  box-shadow: 0 0 25px rgba(212, 175, 55, 0.3);
}

.lineup-section {
  padding: 4rem 2rem;
  background-color: #0b0b0b;
  text-align: center;
}

.section-title {
  font-size: 2rem;
  color: #d4af37;
  margin-bottom: 2rem;
  text-shadow: 0 0 10px rgba(212, 175, 55, 0.2);
}

.lineup-table {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}

.lineup-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  background-color: #1a1a1a;
  border-left: 4px solid #d4af37;
  border-radius: 8px;
  padding: 1rem 1.5rem;
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.05);
  transition: transform 0.2s ease;
}

.lineup-row:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 25px rgba(212, 175, 55, 0.15);
}

.lineup-day {
  font-weight: bold;
  color: #fff;
  flex: 1 1 100px;
}

.lineup-slot {
  flex: 1 1 150px;
  color: #ccc;
  font-size: 0.95rem;
  padding-left: 1rem;
}

@media (max-width: 600px) {
  .lineup-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .lineup-slot {
    padding-left: 0;
    margin-top: 0.5rem;
  }
}

.lineup-carousel {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  gap: 1rem;
  padding: 2rem 1rem;
  scroll-padding: 1rem;
}

.lineup-card {
  min-width: 260px;
  flex: 0 0 auto;
  scroll-snap-align: start;
  background: #1a1a1a;
  border-left: 4px solid #d4af37;
  border-radius: 10px;
  padding: 1rem;
  color: #eee;
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.05);
  transition: transform 0.2s ease;
}

.lineup-card:hover {
  transform: scale(1.03);
  box-shadow: 0 0 25px rgba(212, 175, 55, 0.15);
}

.lineup-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: #d4af37;
}

.lineup-carousel {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  gap: 1rem;
  padding: 2rem 1rem;
  scroll-padding: 1rem;
  cursor: grab;
  user-select: none;
}

.lineup-carousel.dragging {
  cursor: grabbing;
}

.lineup-card {
  min-width: 260px;
  flex: 0 0 auto;
  scroll-snap-align: start;
  background: #1a1a1a;
  border-left: 4px solid #d4af37;
  border-radius: 10px;
  padding: 1rem;
  color: #eee;
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.05);
  transition: transform 0.2s ease;
}

.lineup-card:hover {
  transform: scale(1.03);
  box-shadow: 0 0 25px rgba(212, 175, 55, 0.15);
}

.lineup-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: #d4af37;
}

/* Carousel styling for draggable lineup */
.lineup-carousel {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  gap: 1rem;
  padding: 2rem 1rem;
  scroll-padding: 1rem;
  cursor: grab;
  user-select: none;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none; /* Firefox */
}

.lineup-carousel::-webkit-scrollbar {
  display: none; /* Chrome/Safari */
}

.lineup-carousel.dragging {
  cursor: grabbing;
}

.lineup-card {
  min-width: 260px;
  flex: 0 0 auto;
  scroll-snap-align: start;
  background: #1a1a1a;
  border-left: 4px solid #d4af37;
  border-radius: 10px;
  padding: 1rem;
  color: #eee;
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.05);
  transition: transform 0.2s ease;
}

.lineup-card:hover {
  transform: scale(1.03);
  box-shadow: 0 0 25px rgba(212, 175, 55, 0.15);
}

.lineup-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: #d4af37;
}
/* Add to style.css */
.lineup-carousel {
    will-change: transform, scroll-position;
    transform: translate3d(0,0,0);
    scroll-behavior: smooth;
    overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
}

.lineup-carousel::-webkit-scrollbar {
    display: none;
}

.lineup-card {
    will-change: transform;
    backface-visibility: hidden;
    transform: translate3d(0,0,0);
}