/* ==========================================================================
   BETTING POO — STRICT DESIGN GUIDE THEME & FUNCTIONAL INTERACTIONS
   ========================================================================== */

:root {
  --bg-app: #0F1722;
  --bg-header: #0F1722;
  --bg-subnav: #0F1722;
  --bg-card: #172230;
  --bg-card-inner: #1C2B3C;
  --bg-slot: #1C2B3C;
  --bg-slot-hover: #223348;
  
  --border-subtle: #243447;
  --border-slot: #283B52;

  --color-green: #52C471;
  --color-green-btn: #52C471;
  --color-green-btn-hover: #45B062;
  --color-orange: #FF5A36;
  --color-orange-btn: #FF5A36;
  --color-orange-btn-hover: #E84D2B;
  
  --text-white: #FFFFFF;
  --text-light: #E2E8F0;
  --text-dim: #889EB5;
  --text-muted: #5C7086;

  --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-pill: 20px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body.bp-dark-app {
  background-color: var(--bg-app);
  color: var(--text-light);
  font-family: var(--font-family);
  font-size: 14px;
  line-height: 1.4;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
  cursor: pointer;
}

.btn-text-only {
  background: transparent;
  border: none;
  color: inherit;
  font: inherit;
  cursor: pointer;
  padding: 0;
}

.green-text { color: var(--color-green) !important; }
.red-text { color: var(--color-orange) !important; }
.text-right { text-align: right; }
.hidden { display: none !important; }

/* --------------------------------------------------------------------------
   TOAST NOTIFICATIONS
   -------------------------------------------------------------------------- */
.toast-container {
  position: fixed;
  top: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  z-index: 9999;
  pointer-events: none;
}

.toast-msg {
  background: rgba(23, 34, 48, 0.95);
  border: 1px solid var(--border-subtle);
  border-left: 4px solid var(--color-green);
  color: var(--text-white);
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 600;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(6px);
  animation: slideInRight 0.3s ease;
  pointer-events: auto;
}

.toast-msg.orange-border {
  border-left-color: var(--color-orange);
}

@keyframes slideInRight {
  from { transform: translateX(100%); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

/* --------------------------------------------------------------------------
   1. TOP HEADER
   -------------------------------------------------------------------------- */
.bp-header {
  background: var(--bg-header);
  border-bottom: 1px solid var(--border-subtle);
  padding: 0.75rem 2rem;
}

.header-inner {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.bp-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--color-green);
  letter-spacing: -0.3px;
  cursor: pointer;
}

.logo-avatar {
  font-size: 1.6rem;
}

.bp-header-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-item-plain {
  color: var(--text-dim);
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: color 0.2s;
}

.nav-item-plain:hover {
  color: var(--text-white);
}

.bp-btn-signup {
  background-color: var(--color-green-btn);
  color: #0F1722;
  border: none;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.45rem 1.25rem;
  border-radius: var(--radius-pill);
  transition: background 0.2s, transform 0.1s;
}

.bp-btn-signup:hover {
  background-color: var(--color-green-btn-hover);
  transform: translateY(-1px);
}

/* --------------------------------------------------------------------------
   2. SUB NAVIGATION BAR & DROPDOWNS
   -------------------------------------------------------------------------- */
.bp-subnav {
  background: var(--bg-subnav);
  border-bottom: 1px solid var(--border-subtle);
  padding: 0 2rem;
}

.subnav-inner {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.subnav-links {
  display: flex;
  gap: 1.8rem;
}

.subnav-link {
  color: var(--text-dim);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.85rem 0;
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  background: transparent;
  border: none;
  transition: color 0.2s;
}

.subnav-link:hover {
  color: var(--text-white);
}

.subnav-link.active {
  color: var(--color-green);
  font-weight: 600;
}

.subnav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background-color: var(--color-green);
}

.dropdown-wrapper {
  position: relative;
  display: inline-block;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
  min-width: 180px;
  z-index: 500;
  display: flex;
  flex-direction: column;
  padding: 4px;
  margin-top: 4px;
}

.dropdown-item {
  color: var(--text-light);
  padding: 8px 12px;
  font-size: 0.85rem;
  border-radius: var(--radius-sm);
  background: transparent;
  border: none;
  text-align: left;
  display: block;
  width: 100%;
  transition: background 0.15s;
}

.dropdown-item:hover, .dropdown-item.active {
  background: var(--bg-slot);
  color: var(--color-green);
}

.subnav-tools {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.promote-link {
  color: var(--text-dim);
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  transition: color 0.2s;
}

.promote-link:hover { color: var(--text-white); }

.gear-btn {
  background: transparent;
  border: none;
  font-size: 1rem;
  color: var(--text-dim);
  transition: transform 0.2s;
}

.gear-btn:hover { transform: rotate(45deg); color: var(--text-white); }

/* --------------------------------------------------------------------------
   3. PAGE TITLE ROW
   -------------------------------------------------------------------------- */
.bp-page-title-row {
  padding: 1.5rem 2rem 1rem 2rem;
}

.title-inner {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.main-title {
  font-size: 1.85rem;
  font-weight: 800;
  color: var(--text-white);
  letter-spacing: -0.5px;
}

.title-badges {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.btn-dropdown-pill {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  color: var(--text-light);
  padding: 0.4rem 1rem;
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: background 0.2s;
}

.btn-dropdown-pill:hover { background: var(--bg-slot); }

.badge-revived {
  background: var(--color-green);
  color: #0F1722;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 0.4rem 1rem;
  border-radius: var(--radius-pill);
  transition: opacity 0.2s;
}

.badge-revived:hover { opacity: 0.9; }

/* --------------------------------------------------------------------------
   4. MAIN TWO-COLUMN LAYOUT
   -------------------------------------------------------------------------- */
.bp-main-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 2rem 2rem 2rem;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  flex: 1;
}

@media (max-width: 1100px) {
  .bp-main-container {
    grid-template-columns: 1fr;
  }
}

/* --------------------------------------------------------------------------
   5. LEFT COLUMN: VIDEO FEED & BOTTOM CARDS
   -------------------------------------------------------------------------- */
.bp-col-left {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.bp-section-video {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.section-heading {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 1.05rem;
  font-weight: 800;
}

.badge-live-tag {
  color: var(--color-orange);
  text-transform: uppercase;
}

.section-title-white {
  color: var(--text-white);
}

.bp-video-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #050B12;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
}

#puppy-video, #puppy-canvas {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.v-badge-top-left {
  position: absolute;
  top: 12px;
  left: 12px;
}

.v-live-tag {
  background: var(--color-orange);
  color: #FFF;
  font-size: 0.7rem;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: var(--radius-sm);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.v-badge-bottom-left {
  position: absolute;
  bottom: 12px;
  left: 12px;
}

.v-badge-bottom-right {
  position: absolute;
  bottom: 12px;
  right: 12px;
}

.btn-badge {
  background: rgba(0, 0, 0, 0.75);
  color: #FFF;
  border: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  transition: background 0.2s;
}

.btn-badge:hover { background: rgba(0, 0, 0, 0.95); }

.v-cam-tag {
  font-family: var(--font-mono);
  font-weight: 700;
}

.bp-resolution-banner {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 34, 0.85);
  backdrop-filter: blur(4px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  z-index: 20;
}

.banner-emoji { font-size: 3rem; }
.banner-text {
  color: var(--color-green);
  font-weight: 800;
  font-size: 1.1rem;
  text-align: center;
}

.video-caption-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 0.25rem;
}

.video-caption {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-white);
}

.stream-fps {
  font-size: 0.75rem;
  color: var(--color-green);
  font-family: var(--font-mono);
  font-weight: 600;
}

/* Lower Left Grid */
.bp-lower-left-grid {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.bp-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
}

.card-header-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.card-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-white);
}

.link-see-all {
  color: var(--color-green);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
}

.link-see-all:hover { text-decoration: underline; }

/* Upcoming Rounds */
.rounds-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.round-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.6rem 0.5rem;
  border-bottom: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  transition: background 0.15s;
}

