/* ============================================================
   LEMQARO.COM — Gaming Cafe Premium CSS
   Tokyo, Japan | 2026
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;700;900&family=Zen+Kaku+Gothic+New:wght@300;400;700;900&family=Orbitron:wght@400;700;900&display=swap');

/* ─── CSS Variables ─── */
:root {
  --clr-bg:        #0a0a0f;
  --clr-bg2:       #10101a;
  --clr-card:      #141420;
  --clr-border:    #1e1e35;
  --clr-accent:    #c9a84c;
  --clr-accent2:   #e8c96a;
  --clr-neon:      #7b5fe0;
  --clr-neon2:     #a87cff;
  --clr-text:      #f0ede8;
  --clr-muted:     #8a8a9a;
  --clr-white:     #ffffff;
  --font-jp:       'Noto Sans JP', 'Zen Kaku Gothic New', sans-serif;
  --font-en:       'Orbitron', sans-serif;
  --radius:        12px;
  --radius-lg:     20px;
  --shadow:        0 4px 30px rgba(0,0,0,0.5);
  --shadow-glow:   0 0 40px rgba(201,168,76,0.15);
  --transition:    0.3s 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 {
  font-family: var(--font-jp);
  background-color: var(--clr-bg);
  color: var(--clr-text);
  line-height: 1.7;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
ul { list-style: none; }

/* ─── Scrollbar ─── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--clr-bg); }
::-webkit-scrollbar-thumb { background: var(--clr-neon); border-radius: 3px; }

/* ============================================================
   HEADER / NAVIGATION
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 2rem;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(10,10,15,0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--clr-border);
  transition: var(--transition);
}

.site-header.scrolled {
  background: rgba(10,10,15,0.97);
  box-shadow: 0 2px 20px rgba(0,0,0,0.6);
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-en);
  font-weight: 900;
  font-size: 1.35rem;
  letter-spacing: 0.04em;
  color: var(--clr-accent);
}

.logo svg { flex-shrink: 0; }

.logo-sub {
  display: block;
  font-family: var(--font-jp);
  font-size: 0.55rem;
  font-weight: 300;
  color: var(--clr-muted);
  letter-spacing: 0.12em;
  line-height: 1;
  margin-top: 2px;
}

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

.nav-list a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--clr-muted);
  letter-spacing: 0.05em;
  transition: color var(--transition);
  position: relative;
}

.nav-list a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--clr-accent);
  transition: width var(--transition);
}

.nav-list a:hover,
.nav-list a.active {
  color: var(--clr-accent);
}

.nav-list a:hover::after,
.nav-list a.active::after { width: 100%; }

.nav-cta {
  padding: 0.5rem 1.25rem;
  background: var(--clr-accent);
  color: var(--clr-bg) !important;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
}

.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--clr-accent2) !important; color: var(--clr-bg) !important; }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--clr-text);
  border-radius: 2px;
  transition: var(--transition);
}

/* ─── Mobile nav ─── */
.mobile-nav {
  display: none;
  position: fixed;
  top: 72px; left: 0; right: 0;
  background: rgba(10,10,15,0.98);
  backdrop-filter: blur(20px);
  z-index: 999;
  padding: 1.5rem 2rem 2rem;
  border-bottom: 1px solid var(--clr-border);
  flex-direction: column;
  gap: 0.25rem;
}

.mobile-nav.open { display: flex; }

.mobile-nav a {
  padding: 0.75rem 0;
  font-size: 1rem;
  color: var(--clr-muted);
  border-bottom: 1px solid var(--clr-border);
  transition: color var(--transition);
}

.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a:hover, .mobile-nav a.active { color: var(--clr-accent); }

/* ============================================================
   PAGE LAYOUT
   ============================================================ */
main { padding-top: 72px; }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-pad {
  padding: 100px 0;
}

.section-pad-sm {
  padding: 64px 0;
}

/* ─── Section header ─── */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-label {
  display: inline-block;
  font-family: var(--font-en);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--clr-accent);
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.section-desc {
  font-size: 1rem;
  color: var(--clr-muted);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.8;
}

/* ─── Accent line ─── */
.accent-line {
  width: 48px; height: 3px;
  background: linear-gradient(90deg, var(--clr-accent), var(--clr-neon2));
  margin: 1rem auto 0;
  border-radius: 2px;
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/hero-interior.jpg');
  background-size: cover;
  background-position: center;
  filter: brightness(0.35);
  transform: scale(1.05);
  transition: transform 8s ease;
}

.hero:hover .hero-bg { transform: scale(1); }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10,10,15,0.7) 0%,
    rgba(123,95,224,0.1) 50%,
    rgba(201,168,76,0.05) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0.4rem 1rem;
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 100px;
  font-family: var(--font-en);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: var(--clr-accent);
  margin-bottom: 1.5rem;
  background: rgba(201,168,76,0.05);
}

