/* Sportsbook template — mobile layout. Loads only on (max-width: 767px). */

.odds { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 8px; }
.odd { background: var(--bg); border: 1px solid var(--border); border-radius: 8px; padding: 10px; text-align: center; cursor: pointer; }
.odd:hover { border-color: var(--accent); }
.odd .v { font-weight: 700; font-size: 16px; color: var(--accent); font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace; }
.odd .l { font-size: 11px; opacity: 0.7; margin-top: 2px; }
.meta { margin-top: 22px; padding: 14px 18px; background: rgba(255, 255, 255, 0.04); border: 1px solid var(--border); border-radius: 8px; font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace; font-size: 12px; white-space: pre; }
.brand-mobile { position: sticky; top: 0; background: var(--bg); border-bottom: 1px solid var(--border); padding: 12px 16px; display: flex; align-items: center; justify-content: space-between; z-index: 2; }
.brand-mobile h1 { margin: 0; font-size: 15px; }
.brand-mobile .badge { font-size: 10px; padding: 4px 8px; border: 1px solid var(--accent); color: var(--accent); border-radius: 12px; text-transform: uppercase; letter-spacing: 0.5px; }
.sports-mobile { position: sticky; top: 44px; background: var(--bg); display: flex; gap: 6px; padding: 10px 16px; border-bottom: 1px solid var(--border); overflow-x: auto; z-index: 1; }
.sports-mobile button { white-space: nowrap; padding: 6px 12px; background: transparent; color: var(--fg); border: 1px solid var(--border); border-radius: 16px; font-size: 12px; font-weight: 600; cursor: pointer; flex-shrink: 0; }
.sports-mobile button.active { background: var(--accent); color: var(--accentFg); border-color: var(--accent); }
.main-mobile { padding: 12px 16px; }
.featured-mobile { background: linear-gradient(135deg, var(--border), transparent); border: 1px solid var(--border); border-radius: 12px; padding: 16px; margin-bottom: 14px; }
.featured-mobile .label { font-size: 10px; color: var(--accent); text-transform: uppercase; letter-spacing: 0.5px; margin: 0 0 6px; }
.featured-mobile h2 { margin: 0 0 4px; font-size: 17px; }
.featured-mobile .when { opacity: 0.6; font-size: 12px; margin-bottom: 12px; }
ul.matches-mobile { list-style: none; padding: 0; margin: 0; }
ul.matches-mobile li { background: rgba(255, 255, 255, 0.02); border: 1px solid var(--border); border-radius: 10px; padding: 12px 14px; margin-bottom: 10px; }
.match-info-mobile .sport { font-size: 10px; color: var(--accent); text-transform: uppercase; letter-spacing: 0.5px; }
.match-info-mobile .teams { font-weight: 600; margin: 2px 0; font-size: 14px; }
.match-info-mobile .starts { opacity: 0.6; font-size: 11px; margin-bottom: 8px; }
.nav-bottom { position: fixed; bottom: 0; left: 0; right: 0; height: 56px; background: var(--bg); border-top: 1px solid var(--border); display: grid; grid-template-columns: repeat(4, 1fr); font-size: 11px; z-index: 2; }
.nav-bottom a { display: flex; align-items: center; justify-content: center; color: var(--fg); text-decoration: none; opacity: 0.65; }
.nav-bottom a.active { opacity: 1; color: var(--accent); }
