* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  :root {
    --bg-main: #050816;
    --bg-elevated: #0b1020;
    --accent-blue: #408bff;
    --accent-purple: #a855f7;
    --accent-green: #22c55e;
    --text-main: #f9fafb;
    --text-sub: #9ca3af;
    --border-soft: rgba(148, 163, 184, 0.3);
  }
  
  body {
    font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    background: radial-gradient(circle at top, #101632 0, #050816 45%, #02010a 100%);
    color: var(--text-main);
  }
  
  /* NAVBAR */
  
  .top-nav {
    position: sticky;
    top: 0;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 32px;
    background: linear-gradient(to bottom, rgba(5, 8, 22, 0.96), rgba(5, 8, 22, 0.9));
    border-bottom: 1px solid rgba(148, 163, 184, 0.2);
    backdrop-filter: blur(14px);
  }
  
  .nav-left {
    display: flex;
    align-items: center;
    gap: 32px;
  }
  
  .logo {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  
  .logo-circle {
    width: 34px;
    height: 34px;
    border-radius: 999px;
    background: radial-gradient(circle at 30% 30%, #ffffff, #22c55e);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #020617;
    font-weight: 800;
    font-family: "Orbitron", sans-serif;
  }
  
  .logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
  }
  
  .logo-name {
    font-size: 1.1rem;
    font-weight: 700;
  }
  
  .logo-tag {
    font-size: 0.7rem;
    color: var(--text-sub);
  }
  
  .nav-links {
    display: flex;
    gap: 16px;
    font-size: 0.9rem;
  }
  
  .nav-links a {
    color: var(--text-sub);
    text-decoration: none;
    padding: 6px 10px;
    border-radius: 999px;
    transition: background 0.15s ease, color 0.15s ease;
  }
  
  .nav-links a:hover {
    background: rgba(31, 41, 55, 0.8);
    color: var(--text-main);
  }
  
  .nav-right {
    display: flex;
    align-items: center;
    gap: 12px;
  }
  
  .lang-select {
    background: #020617;
    color: var(--text-main);
    border-radius: 999px;
    border: 1px solid var(--border-soft);
    padding: 6px 17px 6px 11px;
    font-size: 0.85rem;
  }
  
  /* BUTTONS */
  
  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 9px 18px;
    border-radius: 999px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    border: 1px solid transparent;
    transition: all 0.18s ease;
  }
  
  .btn.primary {
    background: linear-gradient(135deg, #3b82f6, #22c55e);
    color: #020617;
    box-shadow: 0 0 20px rgba(56, 189, 248, 0.55);
  }
  
  .btn.primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 0 28px rgba(56, 189, 248, 0.75);
  }
  
  .btn.secondary {
    background: rgba(15, 23, 42, 0.9);
    border-color: rgba(148, 163, 184, 0.5);
    color: var(--text-main);
  }
  
  .btn.secondary:hover {
    background: rgba(30, 64, 175, 0.7);
    border-color: transparent;
  }
  
  .btn.nav-secondary {
    background: rgba(15, 23, 42, 0.9);
    border-color: rgba(148, 163, 184, 0.5);
    color: var(--text-main);
  }
  
  .btn.nav-secondary:hover {
    background: rgba(30, 64, 175, 0.8);
  }
  
  /* HERO */
  
  .hero-section {
    padding: 56px 32px 40px;
  }
  
  .hero-inner {
    max-width: 1120px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    align-items: center;
    gap: 40px;
  }
  
  .pill {
    display: inline-flex;
    align-items: center;
    padding: 4px 12px;
    border-radius: 999px;
    border: 1px solid rgba(96, 165, 250, 0.8);
    background: rgba(15, 23, 42, 0.9);
    color: #bfdbfe;
    font-size: 0.78rem;
    margin-bottom: 14px;
  }
  
  .hero-left h1 {
    font-family: "Inter", sans-serif;
    font-size: clamp(2.2rem, 3.5vw, 3rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 14px;
  }
  
  .hero-sub {
    color: var(--text-sub);
    font-size: 0.96rem;
    max-width: 26rem;
    margin-bottom: 22px;
  }
  
  .hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 16px;
  }
  
  .hero-meta {
    font-size: 0.8rem;
    color: rgba(148, 163, 184, 0.9);
  }
  
  /* HERO RIGHT CARD */
  
  .hero-right {
    display: flex;
    justify-content: center;
  }
  
  .hero-card {
    width: 100px;
    min-height: 280px;
    border-radius: 20px;
    padding: 16px 18px;
    background: radial-gradient(circle at top left, rgba(129, 140, 248, 0.4), #020617);
    box-shadow:
      0 0 30px rgba(15, 23, 42, 1),
      0 0 40px rgba(56, 189, 248, 0.5);
    border: 1px solid rgba(148, 163, 184, 0.4);
  }
  
  .hero-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 14px;
    font-size: 0.78rem;
    color: #cbd5f5;
  }
  
  .status-dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: #22c55e;
    box-shadow: 0 0 10px rgba(34, 197, 94, 0.9);
  }
  
  .hero-card-body {
    background: rgba(15, 23, 42, 0.9);
    border-radius: 16px;
    padding: 14px 12px 16px;
  }
  
  .track-line {
    display: flex;
    justify-content: space-between;
    font-size: 0.78rem;
    margin-bottom: 8px;
  }
  
  .track-label {
    color: #a5b4fc;
  }
  
  .track-name {
    color: #e5e7eb;
  }
  
  .progress-bar {
    height: 6px;
    border-radius: 999px;
    background: #020617;
    overflow: hidden;
    margin-bottom: 12px;
  }
  
  .progress-fill {
    width: 68%;
    height: 100%;
    background: linear-gradient(90deg, #22c55e, #3b82f6);
    border-radius: inherit;
  }
  
  .controls {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 10px;
  }
  
  .controls button {
    background: rgba(15, 23, 42, 1);
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.5);
    color: #e5e7eb;
    padding: 6px 10px;
    font-size: 0.9rem;
  }
  
  .card-hint {
    font-size: 0.78rem;
    color: #9ca3af;
  }
  
  .code {
    font-family: "JetBrains Mono", monospace;
    background: rgba(15, 23, 42, 0.9);
    border-radius: 6px;
    padding: 3px 6px;
    border: 1px solid rgba(148, 163, 184, 0.4);
    font-size: 0.78rem;
  }
  
  /* SECTIONS */
  
  .section {
    padding: 40px 32px 48px;
  }
  
  .section h2 {
    text-align: center;
    font-size: 1.6rem;
    margin-bottom: 8px;
  }
  
  .section-sub {
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-sub);
    margin-bottom: 26px;
  }
  
  .grid {
    max-width: 1120px;
    margin: 0 auto;
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  }
  
  .grid.small {
    max-width: 900px;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  }

  .commands-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 8px;
    text-align: center;
  }
  
  .commands-grid {
    margin-top: 40px;
    display: grid;
    /* cardurile mai late, ca să umple mai bine pe orizontală */
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
  }
  
  
  .command-card {
    background: radial-gradient(circle at top left, #111827, #020617);
    border-radius: 16px;
    padding: 20px 22px;
    border: 1px solid rgba(148, 163, 184, 0.35);
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.9);
  
    /* facem cardurile mai înalte ca să umple pagina */
    min-height: 150px;
  
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  
  
  .command-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
  }
  
  .command-emoji {
    font-size: 22px;
  }
  
  .command-name {
    font-family: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
    font-size: 1rem;
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.8);
    border: 1px solid rgba(55, 65, 81, 0.8);
  }
  
  .command-desc {
    margin: 0;
    font-size: 0.95rem;
    color: #cbd5f5;
    line-height: 1.4;
  }
  
  
  
  /* CARDS */
  
  .card,
  .cmd {
    background: rgba(15, 23, 42, 0.9);
    border-radius: 18px;
    border: 1px solid rgba(148, 163, 184, 0.35);
    padding: 18px 16px;
    font-size: 0.9rem;
    color: #e5e7eb;
    box-shadow: 0 15px 25px rgba(15, 23, 42, 0.9);
  }
  
  .card h3 {
    margin-bottom: 8px;
  }
  
  .cmd {
    display: flex;
    flex-direction: column;
    gap: 4px;
  }
  
  /* FOOTER */
  
  footer {
    padding: 18px 32px 22px;
    border-top: 1px solid rgba(148, 163, 184, 0.25);
    text-align: center;
    font-size: 0.8rem;
    color: var(--text-sub);
    background: rgba(5, 8, 22, 0.98);
  }
  
  /* RESPONSIVE */
  
  @media (max-width: 900px) {
    .hero-inner {
      grid-template-columns: minmax(0, 1fr);
    }
  
    .hero-right {
      order: -1;
    }
  }
  
  /* ... tot ce aveai deja mai sus rămâne neschimbat ... */

