:root {
  --op-orange: #ff9d00;
  --op-bg: #0a0c0f;
  --op-card-bg: rgba(15, 18, 22, 0.92);
  --op-border-dark: #2a2e33;
  --glow-green: #00ff41;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
body {
  margin: 0;
  padding: 90px 0 0 0;
  background-color: var(--op-bg);
  background-image:
    linear-gradient(to bottom, rgba(10, 12, 15, 0.02), rgba(10, 12, 15, 0.02)),
    url('background.jpg');
  background-blend-mode: multiply;
  background-attachment: fixed;
  color: #fff;
  font-family: 'Quantico', sans-serif;
  min-height: 100vh;
}
a { color: inherit; text-decoration: none; }
body > header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
  backdrop-filter: blur(10px);
  background: rgba(10,12,15,0.95);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.nav-inner {
  width: min(1200px, 94vw);
  margin: 0 auto;
  padding: 14px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}
.brand { display: flex; align-items: center; gap: 10px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; }
.brand img { width: 38px; height: 38px; object-fit: contain; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.12); border-radius: 10px; padding: 4px; box-shadow: 0 0 12px rgba(255,157,0,0.45); }
nav { display: flex; gap: 12px; flex-wrap: wrap; font-size: 0.92rem; color: #b3b9c6; }
nav a { padding: 8px 10px; border-radius: 10px; transition: 0.2s; }
nav a:hover { color: var(--op-orange); background: rgba(255,157,0,0.1); }
.actions { display: flex; gap: 8px; }
.btn { padding: 8px 12px; border-radius: 8px; border: 1px solid rgba(255,255,255,0.15); background: rgba(255,255,255,0.05); color: #fff; font-family: 'Quantico', sans-serif; cursor: pointer; transition: 0.2s; }
.btn:hover { border-color: var(--op-orange); color: var(--op-orange); }
.btn-primary { background: var(--op-orange); color: #000; border-color: transparent; }

.container { width: min(1200px, 94vw); margin: 0 auto; padding: 40px 20px; position: relative; }
.section-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 18px; }
.muted { color: #b3b9c6; font-size: 0.95rem; }
.card-grid { display: grid; gap: 16px; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.panel {
  background: var(--op-card-bg);
  border: 2px solid #2f3238;
  border-radius: 16px;
  padding: 18px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0,0,0,0.65);
}
.panel::before {
  content:"";
  position:absolute; top:-3px; left:-3px; width:26px; height:26px;
  border-top: 4px solid var(--op-orange); border-left: 4px solid var(--op-orange);
  opacity:0; transition: 0.3s;
}
.panel:hover { border-color: var(--op-orange); }
.panel:hover::before { opacity: 1; }
.badge { display: inline-flex; align-items: center; gap: 6px; padding: 6px 10px; background: rgba(255,157,0,0.14); border: 1px solid rgba(255,157,0,0.4); color: var(--op-orange); border-radius: 8px; font-size: 0.9rem; }
.avatar { width: 56px; height: 56px; border-radius: 12px; object-fit: cover; border: 2px solid rgba(255,255,255,0.15); }
.stat-title { font-size: 1rem; letter-spacing: 1px; color: #fff; text-transform: uppercase; }
.stat-value { font-size: 1.6rem; font-weight: 700; color: var(--op-orange); }
.stat-name { font-size: 1rem; font-weight: 600; }
.hero-block { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 18px; align-items: center; }
.bomb-box {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 14px;
  align-items: center;
  padding: 18px;
  border: 2px solid var(--op-border-dark);
  background: linear-gradient(135deg, rgba(15,18,22,0.92), rgba(15,18,22,0.8));
  border-radius: 14px;
  position: relative;
  overflow: hidden;
}
.bomb {
  position: relative;
  width: 90px;
  height: 110px;
  background: radial-gradient(circle at 50% 50%, #1a1e24, #0b0d11);
  border: 2px solid #2f343c;
  border-radius: 12px;
  box-shadow: inset 0 0 8px rgba(0,0,0,0.6);
}
.bomb-led {
  position: absolute;
  top: 12px; left: 50%; transform: translateX(-50%);
  width: 22px; height: 22px; border-radius: 50%;
  background: #a00; box-shadow: 0 0 8px rgba(255,0,0,0.6);
}
.timer {
  position: absolute;
  bottom: 10px; left: 50%; transform: translateX(-50%);
  font-family: 'Roboto Mono', monospace;
  font-size: 1.2rem;
  color: #0f0;
}
.bomb-flash { animation: flash 0.25s infinite; }
.bomb-static { animation: none !important; }
@keyframes flash { 0%,50% { box-shadow: 0 0 10px rgba(255,0,0,0.8); } 51%,100% { box-shadow: 0 0 2px rgba(255,0,0,0.2); } }
@keyframes flashFrame { 0% { box-shadow: 0 0 0 0 rgba(255,0,0,0.5);} 100% { box-shadow: 0 0 25px 8px rgba(255,0,0,0);} }
.flash-frame { animation: flashFrame 0.6s ease-out; }

h1, h2, h3 { letter-spacing: 0.5px; text-transform: uppercase; color: var(--op-orange); }
h1 { font-size: clamp(2rem, 3vw, 2.8rem); }
h2 { font-size: clamp(1.6rem, 2.5vw, 2.2rem); }
h3 { font-size: clamp(1.3rem, 2vw, 1.6rem); }
section { padding: 40px 0; }
.hero { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; align-items: center; padding: 40px 0 10px; }
.hero-slim { padding: 28px 0 6px; text-align: center; }
.hero .hero-metrics { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 12px; margin-top: 16px; }
.hero-card { background: linear-gradient(145deg, rgba(255,157,0,0.08), rgba(255,255,255,0.02)); border: 1px solid rgba(255,255,255,0.1); border-radius: 14px; padding: 16px; box-shadow: 0 10px 30px rgba(0,0,0,0.5); }
.muted { color: #b3b9c6; }
.pill { display: inline-flex; align-items: center; gap: 8px; padding: 6px 10px; border-radius: 999px; border: 1px solid rgba(255,255,255,0.1); color: #b3b9c6; font-size: 0.9rem; }
.grid { display: grid; gap: 14px; }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); }
.metric { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: 12px; padding: 12px; }
.metric .label { color: #b3b9c6; font-size: 0.85rem; }
.metric .value { font-size: 1.2rem; font-weight: 700; color: #fff; margin-top: 6px; }
.info-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 14px; }
.info-card { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08); border-radius: 12px; padding: 14px; box-shadow: 0 10px 24px rgba(0,0,0,0.35); }
.info-card strong { color: var(--op-orange); letter-spacing: 0.6px; }
.leader-card { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08); border-radius: 12px; padding: 14px; display: grid; grid-template-columns: 70px 1fr; gap: 12px; align-items: center; }
.leader-card img { width: 70px; height: 70px; border-radius: 14px; object-fit: cover; border: 2px solid rgba(255,157,0,0.6); }
.leader-card .title { font-size: 0.95rem; color: #b3b9c6; }
.leader-card .name { font-weight: 700; font-size: 1.05rem; }
.leader-card .stat { color: var(--op-orange); font-weight: 700; }

table { width: 100%; border-collapse: collapse; }
th, td { padding: 10px 8px; text-align: left; }
th { color: #b3b9c6; font-size: 0.9rem; border-bottom: 1px solid rgba(255,255,255,0.08); }
tbody tr { border-bottom: 1px solid rgba(255,255,255,0.05); }
tbody tr:hover { background: rgba(255,255,255,0.03); }

.input { width: 100%; padding: 10px; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.12); border-radius: 10px; color: #fff; margin-bottom: 10px; font-size: 1rem; }
.tag { display: inline-flex; align-items: center; gap: 6px; padding: 6px 10px; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.12); border-radius: 10px; color: #b3b9c6; font-size: 0.9rem; }
.hidden { display: none !important; }

.modal { position: fixed; inset: 0; background: rgba(0,0,0,0.7); display: none; align-items: center; justify-content: center; z-index: 200; padding: 16px; }
.modal.active { display: flex; }
.modal-box { background: var(--op-card-bg); border: 1px solid rgba(255,255,255,0.1); border-radius: 14px; padding: 18px; width: min(420px, 90vw); box-shadow: 0 18px 50px rgba(0,0,0,0.65); }

.toast { position: fixed; bottom: 18px; left: 50%; transform: translateX(-50%); padding: 10px 14px; border-radius: 10px; background: rgba(0,0,0,0.8); border: 1px solid rgba(255,255,255,0.12); color: #fff; opacity: 0; transition: opacity 0.25s ease; z-index: 300; }
.toast.ok { border-color: #2ecc71; color: #2ecc71; }
.toast.err { border-color: #e74c3c; color: #e74c3c; }

.profile { display: grid; grid-template-columns: 260px 1fr; gap: 16px; }
.avatar-box { position: relative; width: 140px; height: 140px; border-radius: 20px; overflow: hidden; border: 2px solid rgba(255,255,255,0.15); margin-bottom: 12px; box-shadow: 0 10px 24px rgba(0,0,0,0.5); }
.avatar-box img { width: 100%; height: 100%; object-fit: cover; }
.avatar-box button { position: absolute; bottom: 8px; right: 8px; padding: 6px 8px; font-size: 0.85rem; background: rgba(0,0,0,0.7); border: 1px solid rgba(255,255,255,0.12); border-radius: 8px; color: #fff; cursor: pointer; }

.footer-contact { margin: 40px auto 20px; padding: 18px; width: min(1200px, 94vw); }
.footer-contact .info-grid { margin-top: 8px; }

.op-title { text-align: center; margin: 24px 0 36px; display: flex; flex-direction: column; align-items: center; gap: 10px; }
.op-title h1 { font-size: 3rem; color: var(--op-orange); letter-spacing: 8px; text-transform: uppercase; margin: 0; text-shadow: 0 0 20px rgba(255,157,0,0.35); background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08); padding: 12px 18px; display: inline-block; border-radius: 10px; }
.op-title p { font-family: 'Roboto Mono', monospace; color: #aaa; letter-spacing: 2px; font-size: 0.9rem; margin: 0; border: 1px solid rgba(255,255,255,0.1); display: inline-block; padding: 10px 18px; background: rgba(255,255,255,0.05); border-radius: 6px; }

.floating-whatsapp {
  position: fixed;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 120;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: #25d366;
  padding: 16px;
  background: rgba(0,0,0,0.6);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.5);
}
.floating-whatsapp i { font-size: 48px; }
.floating-whatsapp span { font-family: 'Roboto Mono', monospace; color: #d8dce3; font-size: 0.85rem; }

@media (max-width: 780px) {
  .floating-whatsapp { display: none; }
}

@media (max-width: 960px) {
  body { padding-top: 260px; }
  .nav-inner { flex-direction: column; align-items: flex-start; }
  nav { width: 100%; }
  .actions { width: 100%; justify-content: flex-start; }
  .profile { grid-template-columns: 1fr; }
}