.hero-badge-dot {
  width: 6px; height: 6px;
  background: var(--clr-accent);
  border-radius: 50%;
  animation: pulse 2s ease infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.hero-title {
  font-size: clamp(2.5rem, 7vw, 5.5rem);
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.hero-title .accent { color: var(--clr-accent); }
.hero-title .neon { color: var(--clr-neon2); }

.hero-subtitle {
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  color: rgba(240,237,232,0.7);
  margin-bottom: 2.5rem;
  max-width: 520px;
  line-height: 1.9;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
  opacity: 0.6;
}

.hero-scroll span {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: var(--clr-muted);
  font-family: var(--font-en);
}

.scroll-line {
  width: 1px; height: 50px;
  background: linear-gradient(to bottom, var(--clr-accent), transparent);
  animation: scrollLine 2s ease infinite;
}

@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  50.01% { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0.85rem 1.75rem;
  border-radius: var(--radius);
  font-family: var(--font-jp);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  cursor: pointer;
  border: none;
  transition: var(--transition);
}

.btn-primary {
  background: linear-gradient(135deg, var(--clr-accent), var(--clr-accent2));
  color: var(--clr-bg);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201,168,76,0.4);
}

.btn-outline {
  background: transparent;
  color: var(--clr-text);
  border: 1px solid rgba(240,237,232,0.25);
}

.btn-outline:hover {
  border-color: var(--clr-accent);
  color: var(--clr-accent);
  transform: translateY(-2px);
}

.btn-ghost {
  background: rgba(255,255,255,0.05);
  color: var(--clr-muted);
  border: 1px solid var(--clr-border);
}

.btn-ghost:hover {
  background: rgba(255,255,255,0.1);
  color: var(--clr-text);
}

/* ============================================================
   STATS STRIP
   ============================================================ */
.stats-strip {
  background: var(--clr-bg2);
  border-top: 1px solid var(--clr-border);
  border-bottom: 1px solid var(--clr-border);
  padding: 2.5rem 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat-item {
  padding: 1rem;
  border-right: 1px solid var(--clr-border);
}

.stat-item:last-child { border-right: none; }

.stat-number {
  font-family: var(--font-en);
  font-size: 2.25rem;
  font-weight: 900;
  color: var(--clr-accent);
  line-height: 1;
  margin-bottom: 0.4rem;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--clr-muted);
  letter-spacing: 0.05em;
}

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

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

.about-img img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.about-img:hover img { transform: scale(1.04); }

.about-img-badge {
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
  background: rgba(10,10,15,0.9);
  backdrop-filter: blur(10px);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  text-align: center;
}

.about-img-badge strong {
  display: block;
  font-family: var(--font-en);
  font-size: 1.5rem;
  color: var(--clr-accent);
}

.about-img-badge span {
  font-size: 0.7rem;
  color: var(--clr-muted);
  letter-spacing: 0.08em;
}

.about-content .section-header {
  text-align: left;
  margin-bottom: 1.5rem;
}

.about-content .accent-line { margin: 1rem 0 0; }

.about-text {
  color: var(--clr-muted);
  line-height: 1.9;
  margin-bottom: 1rem;
}

.about-features {
  margin: 2rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.about-feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
}

.about-feature-icon {
  width: 32px; height: 32px;
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
}

/* ============================================================
   MENU PREVIEW (HOME)
   ============================================================ */
.menu-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.menu-card {
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}

.menu-card:hover {
  transform: translateY(-6px);
  border-color: rgba(201,168,76,0.3);
  box-shadow: var(--shadow-glow);
}

.menu-card-img {
  height: 220px;
  overflow: hidden;
}

.menu-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.menu-card:hover .menu-card-img img { transform: scale(1.07); }

.menu-card-body {
  padding: 1.5rem;
}

.menu-card-tag {
  font-family: var(--font-en);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  color: var(--clr-neon2);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.menu-card-title {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.menu-card-desc {
  font-size: 0.85rem;
  color: var(--clr-muted);
  line-height: 1.7;
}

/* ============================================================
   GAMING PREVIEW (HOME)
   ============================================================ */
.gaming-preview {
  background: var(--clr-bg2);
  border-top: 1px solid var(--clr-border);
  border-bottom: 1px solid var(--clr-border);
}

.gaming-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

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

.gaming-img img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}

.gaming-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,10,15,0.6) 0%, transparent 50%);
}