/* RESPONSIVE */

@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-right {
    order: -1;
  }
}

@media (max-width: 640px) {
  .top-nav {
    padding-inline: 16px;
  }

  .nav-links {
    display: none;
  }

  .hero-section,
  .section {
    padding-inline: 16px;
  }

  .hero-inner {
    gap: 24px;
  }

  .hero-sub {
    max-width: none;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }
}

/* MODAL POPUP */

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(3, 6, 23, 0.78);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
  z-index: 999;
}

.modal-overlay.show {
  opacity: 1;
  pointer-events: auto;
}

.modal {
  background: #050816;
  border-radius: 18px;
  padding: 24px 28px;
  max-width: 380px;
  width: 90%;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(148, 163, 184, 0.25);
  transform: scale(0.9) translateY(10px);
  animation: modal-pop 0.25s ease forwards;
}

.modal-icon {
  font-size: 32px;
  text-align: center;
  margin-bottom: 12px;
}

.modal h3 {
  margin: 0 0 8px;
  text-align: center;
}

.modal p {
  margin: 0 0 18px;
  text-align: center;
  color: #cbd5f5;
  line-height: 1.5;
}

.modal button {
  display: block;
  margin: 0 auto;
}

/* DOAR pentru pagina de comenzi */
body.commands-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

