:root{
  --bg:#0f172a;
  --card:#ffffff;
  --soft:#f8fafc;
  --line:#e2e8f0;
  --text:#0f172a;
  --muted:#64748b;
  --primary:#2563eb;
  --primary-2:#7c3aed;
  --success:#16a34a;
  --warning:#f59e0b;
  --danger:#dc2626;
  --shadow:0 15px 40px rgba(15,23,42,.12);
  --radius:22px;
}

*{font-family:'Inter',sans-serif;}
body{
  background:linear-gradient(180deg,#e0e7ff 0%,#f8fafc 40%,#eef2ff 100%);
  color:var(--text);
  min-height:100vh;
}
.app-shell{
  max-width:520px;
  margin:0 auto;
  padding:18px 14px 90px;
}
.mobile-header{
  background:linear-gradient(135deg,var(--bg),#1e293b 60%,#312e81);
  color:#fff;
  border-radius:28px;
  padding:22px 18px;
  box-shadow:var(--shadow);
  margin-bottom:18px;
}
.mobile-header h1{
  font-size:1.35rem;
  font-weight:800;
  margin:0;
}
.mobile-header p{
  margin:8px 0 0;
  color:rgba(255,255,255,.8);
  font-size:.92rem;
}
.card-ui{
  background:var(--card);
  border:1px solid rgba(255,255,255,.7);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  padding:16px;
}
.menu-grid{
  display:grid;
  gap:14px;
}
.menu-item{
  display:flex;
  align-items:center;
  gap:14px;
  text-decoration:none;
  color:var(--text);
  background:#fff;
  border-radius:24px;
  padding:16px;
  box-shadow:var(--shadow);
  border:1px solid #eef2ff;
}
.menu-icon{
  width:52px;
  height:52px;
  border-radius:16px;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#fff;
  font-size:1.2rem;
  font-weight:800;
  background:linear-gradient(135deg,var(--primary),var(--primary-2));
}
.menu-item h3{
  margin:0;
  font-size:1rem;
  font-weight:700;
}
.menu-item p{
  margin:4px 0 0;
  color:var(--muted);
  font-size:.85rem;
}
.form-label{
  font-size:.88rem;
  font-weight:700;
  color:#334155;
}
.form-control,.form-select{
  min-height:48px;
  border-radius:14px;
  border:1px solid var(--line);
}
textarea.form-control{min-height:90px;}
.btn-primary-modern{
  background:linear-gradient(135deg,var(--primary),var(--primary-2));
  border:none;
  min-height:50px;
  border-radius:16px;
  font-weight:700;
}
.btn-soft{
  background:#eef2ff;
  color:#3730a3;
  border:none;
  border-radius:14px;
  min-height:46px;
  font-weight:700;
}
.credit-card{
  background:#fff;
  border:1px solid #e2e8f0;
  border-radius:20px;
  padding:14px;
  margin-bottom:12px;
}
.credit-card .title{
  font-weight:800;
  font-size:1rem;
}
.credit-meta{
  font-size:.85rem;
  color:var(--muted);
}
.badge-status{
  border-radius:999px;
  padding:6px 10px;
  font-size:.75rem;
  font-weight:800;
}
.badge-pending{background:#fff7ed;color:#c2410c;}
.badge-paid{background:#ecfdf5;color:#15803d;}
.amount-box{
  background:#f8fafc;
  border-radius:18px;
  padding:12px;
  border:1px solid #e2e8f0;
}
.ticket-box{
  background:#fff;
  max-width:360px;
  margin:0 auto;
  padding:18px;
  color:#000;
}
.small-muted{font-size:.82rem;color:var(--muted);}