/*! Romabet base.css — minimal structural rules.
    romabet-theme.css loads AFTER this and provides all colors/theming. */

:root {
  --od-bg-body: #ffffff;
  --od-bg-primary: #ffffff;
  --od-bg-secondary: #f7f7f7;
  --od-bg-tertiary: #efefef;
  --od-bg-card: #ffffff;
  --od-bg-hover: #f0f0f0;
  --od-bg-box: #ffffff;
  --od-text-primary: #1a1a1a;
  --od-text-secondary: #555;
  --od-text-muted: #888;
  --od-accent: #d32f2f;
  --od-accent-2: #ff1744;
  --od-accent-soft: rgba(211,47,47,.10);
  --od-border: rgba(0,0,0,.08);
  --od-border-strong: rgba(0,0,0,.14);
  --od-danger: #d32f2f;
  --od-radius: 6px;
  --od-radius-lg: 10px;
  --od-font: 'Inter',-apple-system,BlinkMacSystemFont,'Segoe UI',Roboto,sans-serif;
  --od-max: 1200px;
  --od-transition: all .2s ease;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  font-family: var(--od-font);
  background: var(--od-bg-body);
  color: var(--od-text-primary);
  line-height: 1.5;
  min-height: 100vh;
  font-size: 14px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  letter-spacing: -.005em;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
button { font-family: inherit; cursor: pointer; background: transparent; border: 0; color: inherit; }
h1, h2, h3, h4, h5, h6 {
  font-family: var(--od-font);
  font-weight: 700;
  letter-spacing: -.015em;
  margin: 0;
}
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: var(--od-bg-tertiary); }
::-webkit-scrollbar-thumb { background: var(--od-accent); border: 2px solid var(--od-bg-tertiary); border-radius: 6px; }

/* Shell */
.xdfc6dc {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  background: var(--od-bg-box);
  min-height: 100vh;
  position: relative;
}
.od-wrap {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 40px;
}
.od-shell { min-height: 100vh; display: flex; flex-direction: column; }
.od-shell > main,
.x2fb33c { min-height: calc(100vh - 200px); padding: 25px 0; background: var(--od-bg-primary); flex: 1; }

/* Header nav */
.od-nav { position: relative; z-index: 100; background: var(--od-bg-primary); border-bottom: 1px solid var(--od-border); }
.od-nav-inner {
  display: flex; align-items: center;
  padding: 14px 40px; gap: 25px; max-width: 100%;
}
.od-brand { display: flex; align-items: center; flex-shrink: 0; line-height: 1; }
.od-brand img { height: 40px; max-width: 220px; object-fit: contain; }
.od-brand span { font-size: 22px; font-weight: 700; }

.od-menu { list-style: none; display: flex; gap: 22px; margin: 0; padding: 0; }
.od-menu > li > a {
  display: inline-block; padding: 8px 0;
  font-size: 14px; font-weight: 600;
  color: var(--od-text-primary);
  transition: color .15s ease;
}
.od-nav-right { display: flex; align-items: center; gap: 14px; margin-left: auto; }

/* Buttons */
.od-btn {
  display: inline-block; padding: 8px 16px;
  font-family: inherit; font-size: 13px; font-weight: 600;
  border-radius: var(--od-radius); border: 0;
  cursor: pointer; transition: var(--od-transition);
  text-align: center; white-space: nowrap;
}
.od-btn-ghost { background: transparent; color: var(--od-text-primary); border: 1px solid var(--od-border-strong); }
.od-btn-primary,
.od-btn-cta { background: var(--od-accent); color: #fff; }

/* Mobile toggle */
.od-mobile-toggle {
  display: none;
  align-items: center; justify-content: center;
  width: 40px; height: 40px;
  background: transparent; border: 0; color: inherit;
  cursor: pointer;
}

/* Mobile menu overlay */
.od-mobile-menu {
  position: fixed; inset: 0;
  background: #0a0a0a;
  color: #fff;
  z-index: 9999;
  padding: 60px 30px 30px;
  overflow-y: auto;
  transform: translateX(-100%);
  transition: transform .25s ease;
}
.od-mobile-menu.is-open { transform: translateX(0); }
.od-mobile-menu ul { list-style: none; padding: 0; margin: 0; }
.od-mobile-menu li { border-bottom: 1px solid rgba(255,255,255,.08); }
.od-mobile-menu a {
  display: block;
  padding: 16px 4px;
  font-size: 20px; font-weight: 700;
  color: #fff;
}
.od-mobile-close {
  position: absolute; top: 16px; right: 20px;
  width: 44px; height: 44px;
  background: transparent; border: 0;
  color: #fff; font-size: 32px; line-height: 1;
  cursor: pointer;
}

/* Mobile bottom tabbar */
.od-tabbar {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0;
  background: #fff; border-top: 1px solid var(--od-border);
  height: 60px;
  z-index: 90;
}
.od-tabbar a {
  flex: 1;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 4px;
  font-size: 10px; font-weight: 600;
  color: var(--od-text-secondary);
  text-decoration: none;
  transition: color .15s ease;
}
.od-tabbar a svg { width: 20px; height: 20px; }
.od-tabbar a.is-active { color: var(--od-accent); }

/* Announcement */
.od-notice {
  background: var(--od-accent);
  color: #fff;
  padding: 10px 0;
  text-align: center;
}
.od-notice-inner {
  max-width: var(--od-max);
  margin: 0 auto;
  padding: 0 40px;
  font-size: 13px; font-weight: 600;
}

/* Prose (page content) */
.od-prose { font-size: 15px; line-height: 1.75; max-width: 900px; margin: 0 auto; padding: 20px 0 40px; }
.od-prose h1, .od-prose h2, .od-prose h3, .od-prose h4 { margin: 26px 0 12px; }
.od-prose p { margin: 0 0 14px; }
.od-prose ul, .od-prose ol { padding-left: 22px; margin: 0 0 16px; }
.od-prose li { margin-bottom: 8px; }

.od-section { margin: 24px 0; }
.od-section-eyebrow { text-transform: uppercase; letter-spacing: 2px; font-size: 11px; font-weight: 700; }
.od-section-title { font-size: 22px; margin: 6px 0 10px; }

/* Footer */
.od-foot { padding: 40px 0 24px; }
.od-foot-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; }
.od-foot-brand { display: inline-block; margin-bottom: 8px; }
.od-foot-brand img { max-height: 44px; }
.od-foot-lede { font-size: 13px; line-height: 1.6; margin-top: 8px; }
.od-foot-col h5 { font-size: 14px; margin: 0 0 12px; text-transform: uppercase; letter-spacing: 1px; }
.od-foot-col a { display: block; padding: 5px 0; font-size: 13px; }

/* Hidden mobile search overlay (unused but referenced) */
.od-mobile-search-overlay { display: none; }
.od-search, .od-search-btn, .od-search-dropdown { display: none; }

/* Responsive */
@media (max-width: 900px) {
  .od-wrap { padding: 0 18px; }
  .od-nav-inner { padding: 12px 18px; gap: 14px; }
  .od-menu { display: none; }
  .od-mobile-toggle { display: inline-flex; }
  .od-tabbar { display: flex; padding-bottom: env(safe-area-inset-bottom); }
  .xdfc6dc { padding-bottom: 60px; }
  .od-foot-grid { grid-template-columns: 1fr; gap: 24px; }
}