body.commands-page main {
  flex: 1;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: inherit;
}

.logo-circle {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  overflow: hidden;              /* important: taie ce e în plus din poză */
  background: radial-gradient(circle at 30% 30%, #ffffff, #22c55e);
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;             /* imaginea se „închide” frumos în cerc */
}

/* DOAR pentru pagina de comenzi ULTIMELE 3 CARDURI ARANJATE FRUMOS */

/* === COMMANDS GRID – ULTIMUL RAND CENTRAT PERFECT === */

.commands-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);  /* 5 coloane fixe */
  row-gap: 28px;
  column-gap: 28px;
  margin-top: 40px;
  justify-items: center;
}

/* dimensiune consistentă pentru fiecare card */
.command-card {
  width: 100%;
  max-width: 320px;
  min-height: 150px;

  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* ### ULTIMUL RAND – 3 PE CENTRU ### */

/* Când sunt exact 3 elemente pe ultimul rând, le mutăm pe coloanele 2,3,4 */
.commands-grid > .command-card:nth-last-child(3) {
  grid-column: 2;
}
.commands-grid > .command-card:nth-last-child(2) {
  grid-column: 3;
}
.commands-grid > .command-card:nth-last-child(1) {
  grid-column: 4;
}

.command-card {
  cursor: pointer;
  transition: all 0.25s ease;
}

.command-card:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 0 25px rgba(56,189,248,0.35);
}

