/* ===========================
   MAFIA GAME — DARK CINEMATIC
   =========================== */

:root {
  --bg: #0a0a0f;
  --surface: #12121c;
  --surface2: #1a1a28;
  --surface3: #22223a;
  --border: #2a2a44;
  --border2: #3a3a5a;
  --accent: #c9263e;
  --accent2: #e8374f;
  --accent-glow: rgba(201,38,62,0.35);
  --gold: #d4a843;
  --gold-glow: rgba(212,168,67,0.3);
  --blue: #3a7bd5;
  --green: #2ecc71;
  --purple: #8e44ad;
  --text: #e8e8f0;
  --text2: #9898b8;
  --text3: #5a5a7a;
  --radius: 14px;
  --radius-sm: 8px;
  --shadow: 0 8px 32px rgba(0,0,0,0.5);
  --shadow-lg: 0 16px 48px rgba(0,0,0,0.7);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Cairo', 'Tajawal', sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
}

/* ===== BACKGROUND ===== */
.bg-overlay {
  position: fixed; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 10%, rgba(201,38,62,0.07) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 80% 90%, rgba(58,123,213,0.06) 0%, transparent 60%),
    radial-gradient(ellipse 100% 100% at 50% 50%, #0d0d18 0%, #0a0a0f 100%);
  pointer-events: none;
}

.particles {
  position: fixed; inset: 0; z-index: 0; pointer-events: none; overflow: hidden;
}

.particle {
  position: absolute;
  border-radius: 50%;
  animation: float linear infinite;
  opacity: 0;
}

@keyframes float {
  0%   { transform: translateY(100vh) scale(0); opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 0.5; }
  100% { transform: translateY(-10vh) scale(1); opacity: 0; }
}

/* ===== SOUND TOGGLE ===== */
.sound-toggle {
  position: fixed; top: 16px; left: 16px; z-index: 999;
  background: var(--surface2); border: 1px solid var(--border);
  color: var(--text2); border-radius: 50%; width: 44px; height: 44px;
  font-size: 1.2rem; cursor: pointer; transition: all 0.2s;
}
.sound-toggle:hover { background: var(--surface3); color: var(--text); }
.sound-toggle.muted { opacity: 0.4; }

/* ===== PAGES ===== */
.page { display: none; min-height: 100vh; position: relative; z-index: 1; }
.page.active { display: block; animation: fadeInPage 0.4s ease; }

@keyframes fadeInPage {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ===== TOAST ===== */
.toast {
  position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%);
  background: var(--surface3); border: 1px solid var(--border2);
  color: var(--text); padding: 12px 24px; border-radius: 50px;
  font-size: 0.95rem; z-index: 9999; opacity: 0;
  transition: opacity 0.3s, transform 0.3s;
  pointer-events: none; white-space: nowrap;
  box-shadow: var(--shadow);
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(-6px); }
.toast.success { border-color: var(--green); color: var(--green); }
.toast.error   { border-color: var(--accent); color: var(--accent); }

/* ===== MODAL ===== */
.modal-backdrop {
  display: none; position: fixed; inset: 0; z-index: 8000;
  background: rgba(0,0,0,0.8); backdrop-filter: blur(6px);
  align-items: center; justify-content: center;
}
.modal-backdrop.open { display: flex; }
.modal {
  background: var(--surface); border: 1px solid var(--border2);
  border-radius: var(--radius); max-width: 680px; width: 95%;
  max-height: 85vh; overflow-y: auto; padding: 32px;
  position: relative; box-shadow: var(--shadow-lg);
  animation: modalIn 0.3s cubic-bezier(0.34,1.56,0.64,1);
}
@keyframes modalIn {
  from { transform: scale(0.8); opacity: 0; }
  to   { transform: scale(1);   opacity: 1; }
}
.modal-close {
  position: absolute; top: 16px; left: 16px;
  background: var(--surface3); border: 1px solid var(--border);
  color: var(--text2); border-radius: 50%; width: 32px; height: 32px;
  cursor: pointer; font-size: 0.85rem; transition: all 0.2s;
}
.modal-close:hover { color: var(--accent); border-color: var(--accent); }

