/* =========================
   🎮 GAME BANNER (STICKY)
========================= */
.game-banner {
  position: sticky;
  top: 0;
  z-index: 999;

  margin: 20px 0;
  border-radius: 14px;
  cursor: pointer;

  background: linear-gradient(135deg, #0f9b0f, #000000);
  color: white;

  padding: 15px 20px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);

  width: 100%;
}

.game-banner:hover {
  transform: translateY(-2px);
}

.game-banner-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 22px;
}

.game-banner-left h2 {
  margin: 0;
  font-size: 20px;
}

.game-banner-left p {
  margin: 4px 0 0;
  font-size: 13px;
  opacity: 0.9;
}

.game-banner-btn {
  background: rgba(255,255,255,0.2);
  padding: 8px 16px;
  border-radius: 20px;
  font-weight: 600;
}


/* =========================
   🍽️ MAIN CONTAINER
========================= */
.elite-menu {
  position: relative;
  background-image: url('/assets/images/menu/menu.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  padding: 40px;
  min-height: 100vh;
  color: #fff;

  overflow: visible; /* ✅ IMPORTANT FIX */
}

/* Overlay */
.elite-menu::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 0;
  pointer-events: none;
}

/* Keep content above overlay */
.elite-menu > * {
  position: relative;
  z-index: 1;
}


/* =========================
   🏷 HEADER
========================= */
.elite-header {
  text-align: center;
  margin-bottom: 40px;
}

.elite-header h1 {
  font-size: 46px;
  color: #d4af37;
  letter-spacing: 3px;
  margin: 0;
}

.elite-header p {
  font-size: 14px;
  letter-spacing: 2px;
  color: #e6d3a3;
  margin-top: 5px;
}


/* =========================
   📦 GRID (3 COLUMNS)
========================= */
.elite-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}


/* =========================
   🧾 CARD
========================= */
.elite-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid #d4af37;
  border-radius: 14px;
  padding: 20px;

  backdrop-filter: blur(6px);
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.15);

  transition: all 0.3s ease;
  min-height: 300px;
  position: relative;
}

.elite-card::before {
  content: "";
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(212, 175, 55, 0.4);
  border-radius: 10px;
}

.elite-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(212, 175, 55, 0.25);
}


/* =========================
   🏷 SECTION TITLE
========================= */
.elite-section-title {
  text-align: center;
  color: #d4af37;
  margin-bottom: 15px;
  font-size: 20px;
  letter-spacing: 1px;
}

.elite-section-title::after {
  content: "";
  width: 50px;
  height: 2px;
  background: #d4af37;
  display: block;
  margin: 6px auto 0;
}


/* =========================
   🍛 MENU ITEM
========================= */
.elite-item {
  display: flex;
  justify-content: space-between;
  padding: 10px 5px;
  border-bottom: 1px dashed rgba(255,255,255,0.2);
  transition: 0.3s;
}

.elite-item:hover {
  background: rgba(212,175,55,0.08);
  border-radius: 6px;
}

/* Header row */
.elite-header-row {
  font-weight: bold;
  border-bottom: 1px solid rgba(255,255,255,0.3);
}


/* Dish name */
.elite-left {
  font-size: 15px;
  color: #f5e6c5;
}

/* Price */
.elite-right span {
  margin-left: 10px;
  color: #f1c96d;
  font-size: 14px;
  white-space: nowrap;
}


/* =========================
   📱 RESPONSIVE
========================= */

/* Tablet */
@media (max-width: 900px) {
  .elite-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .elite-header h1 {
    font-size: 36px;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .elite-grid {
    grid-template-columns: 1fr;
  }

  .elite-header h1 {
    font-size: 28px;
  }

  .elite-menu {
    padding: 20px;
  }

  .game-banner-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .game-banner-btn {
    align-self: flex-end;
  }
}