.clickable-row {
  cursor: pointer;
}

.clickable-row:hover {
  background: var(--bg-slot);
}

.round-row:last-child {
  border-bottom: none;
}

.round-time {
  font-weight: 600;
  color: var(--text-light);
}

.round-outcome {
  font-weight: 700;
}

/* Prognosticators Table */
.prog-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.prog-table th {
  color: var(--text-muted);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.4rem 0.5rem 0.6rem 0.5rem;
  text-align: left;
  border-bottom: 1px solid var(--border-subtle);
}

.prog-table td {
  padding: 0.75rem 0.5rem;
  border-bottom: 1px solid var(--border-subtle);
}

.prog-row {
  cursor: pointer;
  transition: background 0.15s;
}

.prog-row:hover {
  background: var(--bg-slot);
}

.prog-table tr:last-child td {
  border-bottom: none;
}

.th-rank, .td-rank {
  width: 50px;
  color: var(--text-dim);
  font-weight: 700;
}

.medal {
  font-size: 0.9rem;
}

.user-cell {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  color: var(--text-light);
}

.user-avatar-icon {
  background: var(--bg-slot);
  padding: 4px 6px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
}

.td-odds {
  font-family: var(--font-mono);
  font-weight: 700;
}

/* --------------------------------------------------------------------------
   6. RIGHT COLUMN: CURRENT MARKET, PROBABILITY CHART, PORTFOLIO & ACTIVITY
   -------------------------------------------------------------------------- */