/* HOW TO PLAY MODAL */
.howto-title { font-size: 1.8rem; font-weight: 900; color: var(--gold); margin-bottom: 8px; text-align: center; }
.howto-sub   { text-align: center; color: var(--text2); margin-bottom: 24px; }
.role-card {
  background: var(--surface2); border: 1px solid var(--border);
  border-radius: var(--radius-sm); padding: 16px; margin-bottom: 12px;
  display: flex; gap: 14px; align-items: flex-start;
  transition: border-color 0.2s;
}
.role-card:hover { border-color: var(--border2); }
.role-emoji { font-size: 2rem; }
.role-info h4 { font-weight: 700; margin-bottom: 4px; }
.role-info p  { color: var(--text2); font-size: 0.9rem; line-height: 1.6; }
.mafia-card   { border-color: rgba(201,38,62,0.4); }
.citizen-card { border-color: rgba(46,204,113,0.3); }
.special-card { border-color: rgba(212,168,67,0.3); }

/* ===== CONFIRM ===== */
.confirm-backdrop {
  display: none; position: fixed; inset: 0; z-index: 9000;
  background: rgba(0,0,0,0.7); backdrop-filter: blur(4px);
  align-items: center; justify-content: center;
}
.confirm-backdrop.open { display: flex; }
.confirm-box {
  background: var(--surface); border: 1px solid var(--border2);
  border-radius: var(--radius); padding: 28px 32px; max-width: 400px; width: 90%;
  text-align: center; box-shadow: var(--shadow-lg);
  animation: modalIn 0.25s ease;
}
.confirm-box p { font-size: 1.05rem; margin-bottom: 20px; line-height: 1.6; }
.confirm-btns  { display: flex; gap: 12px; justify-content: center; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 10px 20px; border-radius: var(--radius-sm); font-family: 'Cairo', sans-serif;
  font-size: 0.95rem; font-weight: 700; cursor: pointer; border: none;
  transition: all 0.2s; text-decoration: none; user-select: none;
}
.btn:disabled { opacity: 0.4; cursor: not-allowed; }
.btn:active:not(:disabled) { transform: scale(0.97); }

.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: #fff; box-shadow: 0 4px 20px var(--accent-glow);
}
.btn-primary:hover:not(:disabled) { box-shadow: 0 6px 28px rgba(201,38,62,0.55); transform: translateY(-1px); }

