/* -- Home Dashboard: Scroll Container -- */
  .home-scroll {
    flex: 1;
    overflow-y: auto;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;

  }
 
  @media (min-width: 1024px) {
    .home-scroll { padding: 2rem; padding-bottom: 2rem; }
  }
 
  /* -- Section Headers -- */
  .home-section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
  }
 
  .home-section-title {
    font-size: 1rem;
    font-weight: 900;
    letter-spacing: -0.025em;
    margin: 0;
  }
 
  .home-section-link {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.75rem;
    font-weight: 700;
    color: #51B4FB;
    text-decoration: none;
  }
  .home-section-link img { width: 0.75rem; height: 0.75rem; }
 
  .home-section-badge {
    background: #F3F5F6;
    color: #31383F;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
  }
 
  /* -- Balance Section -- */
  .home-balance-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
 
  @media (min-width: 768px) {
    /*.home-balance-grid { grid-template-columns: 2fr 1fr; }*/
  }
 
  .home-balance-card {
    background: white;
    border: 2px solid #DDE0E4;
    border-radius: 1rem;
    padding: 1.25rem;
    position: relative;
    overflow: hidden;
  }
 
  .home-balance-card-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
  }
 
  .home-balance-card-label-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
  }
 
  .home-balance-icon {
    width: 2.25rem;
    height: 2.25rem;
    background: rgba(81, 180, 251, 0.2);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
 
  .home-balance-icon img { width: 1.25rem; height: 1.25rem; }
 
  .home-balance-label {
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: -0.025em;
    color: #161A1D;
    margin: 0;
  }
 
  .home-balance-add-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.375rem 1rem;
    border: 2px solid #DDE0E4;
    border-radius: 0.75rem;
    font-size: 0.875rem;
    font-weight: 700;
    background: transparent;
    cursor: pointer;
    transition: background 0.2s;
  }
  .home-balance-add-btn:hover { background: #f9fafb; }
  .home-balance-add-btn img { width: 1rem; height: 1rem; }
 
  .home-balance-amount {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
  }
 
  .home-balance-figure {
    font-size: 1.875rem;
    font-weight: 900;
    letter-spacing: -0.05em;
  }
 
  @media (min-width: 1024px) {
    .home-balance-figure { font-size: 2.25rem; }
  }
 
  .home-balance-currency {
    font-size: 0.75rem;
    font-weight: 700;
    color: #555E68;
  }
 
  .home-balance-crypto-row {
    padding-top: 1rem;
    border-top: 1px solid #DDE0E4;
    display: flex;
    gap: 1.5rem;
  }
 
  .home-balance-crypto-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
 
  .home-balance-crypto-dot {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 9999px;
    flex-shrink: 0;
  }
 
  .home-balance-crypto-dot--btc { background: #F6A655; }
  .home-balance-crypto-dot--eth { background: #9D8CF2; }
 
  .home-balance-crypto-item span {
    font-size: 0.875rem;
    font-weight: 600;
  }
 
  /* -- Stats Cards (desktop only) -- */
  .home-stats-col {
    display: none;
    flex-direction: column;
    gap: 1rem;
  }
 
  @media (min-width: 768px) {
    .home-stats-col { display: flex; }
  }
 
  .home-stat-card {
    flex: 1;
    border-radius: 1rem;
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
 
  .home-stat-card--dark {
    background: #161A1D;
    color: white;
  }
 
  .home-stat-card--light {
    background: #F0F9FF;
    border: 2px solid rgba(81, 180, 251, 0.3);
  }
 
  .home-stat-label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
  }
 
  .home-stat-card--dark .home-stat-label { opacity: 0.6; }
  .home-stat-card--light .home-stat-label { color: #555E68; }
 
  .home-stat-value {
    font-size: 1.875rem;
    font-weight: 900;
    margin: 0.5rem 0;
  }
 
  .home-stat-card--light .home-stat-value { color: #161A1D; }
 
  .home-stat-sub {
    font-size: 0.625rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #51B4FB;
  }
 
  /* -- Quick Bet Card -- */
  .home-quickbet {
    background: #F0F9FF;
    border: 2px solid #51B4FB;
    border-radius: 1rem;
    padding: 1.25rem;
    position: relative;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
  }
 
  .home-quickbet-tag {
    position: absolute;
    top: 0;
    right: 0;
    background: #51B4FB;
    color: white;
    font-size: 0.625rem;
    font-weight: 900;
    padding: 0.25rem 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-bottom-left-radius: 0.75rem;
    border-top-right-radius: 0.75rem;
  }
 
  .home-quickbet-airline {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
  }
 
  .home-quickbet-logo {
    width: 2.5rem;
    height: 2.5rem;
    background: white;
    border: 1px solid #DDE0E4;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
  }
 
  .home-quickbet-logo img { width: 2rem; height: 2rem; object-fit: contain; }
 
  .home-quickbet-flight-code {
    font-size: 0.625rem;
    font-weight: 700;
    color: #555E68;
    text-transform: uppercase;
    margin: 0;
  }
 
  .home-quickbet-route {
    font-size: 1.125rem;
    font-weight: 700;
    margin: 0;
  }
 
  .home-quickbet-stats {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 1.5rem;
  }
 
  .home-quickbet-stat-label {
    font-size: 0.625rem;
    font-weight: 700;
    color: #555E68;
    text-transform: uppercase;
    margin: 0 0 0.25rem;
  }
 
  .home-quickbet-risk {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
 
  .home-quickbet-risk-value {
    font-size: 1.5rem;
    font-weight: 900;
    color: #EB4763;
  }
 
  .home-quickbet-risk img { width: 1rem; height: 1rem; }
 
  .home-quickbet-payout {
    font-size: 1.25rem;
    font-weight: 900;
    text-align: right;
  }
 
  .home-quickbet-btn {
    width: 100%;
    background: #51B4FB;
    color: white;
    font-weight: 700;
    padding: 0.875rem;
    border: none;
    border-radius: 0.75rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    cursor: pointer;
    transition: all 0.2s;
  }
 
  .home-quickbet-btn:hover { background: #40a3e9; }
  .home-quickbet-btn:active { transform: scale(0.98); }
 
  /* -- Market Suggestions -- */
  .home-suggestions-row {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    margin: 0 -1rem;
    padding: 0 1rem;
    scrollbar-width: none;
  }
 
  .home-suggestions-row::-webkit-scrollbar { display: none; }
 
  @media (min-width: 1024px) {
    .home-suggestions-row {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      margin: 0;
      padding: 0;
      overflow-x: unset;
    }
  }
 
  .home-suggestion-card {
    min-width: 160px;
    flex: 1;
    background: white;
    border: 2px solid #DDE0E4;
    border-radius: 1rem;
    padding: 1rem;
    cursor: pointer;
    transition: border-color 0.2s;
  }
 
  .home-suggestion-card:hover { border-color: #51B4FB; }
 
  .home-suggestion-icon {
    width: 1.25rem;
    height: 1.25rem;
    margin-bottom: 1.5rem;
    transform: rotate(90deg);
  }
 
  .home-suggestion-route {
    font-size: 0.75rem;
    font-weight: 700;
    color: #555E68;
    margin: 0 0 0.25rem;
  }
 
  .home-suggestion-risk {
    font-size: 0.875rem;
    font-weight: 900;
    margin: 0 0 1rem;
  }
 
  .home-suggestion-payout {
    display: inline-block;
    border: 1px solid #DDE0E4;
    border-radius: 9999px;
    padding: 0.25rem 0.75rem;
    font-size: 0.625rem;
    font-weight: 700;
    text-transform: uppercase;
    transition: background 0.2s;
  }
 
  .home-suggestion-card:hover .home-suggestion-payout { background: #F0F9FF; }
 
  /* -- Watchlist -- */
  .home-watchlist-card {
    border: 2px dashed #DDE0E4;
    border-radius: 1rem;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: #F9FAFB;
  }
 
  .home-watchlist-icon {
    width: 3rem;
    height: 3rem;
    background: white;
    border: 2px solid #DDE0E4;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
  }
 
  .home-watchlist-icon img { width: 1.5rem; height: 1.5rem; }
 
  .home-watchlist-flight {
    font-size: 0.875rem;
    font-weight: 700;
    margin: 0 0 0.25rem;
  }
 
  .home-watchlist-departure {
    font-size: 0.75rem;
    color: #555E68;
    margin: 0 0 1.5rem;
  }
 
  .home-watchlist-btn {
    width: 100%;
    background: white;
    border: 2px solid #DDE0E4;
    color: #161A1D;
    font-weight: 700;
    padding: 0.625rem;
    border-radius: 0.75rem;
    cursor: pointer;
    transition: background 0.2s;
  }
 
  .home-watchlist-btn:hover { background: #f9fafb; }
 
  /* -- Recent Payouts -- */
  .home-payouts-list {
    background: white;
    border: 2px solid #DDE0E4;
    border-radius: 1rem;
    overflow: hidden;
  }
 
  .home-payout-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border-bottom: 1px solid #DDE0E4;
  }
 
  .home-payout-row:last-child { border-bottom: none; }
 
  .home-payout-icon {
    width: 2rem;
    height: 2rem;
    border: 1px solid #DDE0E4;
    border-radius: 0.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
 
  .home-payout-icon--loss {
    border-color: #EB4763;
    background: rgba(235, 71, 99, 0.1);
  }
 
  .home-payout-icon img { width: 1rem; height: 1rem; }
 
  .home-payout-info { flex: 1; }
 
  .home-payout-flight {
    font-size: 0.75rem;
    font-weight: 700;
    margin: 0;
  }
 
  .home-payout-outcome {
    font-size: 0.625rem;
    font-weight: 500;
    color: #555E68;
    text-transform: uppercase;
    margin: 0;
  }
 
  .home-payout-amount-col { text-align: right; color:var(--brand-primary)}
 
  .home-payout-amount {
    font-size: 0.875rem;
    font-weight: 900;
    margin: 0;
  }
 
  .home-payout-amount--loss { color: #555E68; }
 
  .home-payout-status {
    font-size: 0.5625rem;
    font-weight: 700;
    color: #555E68;
    text-transform: uppercase;
    margin: 0;
  }