/* ===========================================================
   GigaCode Academy — Design System
   Friendly light (Duolingo × Wordle) — светло, тепло, позитивно
   =========================================================== */

:root {
  /* Colors */
  --bg: #FFF8ED;
  --bg-2: #FFF2DC;
  --surface: #FFFFFF;
  --surface-soft: #F7F4EC;
  --border: #E7E0D1;
  --border-strong: #D9CFB8;

  --ink: #1F2933;
  --ink-muted: #5B6670;
  --ink-dim: #8A94A0;

  --brand: #4F46E5;
  --brand-soft: #EEF2FF;
  --brand-ink: #312E81;

  --success: #58CC02;
  --success-shadow: #4DAD00;
  --success-soft: #E7F8D1;

  --streak: #FF9600;
  --streak-soft: #FFE7C2;

  --heart: #FF4B4B;
  --heart-soft: #FFD9D9;

  --info: #1CB0F6;
  --info-soft: #E1F5FE;

  /* Spacing */
  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 32px;
  --space-2xl: 48px;
  --space-3xl: 64px;

  /* Radius */
  --radius-sm: 10px;
  --radius-md: 14px;
  --radius-lg: 18px;
  --radius-xl: 24px;

  /* Shadows */
  --shadow-pushable: 0 4px 0 var(--border-strong);
  --shadow-chip: 0 2px 0 var(--border);
  --shadow-card: 0 2px 0 var(--border), 0 8px 20px -12px rgba(47, 37, 17, .2);
  --shadow-inset: inset 0 -3px 0 rgba(0, 0, 0, .04);
}

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

html, body {
  min-height: 100vh;
  background: var(--bg);
  color: var(--ink);
  font-family: 'Nunito', system-ui, -apple-system, sans-serif;
  font-weight: 600;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Fredoka', system-ui, sans-serif;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--ink);
}
h1 { font-size: 32px; }
h2 { font-size: 24px; }
h3 { font-size: 20px; }
h4 { font-size: 16px; }

p { margin: 0 0 var(--space-md); }