.btn-add {
  background: linear-gradient(135deg, #2563eb, #3b82f6);
  color: #fff; box-shadow: 0 4px 16px rgba(37,99,235,0.3);
}
.btn-add:hover:not(:disabled) { transform: translateY(-1px); }

.btn-danger { background: var(--accent); color: #fff; }
.btn-danger:hover:not(:disabled) { background: var(--accent2); }

.btn-success { background: var(--green); color: #fff; }
.btn-success:hover:not(:disabled) { filter: brightness(1.1); }

.btn-ghost {
  background: var(--surface3); color: var(--text2);
  border: 1px solid var(--border);
}
.btn-ghost:hover:not(:disabled) { background: var(--surface2); color: var(--text); }

.btn-info {
  background: rgba(58,123,213,0.15); color: var(--blue);
  border: 1px solid rgba(58,123,213,0.3);
}
.btn-info:hover:not(:disabled) { background: rgba(58,123,213,0.25); }

.btn-big  { padding: 14px 32px; font-size: 1.1rem; border-radius: 50px; }
.btn-sm   { padding: 7px 14px; font-size: 0.85rem; }
.btn-next { margin-top: 20px; width: 100%; }

/* ===== SETUP PAGE ===== */
.setup-container {
  max-width: 680px; margin: 0 auto; padding: 40px 20px 80px;
}

.logo-area { text-align: center; margin-bottom: 40px; }
.logo-icon  { font-size: 4rem; animation: pulse 3s ease-in-out infinite; }
@keyframes pulse {
  0%,100% { transform: scale(1); filter: drop-shadow(0 0 10px rgba(201,38,62,0.4)); }
  50%      { transform: scale(1.08); filter: drop-shadow(0 0 22px rgba(201,38,62,0.7)); }
}
.logo-title {
  font-size: 3.2rem; font-weight: 900; letter-spacing: 6px;
  background: linear-gradient(135deg, #fff 30%, var(--gold) 70%, var(--accent) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  margin-bottom: 6px;
}
.logo-sub { color: var(--text2); font-size: 1rem; letter-spacing: 2px; }

.setup-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 20px; padding: 32px; box-shadow: var(--shadow-lg);
}

.field-group { margin-bottom: 28px; }
.field-group > label {
  display: block; color: var(--text2); font-size: 0.9rem; font-weight: 700;
  margin-bottom: 10px; letter-spacing: 0.5px;
}

input[type="text"] {
  width: 100%; background: var(--surface2); border: 1px solid var(--border);
  color: var(--text); border-radius: var(--radius-sm); padding: 12px 16px;
  font-family: 'Cairo', sans-serif; font-size: 1rem; outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
input[type="text"]:focus {
  border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-glow);
}
input[type="text"]::placeholder { color: var(--text3); }

.player-input-row { display: flex; gap: 10px; margin-bottom: 14px; }
.player-input-row input { flex: 1; }

/* Player cards */
.players-list {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 10px;
}

.player-card {
  background: var(--surface2); border: 1px solid var(--border);
  border-radius: var(--radius-sm); padding: 12px;
  display: flex; align-items: center; gap: 10px;
  animation: cardIn 0.3s cubic-bezier(0.34,1.56,0.64,1);
  position: relative;
}
@keyframes cardIn {
  from { transform: scale(0.7); opacity: 0; }
  to   { transform: scale(1);   opacity: 1; }
}
.player-avatar { font-size: 1.8rem; flex-shrink: 0; }
.player-name   { font-weight: 700; font-size: 0.9rem; flex: 1; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.player-del {
  background: none; border: none; color: var(--text3); cursor: pointer;
  font-size: 1rem; padding: 2px; transition: color 0.2s; line-height: 1;
}
.player-del:hover { color: var(--accent); }

/* Settings */
.settings-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
}
.setting-item { background: var(--surface2); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 14px 16px; }
.setting-item.full { grid-column: 1 / -1; }

.toggle-label {
  display: flex; align-items: center; gap: 12px; cursor: pointer;
  font-size: 0.9rem;
}
.toggle-label input[type="checkbox"] { display: none; }
.toggle-slider {
  width: 40px; height: 22px; background: var(--surface3); border-radius: 50px;
  position: relative; transition: background 0.25s; flex-shrink: 0;
  border: 1px solid var(--border2);
}
.toggle-slider::after {
  content: ''; position: absolute; width: 16px; height: 16px;
  background: var(--text3); border-radius: 50%; top: 2px; right: 2px;
  transition: transform 0.25s, background 0.25s;
}
input:checked + .toggle-slider { background: rgba(201,38,62,0.2); border-color: var(--accent); }
input:checked + .toggle-slider::after { transform: translateX(-18px); background: var(--accent); }

.number-control {
  display: flex; align-items: center; gap: 16px; margin-top: 8px;
}
.num-btn {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--surface3); border: 1px solid var(--border2);
  color: var(--text); font-size: 1.2rem; cursor: pointer;
  transition: all 0.2s; display: flex; align-items: center; justify-content: center;
}
.num-btn:hover { background: var(--accent); border-color: var(--accent); }
#mafiaCount { font-size: 1.5rem; font-weight: 900; color: var(--accent); min-width: 24px; text-align: center; }

.setup-actions { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; margin-top: 8px; }

/* ===== HOST PANEL ===== */
.host-panel {
  background: linear-gradient(135deg, rgba(212,168,67,0.08), rgba(212,168,67,0.03));
  border: 1px solid rgba(212,168,67,0.25); border-radius: var(--radius);
  padding: 16px 20px; margin-top: 24px;
}
.host-panel-title { color: var(--gold); font-weight: 700; font-size: 0.9rem; margin-bottom: 6px; }
.host-panel-text  { color: var(--text2); font-size: 0.9rem; line-height: 1.7; }

/* ===== ASSIGN PAGE ===== */
.game-container {
  max-width: 900px; margin: 0 auto; padding: 40px 20px 80px;
}
.game-header { text-align: center; margin-bottom: 32px; }
.game-header h2 { font-size: 2rem; font-weight: 900; margin-bottom: 8px; }
.game-sub { color: var(--text2); }

.roles-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 16px;
  margin-bottom: 28px;
}

.role-player-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 20px; text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
  animation: cardIn 0.35s cubic-bezier(0.34,1.56,0.64,1);
}
.role-player-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.role-player-card.mafia   { border-color: rgba(201,38,62,0.5); background: rgba(201,38,62,0.05); }
.role-player-card.citizen { border-color: rgba(46,204,113,0.3); background: rgba(46,204,113,0.03); }
.role-player-card.special { border-color: rgba(212,168,67,0.4); background: rgba(212,168,67,0.04); }

