/* ═══════════════════════════════════════
   DESIGN TOKENS
═══════════════════════════════════════ */
:root {
  --bg:           #FAF6F1;
  --cream:        #F5EDE4;
  --beige:        #D4B5A0;
  --brown:        #8B7355;
  --accent:       #E6B17E;
  --text-primary: #1a1a1a;
  --text-secondary:#333333;
  --text-muted:   #666666;
  --success:      #66BB6A;
  --error:        #D32F2F;

  --shadow-out: -5px -5px 13px rgba(255,255,255,0.88),
                 5px  5px 13px rgba(139,115,85,0.22);
  --shadow-in:  inset 3px  3px 8px rgba(139,115,85,0.16),
                inset -3px -3px 8px rgba(255,255,255,0.82);
  --shadow-btn: -3px -3px 8px rgba(255,255,255,0.85),
                 3px  3px 9px rgba(139,115,85,0.30);

  --radius:      20px;
  --radius-sm:   12px;
  --radius-pill: 50px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: 'Osnatfont', 'Heebo', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text-primary);
  min-height: 100vh;
  direction: rtl;
  overflow-x: hidden;
}

header {
  background: var(--cream);
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 16px rgba(139,115,85,0.10);
  position: sticky;
  top: 0;
  z-index: 100;
}

.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }

.logo-image {
  width: auto;
  height: 44px;
  max-width: min(210px, 70vw);
  object-fit: contain;
  opacity: 0.95;
  transition: opacity 0.2s ease;
}
.logo:hover .logo-image { opacity: 1; }

.material-symbols-rounded {
  font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
  font-size: 20px;
  line-height: 1;
  vertical-align: middle;
}

.section { padding: 28px 20px 12px; max-width: 580px; margin: 0 auto; }
#player-section { max-width: 1100px; }
.hidden { display: none !important; }

@media (max-width: 480px) {
  .logo-image { height: 36px; max-width: min(170px, 72vw); }
}
