/* =========================================
   NeonByte — Premium Gaming Cafe CSS
   Cyberpunk Pink & Cyan Theme
   ========================================= */

:root {
  --primary: #E040FB;
  --primary-dark: #9C27B0;
  --accent: #00E5FF;
  --accent2: #FF4081;
  --bg-dark: #080612;
  --bg-card: #110E1F;
  --bg-section: #0D0B1A;
  --text-main: #F0EEFF;
  --text-muted: #8080AA;
  --border: rgba(224,64,251,0.2);
  --border-cyan: rgba(0,229,255,0.2);
  --shadow: 0 8px 40px rgba(224,64,251,0.15);
  --gradient: linear-gradient(135deg, #E040FB, #00E5FF);
  --gradient2: linear-gradient(135deg, #FF4081, #E040FB);
  --font-head: 'Space Grotesk', sans-serif;
  --font-body: 'Inter', sans-serif;
  --radius: 16px;
  --nav-h: 74px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--bg-dark);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
}

h1,h2,h3,h4 { font-family: var(--font-head); font-weight: 700; line-height: 1.15; }
h1 { font-size: clamp(2.2rem, 5.5vw, 4rem); }
h2 { font-size: clamp(1.7rem, 3.8vw, 2.8rem); }
h3 { font-size: 1.25rem; }
p { color: var(--text-muted); }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

.gradient-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.gradient-text-2 {
  background: var(--gradient2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section-pad { padding: 100px 0; }
.dark-bg { background: var(--bg-section); }
.center-btn { text-align: center; margin-top: 48px; }
.mt-16 { margin-top: 16px; }

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 12px;
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
}
.btn-primary {
  background: var(--gradient);
  color: #fff;
  box-shadow: 0 4px 20px rgba(224,64,251,0.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(0,229,255,0.4); }
.btn-outline {
  background: transparent;
  color: var(--text-main);
  border: 2px solid rgba(224,64,251,0.5);
}
.btn-outline:hover { background: rgba(224,64,251,0.1); }

/* NAVBAR */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  transition: background 0.3s;
}
.navbar.scrolled {
  background: rgba(8,6,18,0.97);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 0 30px rgba(224,64,251,0.08);
}
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-main);
}
.nav-logo span { background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 2px;
  background: var(--gradient);
  transform: scaleX(0);
  transition: transform 0.3s;
}
.nav-links a:hover, .nav-links a.active { color: var(--primary); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
.nav-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.nav-toggle span { display: block; width: 26px; height: 2px; background: var(--text-main); border-radius: 2px; }

/* HERO */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(8,6,18,0.95) 0%, rgba(8,6,18,0.6) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  padding-top: var(--nav-h);
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(224,64,251,0.12);
  border: 1px solid rgba(224,64,251,0.3);
  color: var(--primary);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 22px;
}
.hero-content h1 { margin-bottom: 20px; }
.hero-content > p { font-size: 1.08rem; max-width: 520px; margin-bottom: 36px; color: rgba(240,238,255,0.72); }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 60px; }
.hero-stats { display: flex; gap: 44px; }
.stat span { font-family: var(--font-head); font-size: 1.9rem; font-weight: 800; background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; display: block; }
.stat p { font-size: 0.82rem; margin: 0; }
.hero-scroll { position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%); color: var(--primary); animation: bounceN 2s infinite; cursor: pointer; z-index: 2; }
@keyframes bounceN { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(8px)} }

/* SECTION HEADER */
.section-header { text-align: center; margin-bottom: 60px; }
.section-header.light p { color: rgba(240,238,255,0.65); }
.section-tag {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--primary);
  background: rgba(224,64,251,0.1);
  border: 1px solid rgba(224,64,251,0.25);
  padding: 4px 14px;
  border-radius: 50px;
  margin-bottom: 14px;
}
.section-header h2 { margin: 8px 0 14px; }

/* FEATURES */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 26px;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.feature-card:hover { transform: translateY(-6px); border-color: rgba(224,64,251,0.4); box-shadow: var(--shadow); }
.feature-icon {
  width: 54px; height: 54px;
  background: rgba(224,64,251,0.1);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--primary);
  margin-bottom: 18px;
}
.feature-card h3 { margin-bottom: 10px; color: var(--text-main); }