.command-card.copied {
  border-color: #22c55e !important;
  box-shadow: 0 0 35px rgba(34,197,94,0.5) !important;
  background: linear-gradient(145deg, #020617, #052e16);
}

/* ====== UPDATES / RELEASE NOTES ====== */

body.updates-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

body.updates-page main {
  flex: 1;
}

.updates-title {
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 8px;
}

.updates-timeline {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.update-card {
  background: radial-gradient(circle at top left, #111827, #020617);
  border-radius: 18px;
  padding: 20px 22px;
  border: 1px solid rgba(148,163,184,0.35);
  box-shadow: 0 18px 40px rgba(15,23,42,0.9);
}

.update-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 60px rgba(15,23,42,1);
  transition: all 0.25s ease;
}

.update-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
  gap: 12px;
}

.update-version {
  font-family: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 0.9rem;
  padding: 3px 10px;
  border-radius: 999px;
  border: 1px solid rgba(148,163,184,0.7);
  background: rgba(15,23,42,0.9);
}

.update-tag {
  margin-left: 8px;
  font-size: 0.7rem;
  padding: 3px 8px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.update-tag.new {
  background: rgba(34,197,94,0.15);
  color: #4ade80;
  border: 1px solid rgba(34,197,94,0.7);
}

.update-date {
  font-size: 0.85rem;
  color: #9ca3af;
}

.update-title {
  margin: 4px 0 10px;
  font-weight: 600;
}

.update-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}

.chip {
  font-size: 0.75rem;
  padding: 3px 9px;
  border-radius: 999px;
  border: 1px solid rgba(148,163,184,0.6);
  background: rgba(15,23,42,0.9);
  color: #e5e7eb;
}

.update-body h4 {
  margin: 10px 0 4px;
  font-size: 0.9rem;
  color: #e5e7eb;
}

.update-body ul {
  margin: 0 0 6px 16px;
  padding: 0;
  color: #cbd5f5;
  font-size: 0.9rem;
  line-height: 1.5;
}

/* responsive */
@media (max-width: 640px) {
  .update-card {
    padding: 16px 16px;
  }

  .update-header {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* === GROOVIX MINI PLAYER – LAYOUT BUTOANE === */

.player-controls-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 10px;
}

.controls-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.controls-right {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 140px;
  justify-content: flex-end;
}

.volume-icon {
  font-size: 14px;
  opacity: 0.8;
}

.control-btn {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.45);
  background: radial-gradient(circle at 30% 0%, #1d293b, #020617);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  color: #e5e7eb;
  cursor: pointer;
  box-shadow:
    0 10px 25px rgba(15, 23, 42, 0.9),
    0 0 0 1px rgba(15, 23, 42, 0.8);
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease, background 0.15s ease;
}

.control-btn:hover {
  transform: translateY(-1px) scale(1.05);
  border-color: rgba(56, 189, 248, 0.8);
  box-shadow:
    0 14px 30px rgba(8, 47, 73, 0.9),
    0 0 18px rgba(56, 189, 248, 0.55);
}

.control-btn:active {
  transform: translateY(1px) scale(0.96);
  box-shadow:
    0 4px 10px rgba(15, 23, 42, 0.9),
    0 0 8px rgba(37, 99, 235, 0.65);
}

.player-seek-row {
  margin: 10px 0 4px;
}

.seek-bar,
.volume-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 6px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.9);
  outline: none;
  overflow: hidden;
  box-shadow: inset 0 0 0 1px rgba(30, 64, 175, 0.6);
}

/* track "plin" (folosim shadow pe thumb) */
.seek-bar::-webkit-slider-thumb,
.volume-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #38bdf8;
  box-shadow: -400px 0 0 400px rgba(56, 189, 248, 0.35);
  cursor: pointer;
}

.seek-bar::-moz-range-thumb,
.volume-slider::-moz-range-thumb {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #38bdf8;
  box-shadow: -400px 0 0 400px rgba(56, 189, 248, 0.35);
  border: none;
  cursor: pointer;
}

.seek-bar::-moz-range-track,
.volume-slider::-moz-range-track {
  height: 6px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.9);
}

.time-row {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  opacity: 0.7;
  margin-bottom: 4px;
}

.time-row span {
  font-variant-numeric: tabular-nums;
}

.player-cover {
  width: 90px;
  height: 90px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 0 15px rgba(0, 255, 200, 0.35);
  flex-shrink: 0;
}

.player-top {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 12px;
}

.player-meta {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.track-name {
  font-weight: 600;
  color: #fff;
  margin-top: 4px;
}

.now-label {
  font-size: 12px;
  opacity: .65;
}

/* ===== PREMIUM LAYOUT CONTAINER ===== */

.hero-section {
  padding: 96px 24px 72px;
}

.hero-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 64px;
}

