/* ============================================================
   MINEMEV — BASE STYLESHEET
   Dark editorial-gamer aesthetic
   Fonts: Bebas Neue (display) + DM Mono (labels) + DM Sans (body)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=DM+Mono:ital,wght@0,300;0,400;0,500;1,300&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;1,9..40,300&display=swap');

/* ── CSS Variables ──────────────────────────────────────────── */
:root {
  --bg-base:      #0d0e10;
  --bg-surface:   #13151a;
  --bg-raised:    #1a1d24;
  --bg-overlay:   #21252e;

  --border:       #2a2e38;
  --border-focus: #3d4455;

  --text-primary:   #e8eaf0;
  --text-secondary: #8a8fa0;
  --text-muted:     #4a4f60;

  --accent:         #7fff00;   /* chartreuse — vivid, not overused */
  --accent-dim:     #4db300;
  --accent-glow:    rgba(127, 255, 0, 0.15);
  --accent-subtle:  rgba(127, 255, 0, 0.07);

  --danger:   #ff4040;
  --warning:  #ffb340;
  --info:     #40a8ff;

  --radius-sm:  4px;
  --radius-md:  8px;
  --radius-lg:  14px;

  --font-display: 'Bebas Neue', sans-serif;
  --font-mono:    'DM Mono', monospace;
  --font-body:    'DM Sans', sans-serif;

  --nav-height:   52px;
  --transition:   0.18s ease;
}

/* ── Reset & Base ───────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

::-webkit-scrollbar { width: 5px; height: 5px; }
::-webkit-scrollbar-track { background: var(--bg-base); }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 99px; }
::-webkit-scrollbar-thumb:hover { background: var(--border-focus); }
* { scrollbar-width: thin; scrollbar-color: var(--border) var(--bg-base); }

html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html, body {
  background-color: var(--bg-base);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-weight: 400;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Subtle dot-grid texture on the root */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: radial-gradient(circle, var(--text-muted) 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: 0.04;
  pointer-events: none;
  z-index: 0;
}

a {
  text-decoration: none;
  color: var(--text-primary);
  transition: color var(--transition);
}
a:hover { color: var(--accent); }

/* ── Typography Helpers ─────────────────────────────────────── */
.display { font-family: var(--font-display); letter-spacing: 0.04em; }
.mono    { font-family: var(--font-mono); }

/* ── NAV BAR ────────────────────────────────────────────────── */
.nav_bar {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  background: rgba(13, 14, 16, 0.92);
  backdrop-filter: blur(16px) saturate(1.2);
  -webkit-backdrop-filter: blur(16px) saturate(1.2);
  border-bottom: 1px solid var(--border);
  gap: 0;
}

/* Logo */
.logo_pic {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  transition: transform 1.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  stroke: var(--accent);
}
.logo_pic:hover { transform: rotate(360deg); }

/* Nav links group */
.links {
  display: flex;
  align-items: stretch;
  height: 100%;
  margin-right: auto;
}

.links a {
  display: flex;
  align-items: center;
  gap: 6px;
  height: 100%;
  padding: 0 14px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-secondary);
  border-bottom: 2px solid transparent;
  transition: color var(--transition), border-color var(--transition), background var(--transition);
  white-space: nowrap;
}
.links a:first-child {
  font-family: var(--font-display);
  font-size: 20px;
  letter-spacing: 0.08em;
  color: var(--text-primary);
  padding: 0 18px 0 0;
  margin-right: 4px;
  border-right: 1px solid var(--border);
}
.links a:first-child:hover { color: var(--accent); border-bottom-color: transparent; }

.links a:hover {
  color: var(--text-primary);
  background: var(--accent-subtle);
}
.links a.link_on {
  color: var(--accent);
  border-bottom-color: var(--accent);
  background: var(--accent-subtle);
}

/* Right side: download strip */
.download_section {
  display: flex;
  align-items: stretch;
  height: 32px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin-left: 16px;
}