.rpc-avatar { font-size: 2.5rem; margin-bottom: 8px; }
.rpc-name   { font-weight: 700; font-size: 1rem; margin-bottom: 12px; }
.rpc-role   { display: inline-flex; align-items: center; gap: 6px; padding: 6px 14px; border-radius: 50px; font-size: 0.85rem; font-weight: 700; }
.rpc-role.mafia   { background: rgba(201,38,62,0.2); color: var(--accent2); border: 1px solid rgba(201,38,62,0.4); }
.rpc-role.citizen { background: rgba(46,204,113,0.15); color: var(--green); border: 1px solid rgba(46,204,113,0.3); }
.rpc-role.special { background: rgba(212,168,67,0.15); color: var(--gold); border: 1px solid rgba(212,168,67,0.3); }

.assign-actions { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; margin-top: 16px; }

/* ===== NIGHT PAGE ===== */
.night-header { text-align: center; padding: 40px 20px 24px; }
.night-icon   { font-size: 3.5rem; margin-bottom: 10px; animation: nightFloat 4s ease-in-out infinite; }
@keyframes nightFloat {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-10px); }
}
.night-header h2 { font-size: 2rem; font-weight: 900; color: #b8b8e0; }
.round-badge {
  display: inline-block; background: var(--surface3); border: 1px solid var(--border2);
  color: var(--text2); padding: 4px 16px; border-radius: 50px; font-size: 0.85rem; margin-top: 8px;
}

.phase-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 20px; padding: 28px; margin: 0 auto 24px;
  max-width: 680px; box-shadow: var(--shadow-lg);
  animation: fadeInPage 0.4s ease;
}

.phase-role-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 18px; border-radius: 50px; font-size: 0.85rem; font-weight: 700;
  margin-bottom: 16px;
}
.phase-role-badge.mafia   { background: rgba(201,38,62,0.15); color: var(--accent2); border: 1px solid rgba(201,38,62,0.35); }
.phase-role-badge.citizen { background: rgba(46,204,113,0.1); color: var(--green); border: 1px solid rgba(46,204,113,0.25); }
.phase-role-badge.special { background: rgba(212,168,67,0.1); color: var(--gold); border: 1px solid rgba(212,168,67,0.25); }
.phase-role-badge.detective { background: rgba(58,123,213,0.1); color: #60a5fa; border: 1px solid rgba(58,123,213,0.25); }

.phase-title {
  font-size: 1.4rem; font-weight: 900; margin-bottom: 10px; line-height: 1.4;
}
.phase-instruction {
  color: var(--text2); font-size: 0.95rem; line-height: 1.8; margin-bottom: 20px;
  background: var(--surface2); border-radius: var(--radius-sm); padding: 14px;
  border-right: 3px solid var(--gold);
}

/* Phase players list */
.phase-players { display: flex; flex-direction: column; gap: 8px; margin-bottom: 16px; }

.phase-player-btn {
  display: flex; align-items: center; gap: 12px;
  background: var(--surface2); border: 1px solid var(--border);
  border-radius: var(--radius-sm); padding: 12px 16px; cursor: pointer;
  transition: all 0.2s; font-family: 'Cairo', sans-serif; font-size: 0.95rem;
  color: var(--text); width: 100%; text-align: right;
}
.phase-player-btn:hover:not(:disabled) { background: var(--surface3); border-color: var(--border2); transform: translateX(-3px); }
.phase-player-btn.selected {
  border-color: var(--accent); background: rgba(201,38,62,0.1);
  box-shadow: 0 0 0 2px var(--accent-glow);
}
.phase-player-btn:disabled { opacity: 0.3; cursor: not-allowed; transform: none; }
.ppb-avatar { font-size: 1.4rem; }
.ppb-name   { font-weight: 700; flex: 1; }
.ppb-check  { font-size: 1.2rem; opacity: 0; transition: opacity 0.2s; }
.phase-player-btn.selected .ppb-check { opacity: 1; }

/* Result */
.phase-result {
  background: var(--surface2); border-radius: var(--radius-sm); padding: 16px;
  border-right: 3px solid var(--gold); margin-bottom: 16px;
  font-size: 1rem; line-height: 1.7; color: var(--text);
}
.phase-result .highlight-mafia   { color: var(--accent2); font-weight: 700; }
.phase-result .highlight-citizen { color: var(--green); font-weight: 700; }
.phase-result .highlight-special { color: var(--gold); font-weight: 700; }

/* Confirm */
.phase-confirm { margin-top: 16px; text-align: center; }
.phase-confirm p { margin-bottom: 12px; color: var(--text2); }
.phase-confirm strong { color: var(--text); font-size: 1.1rem; }

/* Traitor choice */
.traitor-choice { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; margin-top: 16px; }

/* ===== VOTE PAGE ===== */
.night-summary {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 18px 22px; margin-bottom: 24px;
  font-size: 0.95rem; line-height: 1.8; color: var(--text2);
}
.night-summary strong { color: var(--text); }
.night-summary .dead-tag  { color: var(--accent2); }
.night-summary .alive-tag { color: var(--green); }

.vote-instruction {
  text-align: center; color: var(--text2); margin-bottom: 20px; font-size: 0.95rem;
}

.vote-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 16px;
  margin-bottom: 28px;
}

