:root{
  --bg:#020617;
  --card:#0b1220;
  --line:rgba(255,255,255,.08);
  --txt:#e5e7eb;
  --muted:#9ca3af;
  --accent:#fbbf24;
  --radius:22px;
}

*{box-sizing:border-box}
body{
  margin:0;
  background:var(--bg);
  color:var(--txt);
  font-family: system-ui,-apple-system,Segoe UI,Roboto,Helvetica,Arial;
}

.web-wrap{
  max-width:1100px;
  margin:0 auto;
  padding:16px;
}

/* HERO */
.web-hero{
  position:relative;
  height:260px;
  border-radius:var(--radius);
  overflow:hidden;
  background:linear-gradient(180deg,#0b1220,#020617);
}
.hero-img{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  opacity:.45;
}
.web-hero::after{
  content:'';
  position:absolute;
  inset:0;
  background:linear-gradient(180deg,rgba(0,0,0,.15),rgba(0,0,0,.85));
}

.web-brand{
  position:absolute;
  bottom:20px;
  left:20px;
  display:flex;
  gap:14px;
  align-items:center;
  z-index:2;
}

.web-logo{
  width:56px;
  height:56px;
  border-radius:14px;
  background:#111;
  border:1px solid var(--line);
  display:flex;
  align-items:center;
  justify-content:center;
}
.web-logo img{
  max-width:100%;
  max-height:100%;
  object-fit:contain;
}

.web-title{
  font-size:22px;
  font-weight:900;
}
.web-tagline{
  font-size:13px;
  color:var(--muted);
  margin-top:4px;
}

/* CARD */
.web-card{
  margin-top:14px;
  padding:14px 16px;
  background:var(--card);
  border:1px solid var(--line);
  border-radius:var(--radius);
}
.info-row{
  font-size:13px;
  margin:4px 0;
}

/* ACTIONS */
.web-actions{
  display:flex;
  gap:10px;
  margin:16px 0;
}
.web-actions a{
  flex:1;
  text-align:center;
  padding:12px;
  border-radius:16px;
  font-weight:900;
  text-decoration:none;
}
.btn-primary{
  background:linear-gradient(135deg,#fbbf24,#f59e0b);
  color:#111;
}
.btn-secondary{
  border:1px solid var(--line);
  background:#020617;
  color:var(--txt);
}

/* SECTIONS */
.web-section{margin-top:20px}
.section-head{
  display:flex;
  justify-content:space-between;
  align-items:center;
}
.section-title{font-weight:900}
.section-link{
  font-size:13px;
  color:var(--accent);
  text-decoration:none;
}

.grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:10px;
  margin-top:10px;
}
@media(min-width:720px){
  .grid{grid-template-columns:repeat(3,1fr)}
}
.grid-item{
  padding:14px;
  background:var(--card);
  border:1px solid var(--line);
  border-radius:16px;
}
.item-name{font-weight:800}
.item-price{font-size:12px;color:var(--muted);margin-top:4px}

/* BOTTOM NAV */
.web-bottom-nav{
  position:sticky;
  bottom:12px;
  display:flex;
  gap:10px;
  margin-top:24px;
}
.web-bottom-nav a{
  flex:1;
  text-align:center;
  padding:12px;
  border-radius:16px;
  background:#020617;
  border:1px solid var(--line);
  color:var(--txt);
  text-decoration:none;
  font-weight:800;
}
.section-title{
  font-weight:900;
  font-size:16px;
  margin-bottom:8px;
}
.section-text{
  color:var(--muted);
  font-size:14px;
  line-height:1.6;
}

.web-section{
  margin-top:22px;
}

.web-section.highlight{
  background:linear-gradient(180deg,#0b1220,#020617);
  padding:16px;
  border-radius:18px;
  border:1px solid var(--line);
}

.activity-list{
  padding-left:18px;
  margin:10px 0 0;
}
.activity-list li{
  margin:6px 0;
  font-size:13px;
  color:#e5e7eb;
}

.web-actions.soft a{
  font-size:14px;
}

.web-card.info{
  font-size:13px;
  line-height:1.6;
}
/* =========================
   MENU PAGE
========================= */

.menu-header{
  margin:12px 0 18px;
}
.menu-header h1{
  font-size:18px;
  font-weight:900;
}
.menu-header p{
  color:var(--muted);
  font-size:13px;
  margin-top:4px;
}

.menu-grid{
  display:grid;
  grid-template-columns:repeat(auto-fill,minmax(160px,1fr));
  gap:14px;
}

.menu-card{
  background:linear-gradient(180deg,#0b1220,#020617);
  border:1px solid rgba(255,255,255,.08);
  border-radius:18px;
  overflow:hidden;
  display:flex;
  flex-direction:column;
}

.menu-img{
  aspect-ratio:1/1;
  background:#020617;
}
.menu-img img{
  width:100%;
  height:100%;
  object-fit:cover;
}
.img-placeholder{
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:36px;
  color:#9ca3af;
  height:100%;
}

.menu-body{
  padding:12px;
  display:flex;
  flex-direction:column;
  gap:8px;
}

.menu-body h3{
  font-size:14px;
  font-weight:900;
  line-height:1.3;
}

.menu-desc{
  font-size:12px;
  color:#9ca3af;
  line-height:1.4;
  min-height:32px;
}

.menu-meta{
  display:flex;
  justify-content:space-between;
  align-items:center;
}
.menu-meta .price{
  font-weight:900;
  color:#fbbf24;
}
.menu-meta .badge{
  font-size:11px;
  padding:4px 8px;
  border-radius:999px;
  background:rgba(251,191,36,.15);
  color:#fbbf24;
  font-weight:800;
}

.menu-actions{
  margin-top:6px;
}
.btn-order{
  display:block;
  text-align:center;
  padding:10px;
  border-radius:14px;
  background:linear-gradient(135deg,#fbbf24,#f59e0b);
  color:#111827;
  font-weight:900;
  text-decoration:none;
}
.btn-order:hover{
  filter:brightness(1.05);
}

.menu-empty{
  color:#9ca3af;
  font-size:14px;
}
.join-hero{
  padding:24px 0;
}
.join-hero h1{
  font-size:20px;
  font-weight:900;
}
.join-hero p{
  color:#9ca3af;
  font-size:14px;
}

.level-row{
  display:flex;
  gap:12px;
  overflow-x:auto;
}
.level-card{
  min-width:120px;
  background:#020617;
  border:1px solid rgba(255,255,255,.08);
  border-radius:16px;
  padding:12px;
  text-align:center;
}
.level-card img{
  width:42px;
  height:42px;
}
.level-name{
  font-weight:900;
  margin-top:6px;
}
.level-pts{
  font-size:12px;
  color:#fbbf24;
}

.benefit-list{
  padding-left:18px;
}
.benefit-list li{
  margin:6px 0;
  font-size:13px;
}

.join-form{
  display:flex;
  flex-direction:column;
  gap:10px;
}
.join-form input{
  padding:12px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.12);
  background:#020617;
  color:#fff;
}
.join-form button{
  padding:12px;
  border-radius:14px;
  background:linear-gradient(135deg,#fbbf24,#f59e0b);
  border:0;
  font-weight:900;
}
.contact-page {
  padding: 40px 20px;
}

.contact-header {
  margin-bottom: 30px;
}

.contact-header h1 {
  font-size: 26px;
  margin-bottom: 6px;
}

.contact-header p {
  opacity: .8;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(240px,1fr));
  gap: 18px;
}

.contact-card {
  background: #020617;
  border-radius: 16px;
  padding: 18px;
  border: 1px solid rgba(255,255,255,.06);
}

.contact-card h3 {
  font-size: 16px;
  margin-bottom: 10px;
}

.contact-card p {
  font-size: 14px;
  opacity: .85;
}

.btn {
  display: inline-block;
  margin-top: 10px;
  padding: 10px 14px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
}

.btn.whatsapp {
  background: #22c55e;
  color: #020617;
}

.btn.outline {
  border: 1px solid #334155;
  color: #e5e7eb;
}

.social-links a {
  display: block;
  margin-top: 6px;
  color: #fbbf24;
  text-decoration: none;
}

.badge.verified {
  display: inline-block;
  background: #16a34a;
  color: #020617;
  padding: 6px 12px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 12px;
}


.badge-role{
  background:#22c55e;
  color:#022c22;
  padding:2px 8px;
  border-radius:999px;
  font-size:11px;
  margin-left:6px;
  font-weight:800;
}
.btn-order.disabled{
  opacity:.45;
  cursor:not-allowed;
}

/* FORCE BUTTON CLICK */
.menu-card,
.menu-card * {
  pointer-events: auto !important;
}

.menu-card {
  position: relative;
  z-index: 5;
}

.menu-card button {
  position: relative;
  z-index: 10;
  pointer-events: auto !important;
}
