:root {
  --bg: #050505;
  --surface: #111111;
  --surface-light: #1a1a1a;
  --border: rgba(255, 255, 255, 0.08);
  --neon: #ccff00;
  --neon-dim: rgba(204, 255, 0, 0.15);
  --text: #ffffff;
  --text-muted: #888888;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, .brand-text {
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  line-height: 1.1;
}

a { text-decoration: none; color: inherit; transition: 0.3s ease; }

/* Navbar */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  background: rgba(5, 5, 5, 0.8);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  z-index: 100;
  padding: 1rem 5%;
}

.nav-content {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand { display: flex; align-items: center; gap: 12px; }
.brand-icon {
  background: var(--neon);
  color: #000;
  font-family: 'Oswald', sans-serif;
  font-size: 24px;
  font-weight: 700;
  font-style: italic;
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 4px;
  transform: skew(-10deg);
}
.brand-text { font-size: 18px; letter-spacing: 1px; display: flex; flex-direction: column; line-height: 1; }
.brand-text span { color: var(--neon); font-size: 12px; letter-spacing: 3px; }

.nav-links { display: flex; align-items: center; gap: 32px; font-size: 14px; font-weight: 500; }
.nav-links a:hover { color: var(--neon); }
.btn-outline {
  border: 1px solid var(--border);
  padding: 8px 16px;
  border-radius: 100px;
}
.btn-outline:hover { border-color: var(--neon); color: var(--neon); }

/* Hero */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  padding: 120px 5% 60px;
  overflow: hidden;
}

.glow-orb {
  position: absolute;
  top: 20%; left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 600px;
  background: var(--neon);
  filter: blur(200px);
  opacity: 0.15;
  z-index: -1;
}

.hero-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 2;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 24px;
}
.pill span { width: 8px; height: 8px; background: var(--neon); border-radius: 50%; box-shadow: 0 0 10px var(--neon); }

.hero h1 {
  font-size: clamp(3rem, 8vw, 6.5rem);
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}
.hero h1 span { color: var(--neon); }

.hero p {
  font-size: 1.125rem;
  color: var(--text-muted);
  max-width: 600px;
  margin-bottom: 40px;
}

.hero-actions { display: flex; gap: 16px; align-items: center; }