.vote-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 18px; position: relative;
}
.vote-card.eliminated {
  opacity: 0.4; pointer-events: none;
  border-style: dashed;
}
.vote-card-header { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.vote-avatar { font-size: 1.8rem; }
.vote-name   { font-weight: 700; font-size: 1rem; }
.vote-label  { font-size: 0.78rem; color: var(--text3); margin-top: 2px; }

.vote-options { display: flex; flex-wrap: wrap; gap: 6px; }
.vote-opt {
  padding: 5px 12px; border-radius: 50px; font-size: 0.82rem; font-weight: 700;
  cursor: pointer; background: var(--surface2); border: 1px solid var(--border);
  color: var(--text2); transition: all 0.18s; font-family: 'Cairo', sans-serif;
}
.vote-opt:hover   { background: var(--surface3); color: var(--text); border-color: var(--border2); }
.vote-opt.voted   { background: rgba(201,38,62,0.2); color: var(--accent2); border-color: var(--accent); }
.vote-opt.abstain { background: var(--surface2); color: var(--text3); }

.vote-tally { font-size: 0.78rem; color: var(--text3); margin-top: 10px; }
.vote-actions { text-align: center; }

/* ===== RESULT PAGE ===== */
.result-container {
  max-width: 600px; margin: 0 auto; padding: 80px 20px;
  text-align: center;
}
.result-icon  { font-size: 5rem; margin-bottom: 16px; animation: resultPop 0.5s cubic-bezier(0.34,1.56,0.64,1); }
@keyframes resultPop {
  from { transform: scale(0); } to { transform: scale(1); }
}
.result-title { font-size: 2.5rem; font-weight: 900; margin-bottom: 12px; }
.result-sub   { color: var(--text2); font-size: 1rem; margin-bottom: 32px; line-height: 1.7; }

.result-roles {
  display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 32px;
}
.result-role-chip {
  display: flex; align-items: center; gap: 8px; padding: 8px 16px;
  border-radius: 50px; font-size: 0.9rem; font-weight: 700;
  background: var(--surface2); border: 1px solid var(--border);
}
.result-role-chip.mafia   { border-color: rgba(201,38,62,0.4); color: var(--accent2); }
.result-role-chip.citizen { border-color: rgba(46,204,113,0.3); color: var(--green); }
.result-role-chip.special { border-color: rgba(212,168,67,0.3); color: var(--gold); }

/* ===== PHASE ICON ===== */
.phase-icon { font-size: 2.5rem; margin-bottom: 8px; }

/* ===== ALIVE INDICATOR ===== */
.alive-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--green); display: inline-block; margin-right: 4px;
  animation: blink 2s infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.3} }

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--surface3); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--border2); }

/* ===== MOBILE ===== */
@media (max-width: 600px) {
  .logo-title { font-size: 2.2rem; letter-spacing: 3px; }
  .setup-card { padding: 20px; }
  .settings-grid { grid-template-columns: 1fr; }
  .roles-grid { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); }
  .vote-grid  { grid-template-columns: 1fr; }
  .game-container, .setup-container { padding: 24px 14px 80px; }
  .btn-big { padding: 12px 24px; font-size: 1rem; }
  .phase-card { padding: 18px; }
}

/* ===== GLOW EFFECTS ===== */
.glow-red  { box-shadow: 0 0 20px var(--accent-glow); }
.glow-gold { box-shadow: 0 0 20px var(--gold-glow); }

/* ===== ANIMATED REVEAL ===== */
@keyframes revealRole {
  0%   { transform: rotateY(90deg); opacity: 0; }
  100% { transform: rotateY(0deg); opacity: 1; }
}
.role-reveal { animation: revealRole 0.5s ease forwards; }

/* night transition */
.night-bg-active { background: rgba(0,0,8,0.7); }