.gaming-content .section-header {
  text-align: left;
  margin-bottom: 2rem;
}

.gaming-content .accent-line { margin: 1rem 0 0; }

.gaming-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 2rem 0;
}

.gaming-spec {
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  padding: 1.25rem;
  transition: var(--transition);
}

.gaming-spec:hover {
  border-color: rgba(123,95,224,0.4);
  background: rgba(123,95,224,0.05);
}

.gaming-spec-icon {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.gaming-spec-title {
  font-size: 0.875rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.gaming-spec-value {
  font-size: 0.75rem;
  color: var(--clr-muted);
}

/* ============================================================
   FULL MENU PAGE
   ============================================================ */
.menu-hero {
  position: relative;
  height: 420px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.menu-hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/menu-ramen.jpg');
  background-size: cover;
  background-position: center;
  filter: brightness(0.3);
}

.menu-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(10,10,15,0.85) 40%, transparent 100%);
}

.page-hero-content {
  position: relative;
  z-index: 2;
}

.page-hero-label {
  font-family: var(--font-en);
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  color: var(--clr-accent);
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.page-hero-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 1rem;
}

.page-hero-desc {
  font-size: 1rem;
  color: rgba(240,237,232,0.6);
  max-width: 480px;
  line-height: 1.8;
}

/* Menu filter tabs */
.menu-tabs {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 3rem;
}

.menu-tab {
  padding: 0.6rem 1.5rem;
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--clr-muted);
  cursor: pointer;
  transition: var(--transition);
  font-family: var(--font-jp);
}

.menu-tab:hover,
.menu-tab.active {
  background: var(--clr-accent);
  border-color: var(--clr-accent);
  color: var(--clr-bg);
}

/* Menu items grid */
.menu-section {
  margin-bottom: 4rem;
}

.menu-section-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--clr-border);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.menu-items-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.menu-item {
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  transition: var(--transition);
}

.menu-item:hover {
  border-color: rgba(201,168,76,0.3);
  transform: translateY(-3px);
}

.menu-item-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
}

.menu-item-name {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.3;
}

.menu-item-name-jp {
  font-size: 0.8rem;
  color: var(--clr-muted);
  margin-top: 0.2rem;
}

.menu-item-price {
  font-family: var(--font-en);
  font-size: 1rem;
  font-weight: 700;
  color: var(--clr-accent);
  white-space: nowrap;
}

.menu-item-desc {
  font-size: 0.82rem;
  color: var(--clr-muted);
  line-height: 1.6;
}

.menu-item-tags {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-top: 0.25rem;
}

.tag {
  display: inline-block;
  padding: 0.2rem 0.6rem;
  border-radius: 100px;
  font-size: 0.65rem;
  letter-spacing: 0.05em;
  font-weight: 600;
}

.tag-hot { background: rgba(255,80,80,0.15); color: #ff8080; }
.tag-new { background: rgba(123,95,224,0.15); color: var(--clr-neon2); }
.tag-pop { background: rgba(201,168,76,0.15); color: var(--clr-accent); }
.tag-veg { background: rgba(80,200,120,0.15); color: #80e0a0; }

/* Menu category image banners */
.menu-banner {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 300px;
  position: relative;
  margin-bottom: 2rem;
}

.menu-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.5);
  transition: transform 0.6s ease;
}

.menu-banner:hover img { transform: scale(1.04); }

.menu-banner-text {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  padding: 2rem;
  background: linear-gradient(to right, rgba(10,10,15,0.7), transparent);
}

.menu-banner-text h3 {
  font-size: 2rem;
  font-weight: 900;
}

.menu-banner-text p {
  font-size: 0.9rem;
  color: rgba(240,237,232,0.65);
  margin-top: 0.4rem;
}

/* ============================================================
   GAMING PAGE
   ============================================================ */