.download_section a {
  display: flex;
  align-items: center;
  padding: 0 14px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-secondary);
  border-right: 1px solid var(--border);
  transition: background var(--transition), color var(--transition);
}
.download_section a:last-child { border-right: none; }
.download_section a:hover {
  background: var(--accent);
  color: var(--bg-base);
}
.download_section a span { display: none; }

/* Night mode toggle */
.night_mode {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  cursor: pointer;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  margin-left: 10px;
  flex-shrink: 0;
  transition: border-color var(--transition), background var(--transition);
}
.night_mode:hover {
  border-color: var(--accent);
  background: var(--accent-subtle);
}
.night_mode svg { display: block; }

/* Language select */
.language_select {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 8px;
  height: 36px;
}
.language_select select {
  height: 36px;
  background-color: var(--bg-raised);
  color: var(--text-secondary);
  border: 1px solid var(--border);
  padding: 0 10px;
  border-radius: var(--radius-sm);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  outline: none;
  transition: border-color var(--transition), color var(--transition);
}
.language_select select:hover { border-color: var(--border-focus); color: var(--text-primary); }
.language_select select:focus { border-color: var(--accent); }
.language_select option { background-color: var(--bg-raised); color: var(--text-primary); }

/* Profile section (right) */
.profile_tag {
  display: flex;
  align-items: center;
  gap: 4px;
  height: 100%;
  margin: 0 10px;
  
}

.bubbles {
  display: flex;
  align-items: center;
  height: 100%;
  gap: 2px;
}
.bubbles svg,
.bubbles a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  cursor: pointer;
  transition: border-color var(--transition), background var(--transition);
}
.bubbles svg:hover,
.bubbles a:hover { border-color: var(--border); background: var(--bg-raised); }

#bellIcon { cursor: pointer; }

.profile_menu {
  display: flex;
  align-items: center;
  height: 100%;
  cursor: pointer;
}
.profile_menu img {
  width: 34px;
  height: 34px;
  border-radius: var(--radius-sm);
  object-fit: cover;
  border: 1px solid var(--border);
  transition: border-color var(--transition);
}
.profile_menu img:hover { border-color: var(--accent); }

/* Login button */
.login_button {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 34px;
  padding: 0 14px;
  margin-left: 10px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-secondary);
  transition: border-color var(--transition), color var(--transition), background var(--transition);
}
.login_button:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-subtle);
}

/* ── MOBILE HAMBURGER ───────────────────────────────────────── */
.hidden_submenu {
  display: none;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  cursor: pointer;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  flex-shrink: 0;
  transition: border-color var(--transition);
}
.hidden_submenu:hover { border-color: var(--accent); }
.hidden_submenu svg { stroke: var(--text-secondary); }

/* Mobile dropdown nav */
.links_submenu {
  position: fixed;
  top: var(--nav-height);
  left: 0;
  width: 240px;
  z-index: 99;
  display: none;
  flex-direction: column;
  background: var(--bg-surface);
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 8px 0;
  
}
.links_submenu a {
  display: flex;
  align-items: center;
  padding: 12px 20px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-secondary);
  border-left: 2px solid transparent;
  transition: all var(--transition);
}
.links_submenu a:hover,
.links_submenu a.link_on {
  color: var(--accent);
  border-left-color: var(--accent);
  background: var(--accent-subtle);
}

/* ── PROFILE DROPDOWN ───────────────────────────────────────── */
.sub-menu-wrap {
  position: fixed;
  z-index: 98;
  top: var(--nav-height);
  right: 0;
  width: 240px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}
.sub-menu-wrap.open-menu { max-height: 600px; }

.sub-menu {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-top: none;
  padding: 16px 0 8px;
  display: flex;
  flex-direction: column;
}

.user-info {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 16px 16px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 8px;
}
.user-info h2 {
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--text-primary);
  letter-spacing: 0.04em;
}
.foto_perfil {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  object-fit: cover;
  border: 1px solid var(--border);
  flex-shrink: 0;
}