/* text stânga */

.hero-left {
  max-width: 520px;
}

.hero-left h1 {
  font-size: clamp(2.8rem, 4vw, 3.4rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.hero-sub {
  margin-top: 18px;
  font-size: 0.98rem;
  line-height: 1.7;
  color: rgba(226, 232, 240, 0.86);
}

.hero-buttons {
  margin-top: 26px;
  display: flex;
  gap: 14px;
}

.hero-meta {
  margin-top: 18px;
  font-size: 0.85rem;
  color: rgba(148, 163, 184, 0.95);
}

/* badge/pill */

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #e5fdf4;
  background: radial-gradient(circle at 0 0, rgba(45, 212, 191, 0.4), transparent 55%),
              rgba(15, 23, 42, 0.95);
  border: 1px solid rgba(45, 212, 191, 0.6);
  box-shadow: 0 0 24px rgba(45, 212, 191, 0.35);
}

/* ===== HERO CARD – PLAYER GLOSSY ===== */

.hero-card {
  position: relative;
  width: 500px;
  border-radius: 26px;
  padding: 18px 18px 16px;
  background: radial-gradient(circle at 0 0, rgba(59, 130, 246, 0.35), transparent 60%),
              radial-gradient(circle at 100% 100%, rgba(45, 212, 191, 0.28), transparent 55%),
              rgba(15, 23, 42, 0.98);
  box-shadow:
    0 25px 70px rgba(15, 23, 42, 0.9),
    0 0 0 1px rgba(148, 163, 184, 0.18);
  border: 1px solid rgba(148, 163, 184, 0.28);
  backdrop-filter: blur(26px);
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(56, 189, 248, 0.3), rgba(16, 185, 129, 0.2));
  opacity: 0.35;
  z-index: -1;
}

/* header card */

.hero-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: rgba(226, 232, 240, 0.9);
  margin-bottom: 8px;
}

/* player top: cover + text */

.player-top {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 10px;
}

.player-cover {
  width: 72px;
  height: 72px;
  border-radius: 18px;
  object-fit: cover;
  box-shadow:
    0 14px 30px rgba(15, 23, 42, 0.9),
    0 0 0 1px rgba(30, 64, 175, 0.8);
  flex-shrink: 0;
}

.player-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.now-label {
  font-size: 0.75rem;
  color: rgba(148, 163, 184, 0.95);
}

.track-name {
  font-size: 0.92rem;
  font-weight: 600;
  color: #e5e7eb;
}

/* timp de redare deasupra barei */

.time-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.78rem;
  opacity: 0.8;
  margin-bottom: 3px;
  color: rgba(148, 163, 184, 0.95);
  font-variant-numeric: tabular-nums;
}

/* seek / volum – look modern */

.player-seek-row {
  margin-top: 10px;
}

.seek-bar,
.volume-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 6px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.95);
  outline: none;
  overflow: hidden;
  box-shadow: inset 0 0 0 1px rgba(30, 64, 175, 0.6);
}

.seek-bar::-webkit-slider-thumb,
.volume-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #38bdf8;
  box-shadow: -400px 0 0 400px rgba(56, 189, 248, 0.4);
  cursor: pointer;
}

.seek-bar::-moz-range-thumb,
.volume-slider::-moz-range-thumb {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #38bdf8;
  border: none;
  box-shadow: -400px 0 0 400px rgba(56, 189, 248, 0.4);
  cursor: pointer;
}

.seek-bar::-moz-range-track,
.volume-slider::-moz-range-track {
  height: 6px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.95);
}

/* butoane player */

.player-controls-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 12px;
}

.controls-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.controls-right {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 140px;
  justify-content: flex-end;
}

.volume-icon {
  font-size: 0.9rem;
  opacity: 0.85;
}

.control-btn {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.45);
  background: radial-gradient(circle at 30% 0%, #1f2937, #020617);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: #e5e7eb;
  cursor: pointer;
  box-shadow:
    0 10px 22px rgba(15, 23, 42, 0.9),
    0 0 0 1px rgba(15, 23, 42, 0.85);
  transition:
    transform 0.15s ease,
    box-shadow 0.15s ease,
    border-color 0.15s ease,
    background 0.15s ease;
}