/* MENU */
.menu-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.menu-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; transition: transform 0.3s; }
.menu-card:hover { transform: translateY(-5px); }
.menu-img { height: 215px; background-size: cover; background-position: center; }
.menu-info { padding: 22px; }
.menu-info h3 { color: var(--text-main); margin-bottom: 8px; }
.menu-link { display: inline-flex; align-items: center; gap: 6px; color: var(--accent); font-size: 0.88rem; font-weight: 600; margin-top: 12px; transition: gap 0.2s; }
.menu-link:hover { gap: 10px; }

/* SPLIT */
.gaming-split { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.gaming-split.reverse { direction: rtl; }
.gaming-split.reverse > * { direction: ltr; }
.gaming-img-wrap { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); position: relative; }
.gaming-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.gaming-badge-float { position: absolute; bottom: 18px; right: 18px; background: var(--gradient); color: #fff; padding: 8px 16px; border-radius: 10px; font-family: var(--font-head); font-weight: 700; display: flex; align-items: center; gap: 6px; }
.gaming-text { padding: 10px 0; }
.gaming-text h2 { margin: 12px 0 18px; }
.gaming-text > p { margin-bottom: 26px; }
.spec-list { display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; }
.spec-list li { display: flex; align-items: center; gap: 10px; color: var(--text-muted); }
.spec-list li i { color: var(--primary); font-size: 0.85rem; flex-shrink: 0; }
.light-list li i { color: var(--accent); }

/* PC SPECS */
.pc-specs-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.pc-spec-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 32px 24px; text-align: center; transition: transform 0.3s, border-color 0.3s; }
.pc-spec-card:hover { transform: translateY(-5px); border-color: rgba(224,64,251,0.4); }
.tier-badge { display: inline-block; padding: 4px 14px; border-radius: 50px; font-family: var(--font-head); font-size: 0.72rem; font-weight: 700; margin-bottom: 14px; }
.tier-standard .tier-badge { background: rgba(0,229,255,0.1); color: var(--accent); border: 1px solid rgba(0,229,255,0.3); }
.tier-pro .tier-badge { background: rgba(224,64,251,0.1); color: var(--primary); border: 1px solid rgba(224,64,251,0.3); }
.tier-elite .tier-badge { background: rgba(255,64,129,0.1); color: var(--accent2); border: 1px solid rgba(255,64,129,0.3); }
.pc-spec-card h3 { margin-bottom: 18px; }
.spec-details { text-align: left; }
.spec-row { display: flex; justify-content: space-between; padding: 9px 0; border-bottom: 1px solid var(--border); font-size: 0.86rem; }
.spec-row:last-child { border-bottom: none; }
.spec-row span:first-child { color: var(--text-muted); }
.spec-row span:last-child { color: var(--text-main); font-weight: 600; }

/* EVENTS */
.events-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; }
.event-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; transition: transform 0.3s; }
.event-card:hover { transform: translateY(-4px); }
.event-card-img { height: 230px; background-size: cover; background-position: center; position: relative; }
.event-tag { position: absolute; top: 14px; left: 14px; background: var(--gradient); color: #fff; padding: 4px 12px; border-radius: 50px; font-family: var(--font-head); font-size: 0.72rem; font-weight: 700; }
.event-card-body { padding: 24px; }
.event-card-body h3 { color: var(--text-main); margin-bottom: 10px; }
.event-meta { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 14px; }
.event-meta span { display: flex; align-items: center; gap: 5px; font-size: 0.82rem; }
.event-meta i { color: var(--primary); }

/* REVIEWS */
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.review-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px 24px; }
.stars { color: #FFD700; margin-bottom: 14px; }
.review-card > p { font-style: italic; color: rgba(240,238,255,0.7); margin-bottom: 18px; font-size: 0.92rem; }
.reviewer { display: flex; align-items: center; gap: 12px; }
.avatar { width: 38px; height: 38px; background: var(--gradient); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--font-head); font-weight: 700; font-size: 0.82rem; }
.reviewer strong { color: var(--text-main); }