/* Publish button */
.publish {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  margin: 4px 12px 8px;
  border-radius: var(--radius-sm);
  background: var(--accent);
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
}
.publish:hover { background: var(--accent-dim); }
.publish:active { transform: translateY(1px); }
.publish h2 {
  font-family: var(--font-display);
  font-size: 16px;
  letter-spacing: 0.06em;
  color: var(--bg-base);
}
.publish svg { stroke: var(--bg-base); }

/* Selection links */
.selection {
  display: block;
  padding: 10px 16px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-secondary);
  border-left: 2px solid transparent;
  transition: all var(--transition);
}
.selection:hover {
  color: var(--text-primary);
  border-left-color: var(--border-focus);
  background: var(--bg-raised);
}

/* Logout button */
.logout {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  margin: 8px 12px 4px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  cursor: pointer;
  transition: border-color var(--transition), background var(--transition);
}
.logout:hover { border-color: var(--danger); background: rgba(255, 64, 64, 0.06); }
.logout:active { transform: translateY(1px); }
.logout h2 {
  font-family: var(--font-display);
  font-size: 16px;
  letter-spacing: 0.06em;
  color: var(--text-secondary);
}
.logout:hover h2 { color: var(--danger); }
.logout svg { stroke: var(--text-muted); flex-shrink: 0; }
.logout:hover svg { stroke: var(--danger); }

.otros { display: flex; flex-direction: column; }

/* ── NOTIFICATIONS ──────────────────────────────────────────── */
.notification_bar {
  position: fixed;
  width: 320px;
  max-height: 520px;
  overflow-y: auto;
  z-index: 97;
  right: 12px;
  top: calc(var(--nav-height) + 8px);
  display: none;
  flex-direction: column;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
}
.notification_bar.show { display: flex; }

.notif_buttons {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  border-bottom: 1px solid var(--border);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
}
.notif_buttons p { color: var(--text-secondary); }
.notif_buttons button {
  background: transparent;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 4px 8px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  cursor: pointer;
  transition: all var(--transition);
}
.notif_buttons button:hover { border-color: var(--accent); color: var(--accent); }

.notification {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-bottom: 1px solid var(--border);
  cursor: pointer;
  transition: background var(--transition);
}
.notification:hover { background: var(--bg-raised); }
.notification p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.4;
  white-space: normal;
  word-break: break-word;
}
.notification svg { flex-shrink: 0; }

.sender_img {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  object-fit: cover;
  flex-shrink: 0;
  border: 1px solid var(--border);
}

.notification_bar > p {
  padding: 24px;
  text-align: center;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

.Notifications_bttn {
  display: block;
  text-align: center;
  padding: 12px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  border-top: 1px solid var(--border);
  transition: color var(--transition), background var(--transition);
}
.Notifications_bttn:hover { color: var(--accent); background: var(--accent-subtle); }

/* ── MAIN BODY BLOCK ────────────────────────────────────────── */
.block_body {
  flex: 1;
  min-height: calc(100vh - var(--nav-height));
  position: relative;
  z-index: 1;
}

/* ── DIALOG ─────────────────────────────────────────────────── */
dialog {
  width: min(90vw, 520px);
  max-height: 90vh;
  background: var(--bg-surface);
  color: var(--text-primary);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
}
dialog::backdrop {
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(6px);
}
dialog > svg:first-child {
  position: absolute;
  top: 16px;
  right: 16px;
  cursor: pointer;
  opacity: 0.5;
  transition: opacity var(--transition);
}
dialog > svg:first-child:hover { opacity: 1; }

#notif_dialog {
  background: var(--bg-surface);
  border: 1px solid var(--accent);
}
.notic_dialog_container { display: flex; flex-direction: column; gap: 12px; }
.notic_dialog_container h2 {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 0.04em;
  color: var(--text-primary);
}
.notic_dialog_container p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}
.notif_title {
  display: flex;
  align-items: center;
  gap: 10px;
}
.notif_title svg { stroke: var(--accent); animation: point 1s infinite; flex-shrink: 0; }