#btnPlayPause.control-btn {
  width: 40px;
  height: 40px;
  font-size: 16px;
  background: radial-gradient(circle at 30% 0%, #22c55e, #0f172a);
}

.control-btn:hover {
  transform: translateY(-1px) scale(1.05);
  border-color: rgba(56, 189, 248, 0.9);
  box-shadow:
    0 14px 32px rgba(8, 47, 73, 0.9),
    0 0 16px rgba(56, 189, 248, 0.55);
}

.control-btn:active {
  transform: translateY(1px) scale(0.96);
  box-shadow:
    0 4px 12px rgba(15, 23, 42, 0.95),
    0 0 8px rgba(37, 99, 235, 0.6);
}

/* ===== SECTIONS GLOBALE ===== */

.section {
  max-width: 1160px;
  margin: 0 auto;
  padding: 72px 24px;
}

.section-sub {
  max-width: 520px;
  margin: 8px auto 0;
  color: rgba(148, 163, 184, 0.96);
}

/* carduri de feature */

.section .grid {
  margin-top: 32px;
}

.section .card {
  background: radial-gradient(circle at 0 0, rgba(56, 189, 248, 0.22), transparent 55%),
              rgba(15, 23, 42, 0.96);
  border-radius: 22px;
  border: 1px solid rgba(75, 85, 99, 0.6);
  box-shadow:
    0 16px 40px rgba(15, 23, 42, 0.9),
    0 0 0 1px rgba(15, 23, 42, 0.95);
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    border-color 0.18s ease;
}

.section .card:hover {
  transform: translateY(-4px);
  border-color: rgba(56, 189, 248, 0.7);
  box-shadow:
    0 22px 60px rgba(15, 23, 42, 0.95),
    0 0 26px rgba(56, 189, 248, 0.5);
}

/* titluri secțiune */

.section h2 {
  font-size: 1.9rem;
}

.commands-page .commands-title,
.section#commands h2 {
  font-size: 1.8rem;
}

/* ===== SIZE TWEAK | MINI PLAYER MAI LARG + PUȚIN MAI ÎNALT ===== */

.hero-card {
  width: 400px;       /* era ~360px */
  min-height: 310px;  /* îl face puțin mai înalt */
  padding: 22px 22px 18px;
}

/* mărim ușor coperta */

.player-cover {
  width: 80px;   /* era ~72 */
  height: 80px;
  border-radius: 20px;
}

/* puțin mai aerisit în interior */

.player-top {
  gap: 16px;
}

.player-controls-row {
  margin-top: 14px;
}

/* bara de progres puțin mai groasă */

.seek-bar,
.volume-slider {
  height: 7px;
}

.seek-bar::-webkit-slider-thumb,
.volume-slider::-webkit-slider-thumb,
.seek-bar::-moz-range-thumb,
.volume-slider::-moz-range-thumb {
  width: 15px;
  height: 15px;
}

/* text puțin mai mare pentru track */

.track-name {
  font-size: 0.98rem;
}

.now-label {
  font-size: 0.78rem;
}

@media (max-width: 900px) {
  .hero-inner {
    flex-direction: column;
    align-items: center;
    gap: 32px;
  }

  .hero-left {
    text-align: center;
  }
}

@media (max-width: 640px) {
  .hero-left h1 {
    font-size: 2.2rem;
    line-height: 1.1;
  }
}

@media (max-width: 640px) {
  .hero-buttons {
    gap: 14px;
  }

  .btn {
    padding: 14px;
    font-size: 0.95rem;
  }
}

@media (max-width: 640px) {
  .nav-right {
    gap: 8px;
  }

  .lang-select {
    padding: 6px 10px;
  }
}


@media (max-width: 640px) {
  .hero-card {
    width: 100%;
    max-width: 360px;
    min-height: auto;
    padding: 16px;
  }
}

@keyframes modal-pop {
  from {
    opacity: 0;
    transform: scale(0.9) translateY(10px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}