.btn-solid {
  background: var(--neon);
  color: #000;
  padding: 16px 32px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.btn-solid:hover { background: #fff; transform: translateY(-2px); }

.btn-ghost {
  color: var(--text);
  font-weight: 600;
  font-size: 15px;
  padding: 16px;
}
.btn-ghost:hover { color: var(--neon); }

.bento-hero {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 900px;
  margin: 60px auto 0;
  width: 100%;
}
.bento-box {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 24px;
  border-radius: 16px;
  text-align: center;
}
.bento-box h3 { font-size: 2.5rem; color: var(--neon); margin-bottom: 8px; }
.bento-box p { color: var(--text-muted); font-size: 0.875rem; text-transform: uppercase; letter-spacing: 1px; font-weight: 600; }

/* Sections */
.section { padding: 120px 5%; max-width: 1400px; margin: 0 auto; }
.section-header { margin-bottom: 60px; }
.section-header.center { text-align: center; }
.outline-text {
  font-size: clamp(4rem, 10vw, 8rem);
  color: transparent;
  -webkit-text-stroke: 1px var(--border);
  line-height: 0.8;
  margin-bottom: -20px;
  user-select: none;
}
.section h2 { font-size: clamp(2.5rem, 5vw, 4rem); letter-spacing: -0.02em; }
.subtitle { color: var(--text-muted); font-size: 1.125rem; margin-top: 16px; }

/* Bento Grid */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.bento-grid.three-cols { grid-template-columns: repeat(3, 1fr); }

.bento-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 40px;
  transition: 0.3s ease;
  display: flex;
  flex-direction: column;
}
.bento-card:hover { border-color: var(--neon); transform: translateY(-4px); }
.bento-card.highlight { background: var(--neon); color: #000; border-color: var(--neon); }

.card-top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 40px; }
.tag { font-size: 12px; font-weight: 600; letter-spacing: 1px; padding: 6px 12px; border: 1px solid currentColor; border-radius: 100px; }
.icon { font-family: 'Oswald', sans-serif; font-size: 24px; opacity: 0.5; }

.bento-card h3 { font-size: 2rem; margin-bottom: 16px; }
.bento-card p { color: var(--text-muted); font-size: 1rem; }
.bento-card.highlight p { color: rgba(0,0,0,0.7); }

.bento-card.minimal { padding: 32px; }
.bento-card.minimal h3 { font-size: 1.5rem; color: var(--neon); margin-bottom: 12px; }

/* Split Layout */
.dark-section { max-width: 100%; padding-left: 0; padding-right: 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.split-layout { display: grid; grid-template-columns: 1fr 1fr; }
.split-text { padding: 120px 10%; }
.feature-list { list-style: none; margin-top: 40px; }
.feature-list li { border-bottom: 1px solid var(--border); padding: 24px 0; display: flex; flex-direction: column; gap: 8px; }
.feature-list strong { font-size: 1.25rem; font-family: 'Oswald', sans-serif; color: var(--neon); letter-spacing: 1px; }
.feature-list span { color: var(--text-muted); }

.split-visual {
  background: var(--surface);
  border-left: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  position: relative;
  overflow: hidden;
}
.big-location {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(4rem, 8vw, 8rem);
  line-height: 0.9;
  color: var(--bg);
  -webkit-text-stroke: 1px rgba(255,255,255,0.1);
  text-align: center;
}
.big-location span { color: var(--neon); font-size: 2rem; -webkit-text-stroke: 0; letter-spacing: 10px; display: block; margin-top: 10px; }

/* Contact Section */
.contact-section { padding: 120px 5%; max-width: 1200px; margin: 0 auto; }
.contact-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
}
.contact-info { padding: 60px; background: rgba(255,255,255,0.02); }
.contact-info h2 { font-size: 3rem; margin-bottom: 16px; }
.contact-info p { color: var(--text-muted); margin-bottom: 40px; }
.contact-methods { display: flex; flex-direction: column; gap: 24px; }
.method { display: flex; flex-direction: column; gap: 8px; }
.method span { font-size: 12px; font-weight: 600; color: var(--text-muted); letter-spacing: 1px; }
.method strong { font-size: 1.125rem; color: var(--neon); }

.contact-form { padding: 60px; display: flex; flex-direction: column; gap: 24px; }
.input-group { display: flex; flex-direction: column; gap: 8px; }
.input-group label { font-size: 12px; font-weight: 600; letter-spacing: 1px; color: var(--text-muted); }
.input-group input, .input-group select {
  background: var(--bg);
  border: 1px solid var(--border);
  padding: 16px;
  border-radius: 8px;
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  outline: none;
  transition: 0.3s ease;
}
.input-group input:focus, .input-group select:focus { border-color: var(--neon); }
.full-width { width: 100%; text-align: center; justify-content: center; margin-top: 16px; cursor: pointer; }

/* Footer */
footer { border-top: 1px solid var(--border); padding: 40px 5%; }
.footer-content { max-width: 1400px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 24px; }
.footer-links { text-align: right; color: var(--text-muted); font-size: 0.875rem; }

/* Responsive */
@media (max-width: 1024px) {
  .bento-grid, .contact-card, .split-layout { grid-template-columns: 1fr; }
  .split-visual { min-height: 400px; border-left: none; border-top: 1px solid var(--border); }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .bento-hero { grid-template-columns: 1fr; }
  .hero { padding-top: 160px; }
  .bento-card, .contact-info, .contact-form { padding: 32px; }
  .outline-text { display: none; }
  .footer-content { flex-direction: column; text-align: center; }
  .footer-links { text-align: center; }
}

/* Identidad textual oficial de Arena */
.brand-logo { display:flex; flex-direction:column; align-items:center; line-height:1; color:#fff; min-width:145px; text-decoration:none; }
.navbar .brand-logo { align-items:flex-start; }
.brand-mark { position:relative; color:var(--neon); font-family:'Oswald',sans-serif; font-style:italic; font-weight:700; font-size:36px; height:32px; line-height:32px; letter-spacing:-7px; transform:skew(-11deg); }
.brand-mark::after { content:''; position:absolute; left:-12px; bottom:4px; width:54px; height:4px; background:var(--neon); border-radius:100%; transform:rotate(-12deg); }
.brand-dot { position:absolute; width:8px; height:8px; border-radius:50%; background:var(--neon); top:8px; left:31px; }
.brand-name { font-family:'Oswald',sans-serif; color:#fff; font-size:25px; letter-spacing:3px; font-weight:700; font-style:italic; transform:skew(-8deg); margin-top:4px; }
.brand-subtitle { color:var(--neon); font-family:'Inter',sans-serif; font-size:8px; letter-spacing:2.05px; font-weight:600; margin-top:5px; white-space:nowrap; }

footer .brand-logo { align-items: center; margin-bottom: 20px; }
@media (max-width: 768px) {
    .navbar .brand-logo { transform: scale(0.9); transform-origin: left center; }
}

/* Large Image Logo Styles */
.brand-img-large { height: 160px; width: auto; object-fit: contain;  }
.navbar { padding: 10px 5%; align-items: flex-start; }
.nav-content { align-items: center; }

footer .brand-img-large { height: 200px; margin-bottom: 20px; }

@media (max-width: 768px) {
  .brand-img-large { height: 100px;  }
  .navbar { padding: 15px 5%; }
  footer .brand-img-large { height: 140px; }
}

/* Center and enlarge logo in navbar */
.navbar {
  position: absolute; /* so it doesn't cover the screen when scrolling */
  background: transparent;
  border-bottom: none;
  padding-top: 40px;
}
.nav-content {
  flex-direction: column;
  justify-content: center;
  gap: 25px;
}
.brand-img-large {
  height: 250px; /* Much larger */
}
.nav-links {
  gap: 40px;
  background: rgba(0,0,0,0.4);
  padding: 12px 30px;
  border-radius: 100px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.1);
}

/* Make "Opening Soon" massive and highly visible */
.hero-pill {
  font-size: 26px !important;
  padding: 18px 40px !important;
  background: var(--neon) !important;
  color: #000 !important;
  font-weight: 800 !important;
  letter-spacing: 2.5px !important;
  border: 4px solid #fff !important;
  box-shadow: 0 15px 50px rgba(204, 255, 0, 0.4) !important;
  margin-bottom: 40px !important;
  text-transform: uppercase;
}
.hero-pill span {
  background: #000 !important;
  width: 14px !important;
  height: 14px !important;
  box-shadow: none !important;
}

/* Adjust hero spacing since navbar is larger and absolute */
.hero {
  padding-top: 380px;
}

@media (max-width: 768px) {
  .brand-img-large { height: 160px; }
  .hero-pill { font-size: 18px !important; padding: 14px 24px !important; }
  .hero { padding-top: 260px; }
}