/* ABOUT */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.about-img { border-radius: var(--radius); overflow: hidden; }
.about-img img { width: 100%; }
.about-stats { display: flex; gap: 28px; flex-wrap: wrap; margin-top: 28px; }
.about-stats div span { font-family: var(--font-head); font-size: 1.8rem; font-weight: 800; background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; display: block; }
.about-stats div p { font-size: 0.8rem; margin: 0; }
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.team-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px 22px; text-align: center; transition: transform 0.3s; }
.team-card:hover { transform: translateY(-4px); }
.team-avatar { width: 72px; height: 72px; background: var(--gradient); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--font-head); font-size: 1.6rem; font-weight: 700; margin: 0 auto 14px; }

/* CONTACT */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; }
.contact-info { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 36px; }
.contact-item { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 20px; }
.contact-item i { color: var(--primary); font-size: 1.1rem; margin-top: 2px; flex-shrink: 0; }
.contact-item strong { display: block; color: var(--text-main); margin-bottom: 3px; }
.contact-item p { font-size: 0.88rem; margin: 0; }
.contact-form { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 36px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 0.84rem; color: var(--text-muted); margin-bottom: 7px; font-weight: 600; }
.form-group input, .form-group textarea, .form-group select { width: 100%; background: var(--bg-dark); border: 1px solid var(--border); border-radius: 10px; padding: 12px 14px; color: var(--text-main); font-family: var(--font-body); font-size: 0.92rem; transition: border-color 0.3s; outline: none; }
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(224,64,251,0.1); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select option { background: var(--bg-dark); }
.form-success { display: none; text-align: center; padding: 20px; }

/* HOURS */
.hours-table { width: 100%; border-collapse: collapse; margin-top: 14px; }
.hours-table tr { border-bottom: 1px solid var(--border); }
.hours-table td { padding: 9px 0; font-size: 0.87rem; }
.hours-table td:first-child { color: var(--text-muted); }
.hours-table td:last-child { color: var(--text-main); font-weight: 600; text-align: right; }
.hours-table tr.today td { color: var(--primary); }

/* MAP */
.map-container { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); height: 260px; margin-top: 24px; }
.map-container iframe { width: 100%; height: 100%; border: none; }

/* MENU ITEMS */
.menu-items-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.menu-item { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; transition: transform 0.3s; }
.menu-item:hover { transform: translateY(-4px); }
.menu-item-img { height: 165px; background-size: cover; background-position: center; }
.menu-item-body { padding: 16px; }
.menu-item-body h4 { color: var(--text-main); margin-bottom: 5px; font-size: 0.95rem; }
.menu-item-body p { font-size: 0.82rem; }

/* LEGAL */
.legal-content { max-width: 780px; margin: 0 auto; padding: 120px 24px 80px; }
.legal-content h1 { margin-bottom: 6px; }
.legal-content .last-updated { color: var(--text-muted); font-size: 0.88rem; margin-bottom: 44px; }
.legal-content h2 { font-size: 1.2rem; margin: 32px 0 12px; color: var(--primary); }
.legal-content p, .legal-content li { font-size: 0.93rem; line-height: 1.7; margin-bottom: 10px; }
.legal-content ul { list-style: disc; padding-left: 22px; }
.legal-content a { color: var(--primary); }

/* PAGE HERO */
.page-hero { padding: 160px 0 80px; text-align: center; position: relative; overflow: hidden; }
.page-hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 50% -10%, rgba(224,64,251,0.18) 0%, transparent 65%); }
.page-hero h1, .page-hero p { position: relative; z-index: 1; }
.page-hero p { font-size: 1.05rem; max-width: 560px; margin: 12px auto 0; }