code, pre, .mono {
  font-family: 'JetBrains Mono', 'SF Mono', Menlo, monospace;
  font-weight: 500;
  font-size: 0.92em;
}
code { background: var(--surface-soft); padding: 2px 6px; border-radius: 6px; color: var(--brand-ink); }
pre {
  background: var(--surface-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  overflow-x: auto;
  line-height: 1.5;
}
pre code { background: transparent; padding: 0; }

a { color: var(--brand); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ===========================================================
   HUD (header)
   =========================================================== */

.hud {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 14px 24px;
  background: rgba(255, 248, 237, .85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  position: sticky; top: 0; z-index: 10;
}

.hud-left, .hud-right { display: flex; align-items: center; gap: 12px; }

.brand {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: 'Fredoka'; font-weight: 700; color: var(--ink);
  font-size: 18px;
}
.brand:hover { text-decoration: none; }
.brand-logo {
  width: 36px; height: 36px; border-radius: 12px;
  background: var(--success); color: #fff;
  display: grid; place-items: center; font-weight: 700; font-size: 22px;
  box-shadow: 0 3px 0 var(--success-shadow);
}
.brand-name em { font-style: normal; color: var(--brand); font-weight: 700; }

.chip {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 16px; border-radius: 14px;
  background: var(--surface);
  font-family: 'Nunito'; font-weight: 800; font-size: 15px;
  box-shadow: 0 2px 0 var(--border);
  transition: transform 140ms, box-shadow 140ms;
}
.chip svg { width: 18px; height: 18px; }
.chip.xp { color: var(--success); box-shadow: 0 2px 0 var(--success-shadow); }
.chip.streak { color: var(--streak); box-shadow: 0 2px 0 #D47B00; }
.chip.hearts { color: var(--heart); box-shadow: 0 2px 0 #D63333; }
.chip-label { font-weight: 600; color: var(--ink-muted); font-size: 12px; }

.chip.bounce { animation: xpBounce 400ms cubic-bezier(.17, .67, .3, 1.3); }
@keyframes xpBounce {
  0% { transform: scale(1); }
  50% { transform: scale(1.2); }
  100% { transform: scale(1); }
}

/* ===========================================================
   Layout
   =========================================================== */

.app-container {
  max-width: 1120px;
  margin: 0 auto;
  padding: var(--space-xl) var(--space-lg);
}

/* ===========================================================
   Buttons (pushable)
   =========================================================== */

.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 24px; border-radius: 16px;
  font-family: 'Fredoka'; font-weight: 700; font-size: 16px;
  transition: transform 140ms, box-shadow 140ms, filter 140ms;
  cursor: pointer; border: 0;
}
.btn:disabled { opacity: .5; cursor: not-allowed; }

.btn-primary {
  background: var(--success);
  color: #fff;
  box-shadow: 0 4px 0 var(--success-shadow);
}
.btn-primary:not(:disabled):hover { transform: translateY(-1px); box-shadow: 0 5px 0 var(--success-shadow); filter: brightness(1.04); }
.btn-primary:not(:disabled):active { transform: translateY(2px); box-shadow: 0 2px 0 var(--success-shadow); }

.btn-secondary {
  background: #fff;
  color: var(--ink);
  box-shadow: 0 4px 0 var(--border-strong);
}
.btn-secondary:not(:disabled):hover { transform: translateY(-1px); box-shadow: 0 5px 0 var(--border-strong); }
.btn-secondary:not(:disabled):active { transform: translateY(2px); box-shadow: 0 2px 0 var(--border-strong); }

.btn-brand {
  background: var(--brand); color: #fff;
  box-shadow: 0 4px 0 #3A34B8;
}
.btn-brand:not(:disabled):hover { transform: translateY(-1px); box-shadow: 0 5px 0 #3A34B8; }

.btn:focus-visible { outline: 3px solid var(--brand); outline-offset: 2px; }

/* ===========================================================
   Cards
   =========================================================== */

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  box-shadow: var(--shadow-card);
  transition: transform 160ms;
}
@media (hover: hover) { .card:hover { transform: translateY(-2px); } }

/* ===========================================================
   Pre-card / Post-card (для уроков)
   =========================================================== */

.pre-card {
  background: var(--info-soft);
  border: 1px solid #B9E5F7;
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  margin-bottom: var(--space-lg);
}
.pre-card .pre-title {
  font-family: 'Fredoka'; font-weight: 700; font-size: 14px;
  color: var(--info); text-transform: uppercase; letter-spacing: .08em;
  margin-bottom: 6px;
}
.pre-card p { margin: 0; color: var(--ink); font-weight: 600; }
.pre-card p + p { margin-top: 8px; }

.post-card {
  background: var(--success-soft);
  border: 1px solid #C4E89D;
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  margin-top: var(--space-lg);
}
.post-card .post-title {
  font-family: 'Fredoka'; font-weight: 700; font-size: 14px;
  color: var(--success-shadow); text-transform: uppercase; letter-spacing: .08em;
  margin-bottom: 6px;
}

/* ===========================================================
   Level Shell
   =========================================================== */

.level {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  box-shadow: var(--shadow-card);
  display: flex; flex-direction: column; gap: 22px;
}
.level-top { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; }
.level-tag {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 12px; border-radius: 999px;
  background: var(--brand-soft); color: var(--brand-ink);
  font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em;
}
.level-tag .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--brand); }
.level-h { font-size: 22px; margin: 0; flex: 1; }
.level-progress {
  flex-shrink: 0;
  width: 120px; height: 10px;
  background: var(--surface-soft);
  border-radius: 999px;
  overflow: hidden;
  border: 1px solid var(--border);
}
.level-progress > span {
  display: block; height: 100%;
  background: linear-gradient(90deg, #58CC02, #4DAD00);
  border-radius: 999px;
  transition: width 300ms ease;
}

/* ===========================================================
   Progress bar (universal)
   =========================================================== */

.progress {
  height: 12px; background: var(--surface-soft);
  border-radius: 999px; overflow: hidden; border: 1px solid var(--border);
  position: relative;
}
.progress > .progress-fill {
  display: block; height: 100%;
  background: linear-gradient(90deg, #58CC02, #4DAD00);
  border-radius: 999px;
  box-shadow: inset 0 -3px 0 rgba(0, 0, 0, .08);
  transition: width 500ms cubic-bezier(.4, 0, .2, 1), background 500ms;
}
.progress.danger > .progress-fill { background: linear-gradient(90deg, var(--heart), #D63333); }
.progress.warning > .progress-fill { background: linear-gradient(90deg, var(--streak), #D47B00); }

/* ===========================================================
   Terminal styling
   =========================================================== */

.terminal {
  background: #0E1116;
  color: #E4E6EB;
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px; line-height: 1.55;
  border-radius: var(--radius-md);
  padding: 14px 18px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, .15);
  overflow-x: auto;
  white-space: pre-wrap;
  word-break: break-word;
  min-height: 200px;
  position: relative;
  transition: background 500ms;
}
.terminal.ok { background: #0F2B0F; border: 1px solid #2E6E2E; }
.terminal.warn { background: #2B1E08; border: 1px solid #8A6A1E; }
.terminal.danger { background: #2B0E0E; border: 1px solid #8A2929; }
.terminal .prompt { color: var(--success); }
.terminal .dim { color: #8A94A0; }
.terminal .err { color: #FF6666; }
.terminal .ok-text { color: #58CC02; }
.terminal .info-text { color: #1CB0F6; }
.terminal .warn-text { color: #FF9600; }

.terminal-title {
  font-size: 11px; color: var(--ink-muted);
  text-transform: uppercase; letter-spacing: .08em;
  margin-bottom: 6px; font-family: 'Fredoka'; font-weight: 600;
}

/* ===========================================================
   Chat bubble
   =========================================================== */

.chat-bubble {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 14px 18px;
  margin-bottom: 10px;
  position: relative;
  max-width: 90%;
}
.chat-bubble.agent { background: var(--brand-soft); border-color: #D9D4FC; }
.chat-bubble.user { background: var(--success-soft); border-color: #C4E89D; margin-left: auto; text-align: right; }
.chat-bubble.glitch {
  animation: glitch 300ms infinite;
}
@keyframes glitch {
  0%, 100% { transform: translateX(0); }
  20% { transform: translateX(-1px); }
  40% { transform: translateX(1px); }
  60% { transform: translateX(-1px); }
  80% { transform: translateX(2px); }
}

/* ===========================================================
   Animations
   =========================================================== */

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.05); opacity: .85; }
}
@keyframes pulseRed {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255, 75, 75, .5); }
  50% { box-shadow: 0 0 0 12px rgba(255, 75, 75, 0); }
}
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}
@keyframes shake {
  0%, 100% { transform: translateX(0); }
  10%, 30%, 50%, 70%, 90% { transform: translateX(-2px); }
  20%, 40%, 60%, 80% { transform: translateX(2px); }
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes slideInRight {
  from { opacity: 0; transform: translateX(20px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0); }
  33% { transform: translateY(-4px) rotate(-3deg); }
  66% { transform: translateY(2px) rotate(3deg); }
}

.animate-pulse { animation: pulse 1.6s ease-in-out infinite; }
.animate-pulse-red { animation: pulseRed 1.2s ease-in-out infinite; }
.animate-bounce { animation: bounce 1.8s ease-in-out infinite; }
.animate-shake { animation: shake 400ms ease-in-out; }
.animate-fade-in { animation: fadeIn 300ms ease-out; }
.animate-slide-in { animation: slideInRight 300ms ease-out; }
.animate-float { animation: float 3.2s ease-in-out infinite; }

.stagger-fade > * { opacity: 0; animation: fadeIn 300ms ease-out forwards; }
.stagger-fade > *:nth-child(1) { animation-delay: 0ms; }
.stagger-fade > *:nth-child(2) { animation-delay: 100ms; }
.stagger-fade > *:nth-child(3) { animation-delay: 200ms; }
.stagger-fade > *:nth-child(4) { animation-delay: 300ms; }
.stagger-fade > *:nth-child(5) { animation-delay: 400ms; }

/* ===========================================================
   Split screen
   =========================================================== */

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}
.split.thirty-seventy { grid-template-columns: 3fr 7fr; }
.split .side {
  background: var(--surface-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  min-height: 260px;
  transition: opacity 400ms, filter 400ms;
}
.split .side.dimmed { opacity: .4; filter: grayscale(.3); }
.split .side.highlighted { border: 2px solid var(--brand); box-shadow: 0 0 0 4px rgba(79, 70, 229, .1); }
.split .side-title {
  font-family: 'Fredoka'; font-size: 13px;
  color: var(--ink-muted); text-transform: uppercase; letter-spacing: .08em;
  margin-bottom: 10px; font-weight: 600;
}

@media (max-width: 768px) {
  .split, .split.thirty-seventy { grid-template-columns: 1fr; }
}

/* ===========================================================
   Overlay / Modal
   =========================================================== */

.overlay {
  position: fixed; inset: 0;
  background: rgba(255, 248, 237, .7);
  backdrop-filter: blur(4px);
  display: grid; place-items: center;
  z-index: 100;
  animation: fadeIn 200ms ease-out;
}
.overlay-content {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  box-shadow: var(--shadow-card);
  max-width: 520px; width: 90%;
  animation: fadeIn 300ms ease-out;
}

.pause-badge {
  width: 56px; height: 56px;
  background: var(--brand); color: #fff;
  border-radius: 50%;
  display: grid; place-items: center;
  margin: 0 auto var(--space-md);
  animation: pulse 1.2s ease-in-out infinite;
}

/* ===========================================================
   Choice chips (for decision-points, matching, quiz)
   =========================================================== */

.choices {
  display: flex; flex-direction: column; gap: 10px;
  margin-top: var(--space-md);
}
.choice {
  background: var(--surface);
  border: 2px solid var(--border);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  cursor: pointer;
  display: flex; align-items: center; gap: 12px;
  font-family: 'Nunito'; font-weight: 700; font-size: 15px;
  text-align: left;
  transition: all 160ms;
  width: 100%;
  color: var(--ink);
}
.choice:hover { transform: translateY(-1px); border-color: var(--brand); }
.choice.correct { background: var(--success-soft); border-color: var(--success); color: var(--ink); }
.choice.wrong { background: var(--heart-soft); border-color: var(--heart); color: var(--ink); }
.choice .choice-icon { font-size: 18px; flex-shrink: 0; }
.choice .choice-hint {
  display: block;
  margin-top: 6px;
  font-weight: 600; color: var(--ink-muted); font-size: 13px;
}

/* ===========================================================
   Badge (success reveal)
   =========================================================== */

.badge-big {
  background: var(--success);
  color: #fff;
  padding: var(--space-lg) var(--space-xl);
  border-radius: var(--radius-xl);
  text-align: center;
  box-shadow: 0 8px 24px rgba(88, 204, 2, .4);
  font-family: 'Fredoka';
  animation: badgePop 500ms cubic-bezier(.17, .67, .3, 1.3);
}
@keyframes badgePop {
  0% { transform: scale(0); }
  70% { transform: scale(1.15); }
  100% { transform: scale(1); }
}
.badge-big h2 { color: #fff; margin: 0 0 6px; }
.badge-big p { color: #fff; opacity: .9; margin: 0; font-weight: 700; }

/* ===========================================================
   Toast
   =========================================================== */

.toast {
  position: fixed;
  top: 80px; left: 50%;
  transform: translateX(-50%);
  background: var(--ink);
  color: #fff;
  padding: 12px 24px;
  border-radius: 999px;
  font-weight: 700; font-size: 14px;
  z-index: 1000;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .2);
  animation: toastIn 300ms ease-out;
}
@keyframes toastIn {
  from { opacity: 0; transform: translate(-50%, -20px); }
  to { opacity: 1; transform: translate(-50%, 0); }
}

/* ===========================================================
   Sparkle / particle (success)
   =========================================================== */

.sparkle {
  position: absolute; width: 8px; height: 8px;
  background: var(--success);
  border-radius: 50%;
  pointer-events: none;
  animation: sparkleOut 600ms ease-out forwards;
}
@keyframes sparkleOut {
  from { opacity: 1; transform: translate(0, 0) scale(1); }
  to { opacity: 0; transform: var(--sp-end, translate(30px, -30px)) scale(0.3); }
}

/* ===========================================================
   Mascot
   =========================================================== */

.mascot {
  width: 80px; height: 80px;
  display: inline-grid; place-items: center;
  background: var(--brand-soft);
  border-radius: 50%;
  box-shadow: 0 4px 0 #D9D4FC;
  font-size: 42px;
  animation: float 3.2s ease-in-out infinite;
  flex-shrink: 0;
}
.mascot.small { width: 52px; height: 52px; font-size: 28px; }

/* ===========================================================
   Intro / Main Menu specific
   =========================================================== */

.hero {
  display: flex; align-items: center; gap: var(--space-xl);
  padding: var(--space-2xl) var(--space-xl);
  background: linear-gradient(135deg, var(--bg) 0%, var(--bg-2) 100%);
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  margin-bottom: var(--space-xl);
}
.hero-text { flex: 1; }
.hero .kicker {
  color: var(--brand);
  font-size: 12px; font-weight: 800;
  text-transform: uppercase; letter-spacing: .08em;
  margin-bottom: 8px;
}
.hero h1 { font-size: 36px; margin-bottom: 10px; line-height: 1.15; }
.hero p { font-size: 17px; color: var(--ink-muted); max-width: 520px; }
.btn-row { display: flex; gap: 12px; margin-top: var(--space-lg); flex-wrap: wrap; }

.mode-grid, .audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: var(--space-xl) 0;
}
.mode-card, .audience-card {
  background: #fff;
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 18px 20px;
  cursor: pointer;
  display: flex; flex-direction: column; gap: 8px;
  transition: all 160ms;
  text-align: left;
  font-family: inherit;
}
@media (hover: hover) {
  .mode-card:hover, .audience-card:hover {
    transform: translateY(-2px);
    border-color: var(--success);
    box-shadow: 0 4px 0 var(--success-shadow);
  }
}
.mode-card.selected, .audience-card.selected {
  border-color: var(--success);
  background: var(--success-soft);
  box-shadow: 0 4px 0 var(--success-shadow);
}
.mode-card h4, .audience-card h4 { font-size: 16px; margin: 0; }
.mode-card p, .audience-card p { font-size: 13px; color: var(--ink-muted); margin: 0; }

@media (max-width: 768px) {
  .mode-grid, .audience-grid { grid-template-columns: 1fr; }
  .hero { flex-direction: column; text-align: center; padding: var(--space-xl); }
  .app-container { padding: var(--space-md); }
  h1 { font-size: 24px; }
  h2 { font-size: 20px; }
  .hud { padding: 10px 14px; }
  .chip-label { display: none; }
}

/* ===========================================================
   Learning path (Duolingo tree)
   =========================================================== */

.path {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  box-shadow: var(--shadow-card);
  margin-bottom: var(--space-xl);
}
.path-list {
  display: flex; flex-direction: column; gap: 8px;
}
.path-node {
  display: flex; align-items: center; gap: 16px;
  padding: 10px;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: background 150ms, transform 150ms;
  text-decoration: none;
  color: var(--ink);
  font-family: inherit;
  border: none;
  background: transparent;
  width: 100%;
  text-align: left;
}
@media (hover: hover) { .path-node:hover { background: var(--surface-soft); transform: translateX(4px); } }
.path-node.locked { opacity: .5; cursor: not-allowed; }
.path-node.locked:hover { background: transparent; transform: none; }

.node-circle {
  width: 48px; height: 48px; border-radius: 50%;
  display: grid; place-items: center;
  flex-shrink: 0;
  font-weight: 700; font-family: 'Fredoka';
}
.path-node.done .node-circle { background: var(--success); color: #fff; box-shadow: 0 3px 0 var(--success-shadow); }
.path-node.current .node-circle { background: var(--brand); color: #fff; box-shadow: 0 3px 0 #3A34B8; animation: bounce 1.8s ease-in-out infinite; }
.path-node.locked .node-circle { background: var(--surface-soft); color: var(--ink-dim); border: 2px solid var(--border); }

.node-label { flex: 1; }
.node-label .node-title { font-family: 'Fredoka'; font-weight: 700; }
.node-label .node-meta { font-size: 12px; color: var(--ink-muted); }

/* ===========================================================
   Accessibility
   =========================================================== */

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

*:focus-visible {
  outline: 3px solid var(--brand);
  outline-offset: 2px;
  border-radius: 6px;
}

/* ===========================================================
   Utility
   =========================================================== */

.text-center { text-align: center; }
.text-muted { color: var(--ink-muted); }
.text-brand { color: var(--brand); }
.text-success { color: var(--success-shadow); }
.text-heart { color: var(--heart); }
.mt-sm { margin-top: var(--space-sm); }
.mt-md { margin-top: var(--space-md); }
.mt-lg { margin-top: var(--space-lg); }
.mb-md { margin-bottom: var(--space-md); }
.mb-lg { margin-bottom: var(--space-lg); }
.flex { display: flex; }
.gap-sm { gap: var(--space-sm); }
.gap-md { gap: var(--space-md); }
.flex-center { display: flex; align-items: center; justify-content: center; }
.hidden { display: none !important; }
/* Атрибут [hidden] должен реально скрывать даже элементы с display из классов
   (напр. .btn { display: inline-flex }), иначе скрытые кнопки-гейты видны и уровень
   можно «пролистать», не пройдя фазу. */
[hidden] { display: none !important; }