@keyframes point {
  0%   { transform: translateX(0); }
  50%  { transform: translateX(-12px) rotate(15deg); }
  100% { transform: translateX(0); }
}

/* ── COOKIES BAR ────────────────────────────────────────────── */
.cookies_bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 24px;
  background: var(--bg-overlay);
  border-top: 1px solid var(--border);
}
.cookies_bar img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  flex-shrink: 0;
}
.cookies_msg { flex: 1; }
.cookies_msg h4 {
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: 0.04em;
  color: var(--text-primary);
  margin-bottom: 2px;
}
.cookies_msg p {
  font-size: 12px;
  color: var(--text-secondary);
  line-height: 1.4;
}
.cookies_bar button {
  flex-shrink: 0;
  height: 36px;
  padding: 0 18px;
  background: var(--accent);
  color: var(--bg-base);
  border: none;
  border-radius: var(--radius-sm);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background var(--transition);
}
.cookies_bar button:hover { background: var(--accent-dim); }

/* ── FOOTER ─────────────────────────────────────────────────── */
.main-foot {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding: 48px 40px 32px;
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
  position: relative;
  z-index: 10;
  margin-top: auto;
}

/* Accent rule on footer top */
.main-foot::before {
  content: '';
  position: absolute;
  top: 0;
  left: 40px;
  right: 40px;
  height: 1px;
  background: linear-gradient(90deg, var(--accent) 0%, transparent 60%);
}

.main-foot h2 {
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: 0.06em;
  color: var(--text-primary);
  margin-bottom: 16px;
}
.main-foot a {
  display: block;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  padding: 5px 0;
  transition: color var(--transition);
}
.main-foot a:hover { color: var(--accent); }
.main-foot p {
  font-size: 11px;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 280px;
}
.foot-link { color: var(--text-secondary); display: inline; padding: 0; }
.foot-link:hover { color: var(--accent); }

#title_container {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
#title_container > div {
  display: flex;
  align-items: center;
  gap: 12px;
}
#title_container h2 {
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: 0.1em;
  color: var(--text-primary);
  margin-bottom: 0;
}
#miSvg {
  cursor: pointer;
  transition: transform var(--transition);
  stroke: var(--accent);
}
#miSvg:hover { transform: scale(1.05); }

/* ── MULTI-SELECT DROPDOWN ──────────────────────────────────── */
.custom-select-wrapper {
  position: relative;
  display: flex;
  flex-direction: row;
  border: 1px solid var(--border);
  max-height: 120px;
  border-radius: var(--radius-sm);
  padding: 6px;
  background: var(--bg-raised);
  transition: border-color var(--transition);
}
.custom-select-wrapper:focus-within { border-color: var(--border-focus); }

#selected-items {
  flex-grow: 1;
  display: flex;
  overflow-y: auto;
  gap: 5px;
  flex-wrap: wrap;
}

.selected-item {
  display: flex;
  align-items: center;
  gap: 5px;
  height: fit-content;
  background: var(--bg-overlay);
  border: 1px solid var(--border);
  padding: 4px 10px;
  border-radius: 2px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-secondary);
  white-space: nowrap;
}

.toggle-button {
  flex-shrink: 0;
  background: transparent;
  border: none;
  cursor: pointer;
  color: var(--text-muted);
  padding: 0 4px;
}
.toggle-button:hover { color: var(--text-primary); }

.dropdown-wrapper {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  z-index: 50;
  width: 100%;
  background: var(--bg-overlay);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
}

#search-bar {
  width: 100%;
  padding: 8px 12px;
  background: var(--bg-raised);
  border: none;
  border-bottom: 1px solid var(--border);
  color: var(--text-primary);
  font-family: var(--font-mono);
  font-size: 12px;
  outline: none;
  display: none;
}
#search-bar::placeholder { color: var(--text-muted); }

#options-list {
  max-height: 220px;
  display: none;
  flex-wrap: wrap;
  gap: 5px;
  padding: 10px;
  overflow-y: auto;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
}