.bp-col-right {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.current-market-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.market-top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.meta-label {
  color: var(--text-dim);
  font-size: 0.85rem;
  font-weight: 600;
}

.icon-btn {
  background: transparent;
  border: none;
  color: var(--text-dim);
  font-size: 0.95rem;
  cursor: pointer;
}

.market-headline {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text-white);
  line-height: 1.25;
}

/* Market Time Slots */
.market-slots-list {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.market-slot {
  background: var(--bg-slot);
  border: 1px solid var(--border-slot);
  border-radius: var(--radius-md);
  padding: 0.85rem 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.2s, border-color 0.2s;
}

.market-slot:hover {
  background: var(--bg-slot-hover);
  border-color: #354E6D;
}

.slot-time {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-white);
  margin-bottom: 0.25rem;
}

.slot-prices {
  display: flex;
  gap: 1rem;
  font-size: 0.85rem;
  font-weight: 700;
}

.slot-prices span {
  cursor: pointer;
}

.slot-prices span:hover {
  text-decoration: underline;
}

.slot-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.35rem;
}

.slot-actions {
  display: flex;
  gap: 0.4rem;
}

.btn-buy {
  background: var(--color-green-btn);
  color: #0F1722;
  border: none;
  font-weight: 700;
  font-size: 0.8rem;
  padding: 4px 14px;
  border-radius: var(--radius-sm);
  transition: opacity 0.2s, transform 0.1s;
}

.btn-buy:hover { opacity: 0.9; transform: translateY(-1px); }

.btn-sell {
  background: var(--color-orange-btn);
  color: #FFF;
  border: none;
  font-weight: 700;
  font-size: 0.8rem;
  padding: 4px 14px;
  border-radius: var(--radius-sm);
  transition: opacity 0.2s, transform 0.1s;
}

.btn-sell:hover { opacity: 0.9; transform: translateY(-1px); }

.vol-label {
  color: var(--text-muted);
  font-size: 0.75rem;
  font-weight: 500;
}

/* Volume Histogram Sparklines */
.sparkline-bar {
  display: flex;
  align-items: flex-end;
  gap: 2px;
  height: 20px;
  cursor: pointer;
}

.sparkline-bar .bar {
  width: 3px;
  border-radius: 1px;
}

.sparkline-bar .bar.g { background-color: var(--color-green); }
.sparkline-bar .bar.r { background-color: var(--color-orange); }

/* Probability Chart Section */
.bp-chart-section {
  border-top: 1px solid var(--border-subtle);
  padding-top: 1rem;
  margin-top: 0.5rem;
}

.chart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
}

.chart-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-white);
}

.expand-icon {
  color: var(--text-dim);
  cursor: pointer;
  font-size: 1.1rem;
}

.expand-icon:hover { color: var(--text-white); }

.chart-container {
  position: relative;
  width: 100%;
  height: 140px;
  background: #111B27;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  cursor: crosshair;
}

#probability-chart {
  width: 100%;
  height: 100%;
  display: block;
}

.chart-y-axis {
  position: absolute;
  right: 6px;
  top: 4px;
  bottom: 4px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  font-size: 0.65rem;
  color: var(--text-muted);
  font-family: var(--font-mono);
  pointer-events: none;
}

.chart-x-axis {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  color: var(--text-muted);
  font-family: var(--font-mono);
  margin-top: 0.4rem;
  padding: 0 0.5rem;
}

/* Lower Right Grid */
.bp-lower-right-grid {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

/* Portfolio Card */
.portfolio-subtitle {
  color: var(--text-muted);
  font-size: 0.8rem;
  margin-top: -0.5rem;
  margin-bottom: 0.75rem;
}

.portfolio-items {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.portfolio-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--bg-slot);
  border: 1px solid var(--border-slot);
  padding: 0.75rem 1rem;
  border-radius: var(--radius-md);
  transition: background 0.15s;
}

.portfolio-row:hover {
  background: var(--bg-slot-hover);
}

.p-item-left {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  color: var(--text-white);
  font-size: 0.95rem;
}

.p-currency-tag {
  color: var(--text-muted);
  font-size: 0.8rem;
  font-weight: 700;
}