.gaming-hero {
  position: relative;
  height: 420px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.gaming-hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/gaming-vip.jpg');
  background-size: cover;
  background-position: center;
  filter: brightness(0.3);
}

.gaming-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,10,15,0.85) 0%, rgba(123,95,224,0.1) 100%);
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.plan-card {
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.plan-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--clr-border);
}

.plan-card.featured::before {
  background: linear-gradient(90deg, var(--clr-accent), var(--clr-neon2));
}

.plan-card:hover {
  transform: translateY(-6px);
  border-color: rgba(201,168,76,0.3);
}

.plan-card.featured {
  border-color: rgba(201,168,76,0.35);
}

.plan-badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: rgba(201,168,76,0.15);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 100px;
  font-size: 0.65rem;
  color: var(--clr-accent);
  letter-spacing: 0.1em;
  font-weight: 700;
  margin-bottom: 1.5rem;
  font-family: var(--font-en);
}

.plan-name {
  font-size: 1.4rem;
  font-weight: 900;
  margin-bottom: 0.25rem;
}

.plan-name-jp {
  font-size: 0.85rem;
  color: var(--clr-muted);
  margin-bottom: 1.5rem;
}

.plan-price {
  font-family: var(--font-en);
  font-size: 2.25rem;
  font-weight: 900;
  color: var(--clr-accent);
  line-height: 1;
}

.plan-price span {
  font-size: 0.8rem;
  color: var(--clr-muted);
  font-weight: 400;
}

.plan-divider {
  border: none;
  border-top: 1px solid var(--clr-border);
  margin: 1.5rem 0;
}

.plan-features {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.plan-feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: var(--clr-muted);
}

.plan-feature-check {
  width: 18px; height: 18px;
  background: rgba(201,168,76,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  color: var(--clr-accent);
  flex-shrink: 0;
}

.pc-specs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.spec-card {
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: var(--transition);
}

.spec-card:hover {
  border-color: rgba(123,95,224,0.4);
  box-shadow: 0 0 20px rgba(123,95,224,0.1);
}

.spec-card-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.spec-icon {
  width: 40px; height: 40px;
  background: rgba(123,95,224,0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.spec-title {
  font-size: 1rem;
  font-weight: 700;
}

.spec-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.spec-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.82rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--clr-border);
}

.spec-row:last-child { border-bottom: none; padding-bottom: 0; }
.spec-row-label { color: var(--clr-muted); }
.spec-row-value { color: var(--clr-text); font-weight: 600; }

/* ============================================================
   CONTACTS PAGE
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 4rem;
}

.contact-info { display: flex; flex-direction: column; gap: 2rem; }

.contact-card {
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  padding: 1.5rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  transition: var(--transition);
}

.contact-card:hover { border-color: rgba(201,168,76,0.3); }

.contact-card-icon {
  width: 44px; height: 44px;
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-card-title {
  font-size: 0.7rem;
  font-family: var(--font-en);
  letter-spacing: 0.15em;
  color: var(--clr-muted);
  text-transform: uppercase;
  margin-bottom: 0.35rem;
}

.contact-card-value {
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.5;
}

.hours-grid {
  display: grid;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  color: var(--clr-muted);
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--clr-border);
}

.hours-row:last-child { border-bottom: none; padding-bottom: 0; }
.hours-row strong { color: var(--clr-text); }

/* Map */
.map-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 340px;
  border: 1px solid var(--clr-border);
  background: var(--clr-card);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.map-placeholder {
  text-align: center;
  color: var(--clr-muted);
}

.map-embed {
  width: 100%;
  height: 100%;
  border: none;
  filter: invert(0.9) hue-rotate(180deg);
  opacity: 0.75;
}

/* Contact form */
.contact-form {
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
}

.form-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.form-subtitle {
  font-size: 0.85rem;
  color: var(--clr-muted);
  margin-bottom: 2rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-label {
  display: block;
  font-size: 0.8rem;
  color: var(--clr-muted);
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.form-control {
  width: 100%;
  padding: 0.85rem 1rem;
  background: var(--clr-bg);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  color: var(--clr-text);
  font-family: var(--font-jp);
  font-size: 0.9rem;
  transition: border-color var(--transition);
  outline: none;
}

.form-control:focus {
  border-color: var(--clr-accent);
}

.form-control::placeholder { color: var(--clr-muted); opacity: 0.5; }

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

.form-notice {
  font-size: 0.75rem;
  color: var(--clr-muted);
  margin-top: 0.75rem;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--clr-bg2);
  border-top: 1px solid var(--clr-border);
  padding: 4rem 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.2fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--clr-border);
}

.footer-brand-desc {
  font-size: 0.875rem;
  color: var(--clr-muted);
  line-height: 1.8;
  margin-top: 1rem;
  max-width: 280px;
}

.footer-col-title {
  font-family: var(--font-en);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: var(--clr-accent);
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-links a {
  font-size: 0.875rem;
  color: var(--clr-muted);
  transition: color var(--transition);
}

.footer-links a:hover { color: var(--clr-text); }

.footer-hours-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-hours-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--clr-muted);
  gap: 1rem;
}

