/* MoveAndMoney — shared nav & footer styles */
:root { --primary: #1a73e8; --dark: #0d1b2a; --card: #162032; --accent: #00c9a7; --text: #e8edf4; --muted: #8899aa; }

/* NAV */
.mnm-nav { display: flex; justify-content: space-between; align-items: center; padding: 0 50px; height: 64px; background: rgba(13,27,42,0.97); backdrop-filter: blur(12px); position: sticky; top: 0; z-index: 1000; border-bottom: 1px solid rgba(255,255,255,0.06); }
.mnm-logo { font-size: 20px; font-weight: 800; color: #fff; text-decoration: none; }
.mnm-logo span { color: var(--accent); }
.mnm-links { display: flex; align-items: center; gap: 6px; }
.mnm-link { color: var(--muted); text-decoration: none; font-size: 14px; padding: 8px 12px; border-radius: 8px; transition: color .2s, background .2s; }
.mnm-link:hover { color: #fff; background: rgba(255,255,255,0.06); }

/* Dropdown */
.mnm-dropdown { position: relative; }
.mnm-dropbtn { background: none; border: none; color: var(--muted); font-size: 14px; padding: 8px 12px; border-radius: 8px; cursor: pointer; transition: color .2s, background .2s; display: flex; align-items: center; gap: 4px; }
.mnm-dropbtn:hover, .mnm-dropdown.open .mnm-dropbtn { color: #fff; background: rgba(255,255,255,0.06); }
.arrow { font-size: 10px; transition: transform .2s; }
.mnm-dropdown.open .arrow { transform: rotate(180deg); }
.mnm-dropmenu { display: none; position: absolute; top: calc(100% + 4px); left: 0; background: #1a2a3d; border: 1px solid rgba(255,255,255,0.1); border-radius: 14px; padding: 8px; min-width: 220px; box-shadow: 0 20px 40px rgba(0,0,0,0.4); z-index: 200; }
.mnm-dropdown.open .mnm-dropmenu { display: block; }
.mnm-dropmenu a { display: block; padding: 9px 12px; color: var(--text); text-decoration: none; font-size: 13px; border-radius: 8px; transition: background .2s; white-space: nowrap; }
.mnm-dropmenu a:hover { background: rgba(255,255,255,0.07); }
.mnm-dropmenu a.coming { color: var(--muted); }
.soon { background: rgba(255,165,0,0.15); color: #ffaa33; font-size: 10px; padding: 2px 7px; border-radius: 10px; font-weight: 700; margin-left: 6px; }

/* Language switcher */
.mnm-lang { display: flex; background: rgba(255,255,255,0.06); border-radius: 8px; overflow: hidden; border: 1px solid rgba(255,255,255,0.08); margin-left: 8px; }
.mnm-lang-btn { background: none; border: none; color: var(--muted); font-size: 12px; font-weight: 700; padding: 6px 12px; cursor: pointer; transition: all .2s; }
.mnm-lang-btn.active { background: var(--accent); color: #000; }

/* Hamburger (mobile) */
.mnm-hamburger { display: none; background: none; border: none; color: var(--text); font-size: 22px; cursor: pointer; }
.mnm-mobile-menu { display: none; position: fixed; top: 64px; left: 0; right: 0; background: #1a2a3d; border-bottom: 1px solid rgba(255,255,255,0.1); padding: 16px; z-index: 999; }
.mnm-mobile-menu a { display: block; padding: 10px 12px; color: var(--text); text-decoration: none; font-size: 15px; border-radius: 8px; }
.mnm-mobile-menu a:hover { background: rgba(255,255,255,0.06); }
.mnm-mobile-menu.open { display: block; }

/* FOOTER */
.mnm-footer { background: #090f18; border-top: 1px solid rgba(255,255,255,0.06); padding: 50px 50px 0; }
.mnm-footer-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 40px; }
.mnm-footer-logo { font-size: 20px; font-weight: 800; color: #fff; margin-bottom: 10px; }
.mnm-footer-logo span { color: var(--accent); }
.mnm-footer-col p { color: var(--muted); font-size: 13px; line-height: 1.6; margin-bottom: 12px; }
.mnm-footer-langs { font-size: 12px; color: var(--muted); }
.mnm-footer-title { font-size: 12px; font-weight: 700; color: var(--text); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 14px; }
.mnm-footer-col a { display: block; color: var(--muted); text-decoration: none; font-size: 13px; margin-bottom: 8px; transition: color .2s; }
.mnm-footer-col a:hover { color: var(--accent); }
.mnm-footer-bottom { max-width: 1200px; margin: 0 auto; border-top: 1px solid rgba(255,255,255,0.06); padding: 20px 0; display: flex; justify-content: space-between; font-size: 12px; color: var(--muted); flex-wrap: wrap; gap: 10px; }
.mnm-footer-bottom a { color: var(--accent); text-decoration: none; }

@media(max-width: 768px) {
  .mnm-nav { padding: 0 20px; }
  .mnm-links { display: none; }
  .mnm-hamburger { display: block; }
  .mnm-footer { padding: 40px 20px 0; }
  .mnm-footer-inner { grid-template-columns: 1fr 1fr; gap: 24px; }
  .mnm-footer-bottom { flex-direction: column; text-align: center; }
}
@media(max-width: 480px) {
  .mnm-footer-inner { grid-template-columns: 1fr; }
}