.option-item {
  padding: 4px 10px;
  cursor: pointer;
  background: var(--bg-raised);
  border: 1px solid var(--border);
  border-radius: 2px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-secondary);
  white-space: nowrap;
  height: fit-content;
  transition: all var(--transition);
}
.option-item:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-subtle);
}

.remove {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin-left: 4px;
  width: 14px;
  height: 14px;
  opacity: 0.5;
  transition: opacity var(--transition);
}
.remove:hover { opacity: 1; }
.remove svg { width: 14px; height: 14px; stroke-width: 3px; stroke: currentColor; }

/* ── TOOLTIP ────────────────────────────────────────────────── */
.tooltip { position: relative; display: inline-block; }
.tooltip .tooltiptext {
  visibility: hidden;
  width: 120px;
  background: var(--bg-overlay);
  border: 1px solid var(--border);
  color: var(--text-secondary);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  text-align: center;
  padding: 6px 8px;
  border-radius: var(--radius-sm);
  position: absolute;
  z-index: 10;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  transition: opacity 0.2s;
  white-space: nowrap;
}
.tooltip:hover .tooltiptext { visibility: visible; opacity: 1; }

/* ── UTILITY ────────────────────────────────────────────────── */
.hidden { display: none !important; }
.show   { display: flex; }




/* ── Host Dialog Overlay ─────────────────────────────────── */
#host-dialog-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  font-family: var(--font-body);
  backdrop-filter: blur(2px);
}

.host-dialog {
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    max-width: 420px;
    display: flex;
    width: 90%;
    overflow: hidden;
    padding: 10px;
    text-align: center;
    flex-direction: column;
    gap: 10px;
}

.host-dialog__hero {
  width: 100%;
  object-fit: cover;
  display: block;
  border-radius: var(--radius-md);

}
.host-dialog__hero:nth-child(2) {
  display: none;
}


.host-dialog__logo {
  height: 36px;
  object-fit: contain;
  margin-bottom: 20px;
}

.host-dialog__title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  letter-spacing: 0.04em;
  color: var(--text-primary);
  margin: 0 0 6px;
}

.host-dialog__subtitle {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin: 0 0 24px;
}

.host-dialog__disclaimer {
  background: var(--bg-raised);
  border: 1px solid var(--border);
  border-left: 3px solid var(--warning);
  border-radius: var(--radius-md);
  padding: 12px 14px;
  margin-bottom: 24px;
  font-size: 0.78rem;
  color: var(--text-secondary);
  text-align: left;
  line-height: 1.6;
}

.host-dialog__disclaimer strong {
  color: var(--warning);
  font-weight: 600;
}

.host-dialog__actions {
  display: flex;
  gap: 10px;
  justify-content: center;
}

.host-dialog__btn {
  padding: 10px 22px;
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 0.9rem;
  cursor: pointer;
  transition: all var(--transition);
}

.host-dialog__btn--cancel {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text-secondary);
}

.host-dialog__btn--cancel:hover {
  border-color: var(--border-focus);
  color: var(--text-primary);
}

.host-dialog__btn--go {
  background: var(--accent);
  border: 1px solid var(--accent);
  color: #0d0e10;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.host-dialog__btn--go:hover {
  background: var(--accent-dim);
  border-color: var(--accent-dim);
}

.host-dialog__btn--go:active {
  transform: scale(0.97);
}



/* ── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 1000px) {
  .download_section  { display: none; }
  .night_mode        { margin-left: auto; }
}

@media (max-width: 800px) {
  .main-foot { grid-template-columns: 1fr 1fr; gap: 0px; padding: 32px 20px; }
  
}

@media (max-width: 620px) {
  .links          { display: none !important; }
  .hidden_submenu { display: flex; }
  .main-foot      { grid-template-columns: 1fr; gap: 24px; padding: 24px 16px; }
  .nav_bar        { padding: 0 12px; }
  .language_select { margin-left: 6px; }
}