:root {
  --msh-bg-primary: #0f172a;
  --msh-bg-secondary: #1e293b;
  --msh-accent: #3b82f6;
  --msh-accent-hover: #2563eb;
  --msh-text-main: #f8fafc;
  --msh-text-muted: #94a3b8;
  --msh-border: #334155;
  --msh-font: 'Inter', system-ui, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body {
  font-family: var(--msh-font);
  background-color: var(--msh-bg-primary);
  color: var(--msh-text-main);
  line-height: 1.6;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

.msh-container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.msh-section { padding: 80px 0; }
.msh-section-title { font-size: 2.5rem; margin-bottom: 20px; text-align: center; }
.msh-section-subtitle { text-align: center; color: var(--msh-text-muted); margin-bottom: 50px; font-size: 1.1rem; max-width: 600px; margin-left: auto; margin-right: auto; }

/* Header */
.msh-header { background: var(--msh-bg-primary); border-bottom: 1px solid var(--msh-border); position: sticky; top: 0; z-index: 100; }
.msh-nav { display: flex; align-items: center; justify-content: space-between; height: 80px; }
.msh-logo { font-size: 1.5rem; font-weight: 700; color: var(--msh-accent); }
.msh-nav-links { display: flex; gap: 30px; }
.msh-nav-links a { color: var(--msh-text-main); font-weight: 500; transition: color 0.2s; }
.msh-nav-links a:hover { color: var(--msh-accent); }
.msh-btn { padding: 12px 24px; background: var(--msh-accent); color: #fff; font-weight: 600; border-radius: 6px; border: none; cursor: pointer; transition: background 0.2s; display: inline-block; }
.msh-btn:hover { background: var(--msh-accent-hover); }
.msh-btn-outline { background: transparent; border: 2px solid var(--msh-accent); color: var(--msh-accent); }
.msh-btn-outline:hover { background: var(--msh-accent); color: #fff; }
.msh-burger { display: none; font-size: 1.5rem; cursor: pointer; background: none; border: none; color: var(--msh-text-main); }

/* Hero */
.msh-hero { text-align: center; padding: 120px 0; background: linear-gradient(180deg, var(--msh-bg-secondary) 0%, var(--msh-bg-primary) 100%); }
.msh-hero-title { font-size: 4rem; font-weight: 800; margin-bottom: 24px; line-height: 1.2; }
.msh-hero-subtitle { font-size: 1.25rem; color: var(--msh-text-muted); margin-bottom: 40px; max-width: 700px; margin-left: auto; margin-right: auto; }
.msh-hero-actions { display: flex; gap: 20px; justify-content: center; margin-bottom: 60px; }
.msh-hero-badges { display: flex; gap: 20px; justify-content: center; margin-bottom: 40px; flex-wrap: wrap; }
.msh-badge { background: var(--msh-bg-secondary); padding: 8px 16px; border-radius: 20px; font-size: 0.9rem; border: 1px solid var(--msh-border); }
.msh-hero-stats { display: flex; justify-content: center; gap: 60px; border-top: 1px solid var(--msh-border); padding-top: 40px; }
.msh-stat { text-align: center; }
.msh-stat-val { font-size: 2.5rem; font-weight: 700; color: var(--msh-accent); }
.msh-stat-lbl { color: var(--msh-text-muted); font-size: 0.9rem; }

/* Approach */
.msh-approach-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-bottom: 40px; }
.msh-approach-card { background: var(--msh-bg-secondary); padding: 30px; border-radius: 12px; border: 1px solid var(--msh-border); }
.msh-approach-card h3 { margin-bottom: 15px; color: var(--msh-accent); }
.msh-alert { background: rgba(59, 130, 246, 0.1); border-left: 4px solid var(--msh-accent); padding: 20px; border-radius: 0 8px 8px 0; }

/* Metrics */
.msh-metrics-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.msh-metric-card { background: var(--msh-bg-secondary); padding: 30px; border-radius: 12px; text-align: center; border: 1px solid var(--msh-border); transition: transform 0.2s; }
.msh-metric-card:hover { transform: translateY(-5px); }
.msh-metric-icon { font-size: 2.5rem; margin-bottom: 15px; font-weight: bold; color: var(--msh-accent); }

/* Games Catalog */
.msh-games-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.msh-game-card { background: var(--msh-bg-secondary); border-radius: 12px; overflow: hidden; border: 1px solid var(--msh-border); display: flex; flex-direction: column; }
.msh-game-img { height: 200px; background: var(--msh-bg-secondary); display: flex; align-items: center; justify-content: center; position: relative; padding: 0; }
.msh-game-img img { width: 100%; height: 100%; object-fit: cover; }
.msh-game-score { position: absolute; top: 15px; right: 15px; background: var(--msh-accent); color: #fff; padding: 5px 10px; border-radius: 6px; font-weight: bold; font-size: 0.9rem; }
.msh-game-content { padding: 25px; flex-grow: 1; display: flex; flex-direction: column; }
.msh-game-genre { color: var(--msh-accent); font-size: 0.85rem; font-weight: 600; text-transform: uppercase; margin-bottom: 10px; }
.msh-game-title { font-size: 1.4rem; margin-bottom: 10px; }
.msh-game-desc { color: var(--msh-text-muted); font-size: 0.95rem; margin-bottom: 20px; flex-grow: 1; }
.msh-game-tags { display: flex; gap: 10px; margin-bottom: 20px; flex-wrap: wrap; }
.msh-tag { background: rgba(255,255,255,0.05); padding: 5px 12px; border-radius: 4px; font-size: 0.8rem; border: 1px solid var(--msh-border); }
.msh-game-btn { display: block; text-align: center; width: 100%; text-decoration: none; }

/* Spotlight */
.msh-spotlight { background: var(--msh-bg-secondary); padding: 60px; border-radius: 16px; border: 1px solid var(--msh-border); display: flex; gap: 50px; align-items: center; }
.msh-spotlight-score { font-size: 5rem; font-weight: 800; color: var(--msh-accent); line-height: 1; }
.msh-spotlight-details { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.msh-spotlight-block h4 { margin-bottom: 10px; font-size: 1.1rem; }
.msh-spotlight-block p { color: var(--msh-text-muted); font-size: 0.95rem; }

/* Mechanics */
.msh-mechanics-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.msh-mechanic-card { padding: 25px; border-left: 3px solid var(--msh-accent); background: var(--msh-bg-secondary); }

/* Platforms & Sessions */
.msh-platforms-grid, .msh-sessions-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.msh-pcard { background: var(--msh-bg-secondary); padding: 30px; text-align: center; border-radius: 12px; border: 1px solid var(--msh-border); }

/* FAQ */
.msh-faq-wrap { max-width: 800px; margin: 0 auto; }
.msh-faq-item { background: var(--msh-bg-secondary); border-radius: 8px; margin-bottom: 15px; border: 1px solid var(--msh-border); overflow: hidden; }
.msh-faq-q { padding: 20px; font-weight: 600; cursor: pointer; display: flex; justify-content: space-between; align-items: center; }
.msh-faq-q::after { content: '+'; font-size: 1.5rem; }
.msh-faq-item.active .msh-faq-q::after { content: '-'; }
.msh-faq-a { padding: 0 20px 20px; display: none; color: var(--msh-text-muted); }
.msh-faq-item.active .msh-faq-a { display: block; }

/* Connect Form */
.msh-form { max-width: 600px; margin: 0 auto; background: var(--msh-bg-secondary); padding: 40px; border-radius: 12px; border: 1px solid var(--msh-border); }
.msh-form-group { margin-bottom: 20px; }
.msh-form-group label { display: block; margin-bottom: 8px; font-weight: 500; }
.msh-form-control { width: 100%; padding: 12px; background: var(--msh-bg-primary); border: 1px solid var(--msh-border); color: #fff; border-radius: 6px; font-family: inherit; }
.msh-form-check { display: flex; gap: 10px; align-items: flex-start; }
.msh-form-check input { margin-top: 5px; }

/* Bottom CTA */
.msh-cta { text-align: center; background: linear-gradient(135deg, var(--msh-accent), var(--msh-accent-hover)); padding: 80px 20px; border-radius: 16px; margin: 40px 0; }
.msh-cta h2 { font-size: 2.5rem; margin-bottom: 20px; }
.msh-cta p { font-size: 1.1rem; margin-bottom: 30px; opacity: 0.9; }
.msh-cta .msh-btn { background: #fff; color: var(--msh-accent); }

/* Footer */
.msh-footer { background: var(--msh-bg-secondary); padding: 60px 0 20px; border-top: 1px solid var(--msh-border); }
.msh-footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.msh-footer-col h5 { font-size: 1.2rem; margin-bottom: 20px; }
.msh-footer-links { display: flex; flex-direction: column; gap: 10px; }
.msh-footer-links a { color: var(--msh-text-muted); transition: color 0.2s; }
.msh-footer-links a:hover { color: var(--msh-accent); }
.msh-footer-bottom { border-top: 1px solid var(--msh-border); padding-top: 20px; text-align: center; color: var(--msh-text-muted); font-size: 0.9rem; }

/* Cookie Banner */
.msh-cookie { position: fixed; bottom: 20px; left: 20px; right: 20px; background: var(--msh-bg-secondary); border: 1px solid var(--msh-border); padding: 20px; border-radius: 12px; display: none; align-items: center; justify-content: space-between; z-index: 1000; box-shadow: 0 10px 30px rgba(0,0,0,0.5); }
.msh-cookie.show { display: flex; }
.msh-cookie-text { margin-right: 20px; }
.msh-cookie-btns { display: flex; gap: 10px; flex-shrink: 0; }

@media(max-width: 768px) {
  .msh-nav-links { display: none; position: absolute; top: 80px; left: 0; right: 0; background: var(--msh-bg-primary); flex-direction: column; padding: 20px; border-bottom: 1px solid var(--msh-border); }
  .msh-nav-links.active { display: flex; }
  .msh-burger { display: block; }
  .msh-hero-title { font-size: 2.5rem; }
  .msh-approach-grid, .msh-metrics-grid, .msh-games-grid, .msh-mechanics-grid, .msh-platforms-grid, .msh-sessions-grid { grid-template-columns: 1fr; }
  .msh-spotlight { flex-direction: column; text-align: center; }
  .msh-spotlight-details { grid-template-columns: 1fr; }
  .msh-footer-grid { grid-template-columns: 1fr; }
  .msh-cookie { flex-direction: column; text-align: center; gap: 20px; }
  .msh-cookie-text { margin-right: 0; }
}