/* Recent Activity Card */
.activity-feed {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.activity-row {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.85rem;
  color: var(--text-dim);
  padding: 0.4rem 0;
  border-bottom: 1px solid var(--border-subtle);
}

.activity-row:last-child {
  border-bottom: none;
}

.user-badge {
  background: #3B4D63;
  color: #FFF;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
}

.activity-text {
  color: var(--text-light);
}

/* --------------------------------------------------------------------------
   7. FOOTER
   -------------------------------------------------------------------------- */
.bp-footer {
  background: var(--bg-header);
  border-top: 1px solid var(--border-subtle);
  padding: 1.25rem 2rem;
  margin-top: auto;
}

.footer-inner {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
  font-size: 0.85rem;
  color: var(--text-dim);
}

.footer-link {
  color: var(--text-dim);
  transition: color 0.2s;
}

.footer-link:hover {
  color: var(--text-white);
}

.bp-btn-get-started {
  background-color: var(--color-green-btn);
  color: #0F1722;
  border: none;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 0.55rem 1.4rem;
  border-radius: var(--radius-pill);
  transition: background 0.2s, transform 0.1s;
}

.bp-btn-get-started:hover {
  background-color: var(--color-green-btn-hover);
  transform: translateY(-1px);
}

/* --------------------------------------------------------------------------
   8. MODALS & POPUPS
   -------------------------------------------------------------------------- */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  animation: fadeIn 0.2s ease;
}

.modal-box {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  width: 90%;
  max-width: 420px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
}

.modal-box.wide {
  max-width: 600px;
}

.modal-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-top h3 {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text-white);
}

.modal-close-x {
  background: transparent;
  border: none;
  color: var(--text-dim);
  font-size: 1.5rem;
  cursor: pointer;
}

.modal-close-x:hover { color: var(--text-white); }

.modal-content {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.modal-desc {
  font-size: 0.85rem;
  color: var(--text-dim);
  line-height: 1.45;
}

.modal-odds-summary {
  display: flex;
  justify-content: space-between;
  font-weight: 700;
  font-size: 1rem;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.form-row label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-dim);
}

.form-row input {
  background: var(--bg-slot);
  border: 1px solid var(--border-slot);
  color: var(--text-white);
  padding: 0.6rem 0.75rem;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-family: var(--font-mono);
}

.form-row input:focus {
  outline: none;
  border-color: var(--color-green);
}

.quick-chips {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.35rem;
}

.chip-btn {
  background: var(--bg-slot);
  border: 1px solid var(--border-slot);
  color: var(--text-dim);
  padding: 4px 0;
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  font-weight: 700;
}

.chip-btn:hover { background: var(--bg-slot-hover); color: var(--text-white); }

.modal-calc-box {
  background: var(--bg-slot);
  padding: 0.75rem;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.calc-row {
  display: flex;
  justify-content: space-between;
  color: var(--text-dim);
}

.calc-row strong {
  font-family: var(--font-mono);
  color: var(--text-white);
}

.btn-confirm-bet {
  background: var(--color-green-btn);
  color: #0F1722;
  border: none;
  width: 100%;
  padding: 0.75rem;
  border-radius: var(--radius-md);
  font-weight: 800;
  font-size: 0.95rem;
  transition: background 0.2s;
}

.btn-confirm-bet:hover { background: var(--color-green-btn-hover); }

.btn-secondary-modal {
  background: var(--bg-slot);
  color: var(--text-light);
  border: 1px solid var(--border-slot);
  width: 100%;
  padding: 0.65rem;
  border-radius: var(--radius-md);
  font-weight: 600;
}

.btn-secondary-modal:hover { background: var(--bg-slot-hover); }

.welcome-gift-card {
  background: rgba(82, 196, 113, 0.12);
  border: 1px solid rgba(82, 196, 113, 0.3);
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: var(--color-green);
}

/* Profile Modal Details */
.profile-header-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--bg-slot);
  padding: 12px;
  border-radius: var(--radius-md);
}

.prof-avatar { font-size: 2.2rem; }
.prof-rank { font-weight: 700; color: var(--text-white); }
.prof-fav { font-size: 0.8rem; color: var(--text-dim); }

.profile-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.stat-card {
  background: var(--bg-slot);
  padding: 10px;
  border-radius: var(--radius-sm);
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat-card span { font-size: 0.75rem; color: var(--text-dim); }
.stat-card strong { font-size: 1.15rem; font-family: var(--font-mono); color: var(--text-white); }

/* Badges */
.badge-active { background: var(--color-green); color: #000; font-weight: 700; font-size: 0.7rem; padding: 2px 6px; border-radius: 4px; }
.badge-pending { background: #334155; color: #CBD5E1; font-size: 0.7rem; padding: 2px 6px; border-radius: 4px; }

.info-modal-body p {
  margin-bottom: 0.75rem;
  font-size: 0.85rem;
  color: var(--text-dim);
  line-height: 1.5;
}