/* MENU TABS */
.menu-tabs { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 52px; }
.menu-tab { padding: 9px 22px; border-radius: 50px; border: 1px solid var(--border); background: var(--bg-card); color: var(--text-muted); font-family: var(--font-head); font-size: 0.85rem; font-weight: 600; cursor: pointer; transition: all 0.3s; }
.menu-tab.active, .menu-tab:hover { background: var(--gradient); color: #fff; border-color: transparent; }

/* ESPORTS SHOWCASE */
.esports-showcase { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.esports-img { border-radius: var(--radius); overflow: hidden; }
.esports-img img { width: 100%; }
.esports-cards { display: flex; flex-direction: column; gap: 18px; }
.event-mini-card { display: flex; align-items: center; gap: 18px; background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 18px 22px; transition: border-color 0.3s; }
.event-mini-card:hover { border-color: rgba(224,64,251,0.4); }
.event-mini-card > i { font-size: 1.4rem; color: var(--primary); flex-shrink: 0; }
.event-mini-card h4 { color: var(--text-main); margin-bottom: 3px; }
.event-mini-card p { font-size: 0.85rem; }

/* FOOTER */
.footer { background: #050410; padding: 70px 0 0; border-top: 1px solid var(--border); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 2fr; gap: 44px; padding-bottom: 56px; }
.footer-logo { margin-bottom: 14px; }
.footer-brand p { font-size: 0.88rem; max-width: 260px; margin-bottom: 22px; }
.social-links { display: flex; gap: 10px; }
.social-links a { width: 36px; height: 36px; background: var(--bg-card); border: 1px solid var(--border); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.85rem; color: var(--text-muted); transition: all 0.3s; }
.social-links a:hover { background: var(--primary); border-color: var(--primary); color: #fff; }
.footer-links h4 { color: var(--text-main); font-family: var(--font-head); margin-bottom: 18px; font-size: 0.82rem; text-transform: uppercase; letter-spacing: 1.5px; }
.footer-links ul { display: flex; flex-direction: column; gap: 9px; }
.footer-links ul a { color: var(--text-muted); font-size: 0.88rem; transition: color 0.2s; }
.footer-links ul a:hover { color: var(--primary); }
.footer-contact h4 { color: var(--text-main); font-family: var(--font-head); margin-bottom: 18px; font-size: 0.82rem; text-transform: uppercase; letter-spacing: 1.5px; }
.footer-contact p { display: flex; align-items: flex-start; gap: 10px; font-size: 0.88rem; margin-bottom: 10px; }
.footer-contact p i { color: var(--primary); margin-top: 3px; flex-shrink: 0; }
.footer-bottom { border-top: 1px solid var(--border); padding: 22px 0; display: flex; align-items: center; justify-content: space-between; font-size: 0.82rem; color: var(--text-muted); }
.footer-legal { display: flex; gap: 22px; }
.footer-legal a { color: var(--text-muted); transition: color 0.2s; }
.footer-legal a:hover { color: var(--primary); }

/* COOKIE BANNER */
.cookie-banner { position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%); background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 18px 26px; display: flex; align-items: center; gap: 22px; max-width: 660px; width: calc(100% - 48px); z-index: 9999; box-shadow: 0 16px 48px rgba(0,0,0,0.5); transition: opacity 0.4s, transform 0.4s; }
.cookie-banner.hidden { opacity: 0; transform: translateX(-50%) translateY(20px); pointer-events: none; }
.cookie-banner p { font-size: 0.88rem; flex: 1; }
.cookie-banner a { color: var(--primary); }
.cookie-btns { display: flex; gap: 8px; flex-shrink: 0; }
.btn-cookie-accept { padding: 9px 18px; background: var(--gradient); color: #fff; border: none; border-radius: 10px; font-weight: 700; cursor: pointer; font-family: var(--font-head); font-size: 0.82rem; }
.btn-cookie-accept:hover { opacity: 0.85; }
.btn-cookie-decline { padding: 9px 18px; background: transparent; color: var(--text-muted); border: 1px solid var(--border); border-radius: 10px; font-weight: 700; cursor: pointer; font-family: var(--font-head); font-size: 0.82rem; }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .gaming-split { gap: 44px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .menu-items-grid { grid-template-columns: repeat(3, 1fr); }
  .pc-specs-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .nav-links { display: none; position: fixed; top: var(--nav-h); left: 0; right: 0; background: rgba(8,6,18,0.99); flex-direction: column; padding: 24px; gap: 20px; border-bottom: 1px solid var(--border); }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }
  .gaming-split, .gaming-split.reverse { grid-template-columns: 1fr; gap: 32px; direction: ltr; }
  .esports-showcase { grid-template-columns: 1fr; gap: 32px; }
  .menu-grid, .reviews-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .menu-items-grid { grid-template-columns: repeat(2, 1fr); }
  .pc-specs-grid { grid-template-columns: 1fr; }
  .events-grid { grid-template-columns: 1fr; }
  .contact-grid, .about-grid { grid-template-columns: 1fr; gap: 28px; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
  .cookie-banner { flex-direction: column; text-align: center; }
}
@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .features-grid { grid-template-columns: 1fr; }
  .menu-items-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 20px; flex-wrap: wrap; }
}