.footer-hours-row strong { color: var(--clr-text); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 0;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-copy {
  font-size: 0.8rem;
  color: var(--clr-muted);
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
}

.footer-legal a {
  font-size: 0.8rem;
  color: var(--clr-muted);
  transition: color var(--transition);
}

.footer-legal a:hover { color: var(--clr-text); }

/* ============================================================
   LEGAL PAGES
   ============================================================ */
.legal-hero {
  background: var(--clr-bg2);
  border-bottom: 1px solid var(--clr-border);
  padding: 5rem 0 3rem;
}

.legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 4rem 1.5rem;
}

.legal-content h2 {
  font-size: 1.3rem;
  font-weight: 700;
  margin: 2.5rem 0 1rem;
  color: var(--clr-accent);
}

.legal-content p {
  font-size: 0.9rem;
  color: var(--clr-muted);
  line-height: 1.9;
  margin-bottom: 1rem;
}

.legal-content ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.legal-content ul li {
  font-size: 0.9rem;
  color: var(--clr-muted);
  line-height: 1.8;
  margin-bottom: 0.4rem;
}

.legal-updated {
  font-size: 0.8rem;
  color: var(--clr-muted);
  margin-top: 0.5rem;
}

/* ============================================================
   COOKIE BANNER
   ============================================================ */
.cookie-banner {
  position: fixed;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  max-width: 520px;
  background: rgba(20,20,32,0.97);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  z-index: 9999;
  backdrop-filter: blur(20px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
  display: none;
}

.cookie-banner.show { display: block; }

.cookie-title {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.cookie-text {
  font-size: 0.8rem;
  color: var(--clr-muted);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.cookie-text a { color: var(--clr-accent); text-decoration: underline; }

.cookie-actions {
  display: flex;
  gap: 0.75rem;
}

/* ============================================================
   TOAST NOTIFICATION
   ============================================================ */
.toast {
  position: fixed;
  top: 100px;
  right: 1.5rem;
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  z-index: 9998;
  font-size: 0.875rem;
  color: var(--clr-text);
  box-shadow: var(--shadow);
  transform: translateX(120%);
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
  max-width: 320px;
}

.toast.show { transform: translateX(0); }
.toast-title { font-weight: 700; margin-bottom: 0.25rem; color: var(--clr-accent); }

/* ============================================================
   UTILITIES
   ============================================================ */
.text-center { text-align: center; }
.text-muted { color: var(--clr-muted); }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }

.neon-text { color: var(--clr-neon2); }
.gold-text { color: var(--clr-accent); }

/* Fade-in animation */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .about-grid { gap: 3rem; }
  .gaming-grid { gap: 3rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .menu-preview-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-list { display: none; }
  .nav-toggle { display: flex; }

  .hero-title { font-size: 2.5rem; }
  .section-pad { padding: 64px 0; }

  .about-grid,
  .gaming-grid,
  .contact-grid { grid-template-columns: 1fr; }

  .about-img img { height: 320px; }
  .gaming-img img { height: 280px; }

  .plans-grid { grid-template-columns: 1fr; }
  .pc-specs-grid { grid-template-columns: 1fr; }
  .menu-preview-grid { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); }

  .hero-actions { flex-direction: column; }
  .btn { width: 100%; justify-content: center; }

  .cookie-banner { left: 1rem; right: 1rem; bottom: 1rem; }
}

@media (max-width: 480px) {
  .container { padding: 0 1rem; }
  .site-header { padding: 0 1rem; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .menu-items-grid { grid-template-columns: 1fr; }
}
