    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      scrollbar-width: none;
      -ms-overflow-style: none;
    }

    *::-webkit-scrollbar {
      display: none;
    }

    html, body {
      scrollbar-width: none;
      -ms-overflow-style: none;
    }

    body {
      font-family: 'Arial', sans-serif;
      background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
      color: white;
      min-height: 100vh;
      overflow-x: hidden;
    }

    /* Mobile submenu adjustments */
    @media (max-width: 768px) {

    }

    /* Live Scoreboard Section */
    #live-scores h2 {
      text-align: center;
      margin-bottom: 25px;
      font-size: 2.2rem;
      font-weight: bold;
      background: linear-gradient(45deg, #00ff00, #00cc88);
      background-clip: text;
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      letter-spacing: 1px;
      text-shadow: 0 0 20px rgba(0, 255, 0, 0.3);
      padding: 10px 0;
    }

    #live-scores {
      background: rgba(255, 255, 255, 0.05);
      backdrop-filter: blur(15px);
      border: 1px solid rgba(255, 255, 255, 0.1);
      margin: 80px 20px 40px 20px;
      border-radius: 20px;
      padding: 20px;
    }

    .scores-container {
      display: flex;
      gap: 15px;
      overflow-x: auto;
      overflow-y: hidden;
      padding: 10px 0;
      scrollbar-width: thin;
      scrollbar-color: rgba(0, 255, 0, 0.3) transparent;
    }

    .scores-container::-webkit-scrollbar {
      height: 6px;
    }

    .scores-container::-webkit-scrollbar-track {
      background: rgba(255, 255, 255, 0.1);
      border-radius: 10px;
    }

    .scores-container::-webkit-scrollbar-thumb {
      background: linear-gradient(45deg, #00ff00, #00cc88);
      border-radius: 10px;
    }

    .score-item {
      flex: 0 0 auto;
      min-width: 200px;
      padding: 12px 16px;
      background: rgba(0, 255, 0, 0.1);
      border: 1px solid rgba(0, 255, 0, 0.2);
      border-radius: 12px;
      backdrop-filter: blur(10px);
      transition: all 0.3s ease;
      white-space: nowrap;
      text-align: center;
      font-size: 0.9rem;
    }

    .score-item:hover {
      background: rgba(0, 255, 0, 0.2);
      transform: translateY(-2px);
      box-shadow: 0 5px 15px rgba(0, 255, 0, 0.2);
    }

    .score-item:hover {
      background: rgba(0, 255, 0, 0.2);
      transform: translateY(-2px);
      box-shadow: 0 5px 15px rgba(0, 255, 0, 0.2);
    }

    /* Live score item styling */
    .score-item.live-score {
      border: 2px solid #ff0000;
      box-shadow: 0 0 20px rgba(255, 0, 0, 0.5);
      animation: pulse-red-score 2s infinite;
    }

      100% {
        box-shadow: 0 0 20px rgba(255, 0, 0, 0.5);
      }
    }

    .loading-scores {
      text-align: center;
      padding: 20px;
      color: #00ff00;
      font-style: italic;
    }

    .loading-scores {
      text-align: center;
      padding: 20px;
      color: #00ff00;
      font-style: italic;
    }

    /* Main content */
    .main-content {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    /* Casino CTA Button */
    .casino-cta {
      margin-top: 15px;
      margin-bottom: 50px;
      display: flex;
      justify-content: center;
    }

    .casino-btn {
      display: flex;
      flex-direction: column;
      align-items: center;
      background: linear-gradient(90deg, #ff00ff, #ff6600, #ffcc00, #ff00ff);
      background-size: 300% 100%;
      color: #fff;
      text-decoration: none;
      padding: 22px 140px;
      border-radius: 50px;
      cursor: pointer;
      transition: all 0.3s ease;
      box-shadow: 
        0 0 20px rgba(255, 0, 255, 0.8),
        0 0 40px rgba(255, 102, 0, 0.6),
        0 0 60px rgba(255, 0, 255, 0.4),
        0 10px 40px rgba(255, 102, 0, 0.5);
      border: 3px solid rgba(255, 255, 255, 0.4);
      position: relative;
      overflow: hidden;
      animation: colorFlow 3s ease infinite, pulseGlow 2s ease-in-out infinite;
    }

    @keyframes colorFlow {
      0% { background-position: 0% 50%; }
      50% { background-position: 100% 50%; }
      100% { background-position: 0% 50%; }
    }

    @keyframes pulseGlow {
      0%, 100% { 
        box-shadow: 
          0 0 20px rgba(255, 0, 255, 0.8),
          0 0 40px rgba(255, 102, 0, 0.6),
          0 0 60px rgba(255, 0, 255, 0.4),
          0 10px 40px rgba(255, 102, 0, 0.5);
      }
      50% { 
        box-shadow: 
          0 0 30px rgba(255, 0, 255, 1),
          0 0 60px rgba(255, 102, 0, 0.9),
          0 0 90px rgba(255, 204, 0, 0.6),
          0 15px 60px rgba(255, 102, 0, 0.7);
      }
    }

    .casino-btn::before {
      content: '';
      position: absolute;
      top: -50%;
      left: -50%;
      width: 200%;
      height: 200%;
      background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.4), transparent);
      transform: rotate(45deg);
      animation: shimmer 2s infinite;
    }

    .casino-btn::after {
      content: '';
      position: absolute;
      inset: -3px;
      border-radius: 50px;
      background: linear-gradient(90deg, #ff00ff, #ff6600, #ffcc00, #ff00ff);
      background-size: 300% 100%;
      z-index: -1;
      filter: blur(15px);
      opacity: 0.7;
      animation: colorFlow 3s ease infinite;
    }

    @keyframes shimmer {
      0% { transform: translateX(-100%) rotate(45deg); }
      100% { transform: translateX(100%) rotate(45deg); }
    }

    .casino-btn:hover {
      transform: translateY(-8px) scale(1.05);
      box-shadow: 
        0 0 40px rgba(255, 0, 255, 1),
        0 0 80px rgba(255, 102, 0, 1),
        0 0 120px rgba(255, 204, 0, 0.8),
        0 20px 80px rgba(255, 102, 0, 0.8);
      border-color: rgba(255, 255, 255, 0.8);
    }

    .casino-btn-icon {
      font-size: 2.2rem;
      margin-bottom: 5px;
      filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.8));
      animation: iconBounce 1s ease-in-out infinite;
    }

    @keyframes iconBounce {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-3px); }
    }

    .casino-btn-text {
      font-size: 1.5rem;
      font-weight: 900;
      text-transform: uppercase;
      letter-spacing: 3px;
      text-shadow: 
        0 0 10px rgba(255, 255, 255, 0.8),
        0 0 20px rgba(255, 204, 0, 0.6),
        0 2px 10px rgba(0, 0, 0, 0.5);
    }

    .casino-btn-subtext {
      font-size: 0.9rem;
      opacity: 1;
      margin-top: 5px;
      text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
      font-weight: 600;
    }

    /* Keep create-bet styles for backwards compatibility */
    .create-bet {
      margin-bottom: 50px;
      display: none;
    }

    .create-btn {
      background: linear-gradient(45deg, #00ff00, #00cc88);
      color: #000;
      border: none;
      padding: 20px 40px;
      font-size: 1.5rem;
      font-weight: bold;
      border-radius: 50px;
      cursor: pointer;
      transition: all 0.3s ease;
      text-transform: uppercase;
      letter-spacing: 1px;
      box-shadow: 0 10px 30px rgba(0, 255, 0, 0.3);
    }

    .create-btn:hover {
      transform: translateY(-3px);
      box-shadow: 0 15px 40px rgba(0, 255, 0, 0.4);
      background: linear-gradient(45deg, #00cc88, #00ff00);
    }

    .create-btn:active {
      transform: translateY(-1px);
    }

    /* Sports Buttons Grid */
    .sports-buttons {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 18px;
      width: 100%;
      max-width: 960px;
      margin-bottom: 50px;
      padding: 20px;
    }

    .sport-card {
      background: linear-gradient(170deg, #111827, #0a0f1e);
      border: 1.5px solid rgba(255,255,255,0.07);
      border-radius: 18px;
      padding: 18px 10px 14px;
      cursor: pointer;
      transition: all 0.3s ease;
      position: relative;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 8px;
      text-decoration: none;
    }

    .sport-card-accent {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 3px;
      border-radius: 18px 18px 0 0;
    }

    .sport-card-hound {
      width: 120px;
      height: 120px;
      object-fit: contain;
      transition: all 0.3s ease;
      filter: drop-shadow(0 6px 14px rgba(0,0,0,0.5));
    }

    .sport-card-name {
      font-family: 'Oswald', sans-serif;
      font-size: 0.85rem;
      font-weight: 600;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      color: rgba(255,255,255,0.85);
      transition: color 0.3s ease;
    }

    .sport-card:hover {
      transform: translateY(-5px);
      border-color: rgba(255,255,255,0.15);
    }

    .sport-card:hover .sport-card-hound {
      transform: scale(1.1);
    }

    .sport-card:hover .sport-card-name {
      color: #fff;
    }

    .sc-nfl .sport-card-accent { background: linear-gradient(90deg, #FF4500, #cc3700); }
    .sc-nfl:hover { box-shadow: 0 12px 30px rgba(255,69,0,0.25); border-color: rgba(255,69,0,0.3); }

    .sc-mlb .sport-card-accent { background: linear-gradient(90deg, #007BFF, #0056b3); }
    .sc-mlb:hover { box-shadow: 0 12px 30px rgba(0,123,255,0.25); border-color: rgba(0,123,255,0.3); }

    .sc-nhl .sport-card-accent { background: linear-gradient(90deg, #8a9bae, #5a6a7a); }
    .sc-nhl:hover { box-shadow: 0 12px 30px rgba(138,155,174,0.25); border-color: rgba(138,155,174,0.3); }

    .sc-nba .sport-card-accent { background: linear-gradient(90deg, #FFC107, #e0a800); }
    .sc-nba:hover { box-shadow: 0 12px 30px rgba(255,193,7,0.25); border-color: rgba(255,193,7,0.3); }

    .sc-ncaafb .sport-card-accent { background: linear-gradient(90deg, #8B0000, #a52a2a); }
    .sc-ncaafb:hover { box-shadow: 0 12px 30px rgba(139,0,0,0.25); border-color: rgba(139,0,0,0.3); }

    .sc-ncaabb .sport-card-accent { background: linear-gradient(90deg, #FF8C00, #cc7000); }
    .sc-ncaabb:hover { box-shadow: 0 12px 30px rgba(255,140,0,0.25); border-color: rgba(255,140,0,0.3); }

    .sc-pga .sport-card-accent { background: linear-gradient(90deg, #28A745, #1e7e34); }
    .sc-pga:hover { box-shadow: 0 12px 30px rgba(40,167,69,0.25); border-color: rgba(40,167,69,0.3); }

    .sc-soccer .sport-card-accent { background: linear-gradient(90deg, #00C853, #009624); }
    .sc-soccer:hover { box-shadow: 0 12px 30px rgba(0,200,83,0.25); border-color: rgba(0,200,83,0.3); }

    .sc-tennis .sport-card-accent { background: linear-gradient(90deg, #C6FF00, #9ecc00); }
    .sc-tennis:hover { box-shadow: 0 12px 30px rgba(198,255,0,0.2); border-color: rgba(198,255,0,0.3); }

    .sc-ufc .sport-card-accent { background: linear-gradient(90deg, #DC3545, #b02a37); }
    .sc-ufc:hover { box-shadow: 0 12px 30px rgba(220,53,69,0.25); border-color: rgba(220,53,69,0.3); }

    /* Modern Open Bets Section */
    .open-bets-modern {
      background: rgba(255, 255, 255, 0.05);
      backdrop-filter: blur(15px);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 20px;
      padding: 25px;
      margin: 0 20px 40px 20px;
      max-width: 100%;
      box-sizing: border-box;
    }

    .open-bets-modern h3 {
      color: #00ff00;
      margin-bottom: 20px;
      text-align: center;
      font-size: 1.8rem;
      font-weight: bold;
      letter-spacing: 1px;
      text-shadow: 0 0 20px rgba(0, 255, 0, 0.3);
    }

    .bets-table-container {
      max-height: 300px;
      overflow-y: auto;
      scrollbar-width: thin;
      scrollbar-color: rgba(0, 255, 0, 0.3) transparent;
    }

    .bets-table-container::-webkit-scrollbar {
      width: 8px;
    }

    .bets-table-container::-webkit-scrollbar-track {
      background: rgba(255, 255, 255, 0.1);
      border-radius: 10px;
    }

    .bets-table-container::-webkit-scrollbar-thumb {
      background: linear-gradient(45deg, #00ff00, #00cc88);
      border-radius: 10px;
    }

    .loading-bets {
      text-align: center;
      padding: 30px;
      color: #00ff00;
      font-style: italic;
      font-size: 1.1rem;
    }

    .bet-row {
      display: grid;
      grid-template-columns: 1fr 1.5fr 1fr 0.8fr 1fr;
      gap: 10px;
      align-items: center;
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 15px;
      padding: 15px;
      margin-bottom: 15px;
      transition: all 0.3s ease;
      position: relative;
      overflow: hidden;
    }

    .bet-row::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 3px;
      background: linear-gradient(90deg, #00ff00, #00cc88, #0099ff);
      opacity: 0;
      transition: opacity 0.3s ease;
    }

    .bet-row:hover {
      background: rgba(255, 255, 255, 0.08);
      border-color: rgba(0, 255, 0, 0.3);
      transform: translateY(-2px);
      box-shadow: 0 8px 25px rgba(0, 255, 0, 0.15);
    }

    .bet-row:hover::before {
      opacity: 1;
    }

    .bet-creator {
      font-size: 0.8rem;
      color: #00ff00;
      font-weight: 500;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      flex-shrink: 0;
      white-space: nowrap;
    }

    .bet-game {
      font-size: 1.1rem;
      font-weight: bold;
      color: #fff;
    }

    .bet-type {
      color: #00cc88;
      font-size: 1rem;
      font-weight: 500;
    }

    .bet-amount {
      color: #ff9900;
      font-size: 1.2rem;
      font-weight: bold;
    }

    .bet-odds {
      color: #ccc;
      font-size: 1rem;
    }

    /* Open bet pulsing indicator */
    .bet-row.open-bet {
      border: 2px solid #ff6600;
      box-shadow: 0 0 20px rgba(255, 102, 0, 0.5);
      animation: pulse-orange 2s infinite;
    }

    @keyframes pulse-orange {
      0% {
        box-shadow: 0 0 20px rgba(255, 102, 0, 0.5);
      }
      50% {
        box-shadow: 0 0 30px rgba(255, 102, 0, 0.8);
      }
      100% {
        box-shadow: 0 0 20px rgba(255, 102, 0, 0.5);
      }
    }

    /* Join Bet Button */
    .join-bet-btn {
      background: linear-gradient(45deg, #00ff00, #00cc88);
      color: #000;
      border: none;
      padding: 10px 18px;
      font-size: 0.9rem;
      font-weight: bold;
      border-radius: 10px;
      cursor: pointer;
      transition: all 0.3s ease;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      box-shadow: 0 4px 10px rgba(0, 255, 0, 0.2);
    }

    .join-bet-btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 6px 15px rgba(0, 255, 0, 0.4);
      background: linear-gradient(45deg, #00cc88, #00ff00);
    }

    .join-bet-btn:active {
      transform: translateY(0);
    }

    /* Widgets Container - Grid Layout for 1-4 widgets */
    .widgets-container {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
      gap: 20px;
      margin: 80px auto 40px auto;
      max-width: 1200px;
      width: 100%;
      padding: 0 20px;
      box-sizing: border-box;
      align-items: start;
    }
    
    /* Center single widget */
    .widgets-container.single-widget {
      grid-template-columns: 1fr;
      max-width: 600px;
    }

    /* Leaderboard Section */
    .leaderboard-section {
      background: rgba(255, 255, 255, 0.05);
      backdrop-filter: blur(15px);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 20px;
      padding: 12px;
      width: 100%;
      box-sizing: border-box;
    }

    /* Hot Games Widget */
    .hot-games-widget {
      background: rgba(255, 255, 255, 0.05);
      backdrop-filter: blur(15px);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 20px;
      padding: 12px;
      width: 100%;
      box-sizing: border-box;
      max-height: 300px;
      overflow-y: auto;
      display: flex;
      flex-direction: column;
      scrollbar-width: thin;
      scrollbar-color: rgba(255, 102, 0, 0.3) transparent;
    }
    
    .hot-games-widget::-webkit-scrollbar {
      width: 6px;
    }

    .hot-games-widget::-webkit-scrollbar-thumb {
      background: linear-gradient(45deg, #ff6600, #ff8844);
      border-radius: 10px;
    }

    .hot-games-widget::-webkit-scrollbar-track {
      background: transparent;
    }

    .hot-games-widget h3 {
      color: #ff6600;
      font-size: 1.8rem;
      font-weight: bold;
      letter-spacing: 1px;
      text-shadow: 0 0 20px rgba(255, 102, 0, 0.4);
      text-align: center;
      margin-bottom: 12px;
    }

    /* My Stats Widget */
    .my-stats-widget {
      background: rgba(255, 255, 255, 0.05);
      backdrop-filter: blur(15px);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 20px;
      padding: 12px;
      width: 100%;
      box-sizing: border-box;
      max-height: 250px;
      overflow-y: auto;
      display: flex;
      flex-direction: column;
      scrollbar-width: thin;
      scrollbar-color: rgba(0, 255, 0, 0.3) transparent;
    }
    
    .my-stats-widget::-webkit-scrollbar {
      width: 6px;
    }

    .my-stats-widget::-webkit-scrollbar-thumb {
      background: linear-gradient(45deg, #00ff00, #00cc88);
      border-radius: 10px;
    }

    .my-stats-widget::-webkit-scrollbar-track {
      background: transparent;
    }

    .my-stats-widget h3 {
      color: #00ff00;
      font-size: 20px !important;
      font-weight: bold;
      letter-spacing: 1px;
      text-shadow: 0 0 20px rgba(0, 255, 0, 0.4);
      text-align: center;
      margin-bottom: 12px;
    }

    #my-stats-container {
      padding-right: 5px;
    }

    .stat-item {
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid rgba(0, 255, 0, 0.2);
      border-radius: 10px;
      padding: 8px 12px;
      margin-bottom: 8px;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .stat-label {
      font-size: 14px !important;
      color: rgba(255, 255, 255, 0.7);
      font-weight: 500;
    }

    .stat-value {
      font-size: 16px !important;
      font-weight: bold;
      color: #00ff00;
    }

    .stat-value.negative {
      color: #ff4444;
    }

    /* Friend Activity Widget */
    .friend-activity-widget {
      background: rgba(255, 255, 255, 0.05);
      backdrop-filter: blur(15px);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 20px;
      padding: 12px;
      width: 100%;
      box-sizing: border-box;
      max-height: 300px;
      overflow-y: auto;
      display: flex;
      flex-direction: column;
      scrollbar-width: thin;
      scrollbar-color: rgba(0, 170, 255, 0.3) transparent;
    }
    
    .friend-activity-widget::-webkit-scrollbar {
      width: 6px;
    }

    .friend-activity-widget::-webkit-scrollbar-thumb {
      background: linear-gradient(45deg, #00aaff, #0088cc);
      border-radius: 10px;
    }

    .friend-activity-widget::-webkit-scrollbar-track {
      background: transparent;
    }

    .friend-activity-widget h3 {
      color: #00aaff;
      font-size: 1.8rem;
      font-weight: bold;
      letter-spacing: 1px;
      text-shadow: 0 0 20px rgba(0, 170, 255, 0.4);
      text-align: center;
      margin-bottom: 12px;
    }

    #friend-activity-container {
      padding-right: 5px;
    }

    .friend-activity-item {
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid rgba(0, 170, 255, 0.2);
      border-radius: 15px;
      padding: 8px 10px;
      margin-bottom: 8px;
      transition: all 0.3s ease;
    }

    .friend-activity-item:hover {
      background: rgba(0, 170, 255, 0.1);
      border-color: rgba(0, 170, 255, 0.4);
      transform: translateY(-2px);
      box-shadow: 0 8px 25px rgba(0, 170, 255, 0.2);
    }

    .friend-username {
      font-size: 0.9rem;
      font-weight: bold;
      color: #00aaff;
      margin-bottom: 4px;
    }

    .friend-bet-info {
      font-size: 0.8rem;
      color: rgba(255, 255, 255, 0.8);
      line-height: 1.4;
    }

    .friend-bet-amount {
      font-size: 0.85rem;
      font-weight: bold;
      color: #00ff00;
      margin-top: 4px;
    }

    /* Live Games Widget */
    .live-games-widget {
      background: rgba(255, 255, 255, 0.05);
      backdrop-filter: blur(15px);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 20px;
      padding: 12px;
      width: 100%;
      box-sizing: border-box;
      height: 250px;
      max-height: 250px;
      overflow-y: auto;
      display: flex;
      flex-direction: column;
      scrollbar-width: thin;
      scrollbar-color: rgba(255, 0, 0, 0.3) transparent;
    }
    
    .live-games-widget::-webkit-scrollbar {
      width: 6px;
    }

    .live-games-widget::-webkit-scrollbar-thumb {
      background: linear-gradient(45deg, #ff0000, #ff4444);
      border-radius: 10px;
    }

    .live-games-widget::-webkit-scrollbar-track {
      background: transparent;
    }

    .live-games-widget h3 {
      color: #ff0000;
      font-size: 1.8rem;
      font-weight: bold;
      letter-spacing: 1px;
      text-shadow: 0 0 20px rgba(255, 0, 0, 0.4);
      text-align: center;
      margin-bottom: 12px;
    }

    #live-games-container {
      padding-right: 5px;
    }

    .live-game-item {
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid rgba(255, 0, 0, 0.2);
      border-radius: 15px;
      padding: 10px 12px;
      margin-bottom: 8px;
      transition: all 0.3s ease;
    }

    .live-game-item:hover {
      background: rgba(255, 0, 0, 0.1);
      border-color: rgba(255, 0, 0, 0.4);
      transform: translateY(-2px);
      box-shadow: 0 8px 25px rgba(255, 0, 0, 0.2);
    }

    .live-game-sport {
      font-size: 0.75rem;
      font-weight: bold;
      color: #ff0000;
      margin-bottom: 4px;
    }

    .live-game-teams {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 6px;
      font-size: 0.9rem;
      font-weight: bold;
      margin-bottom: 4px;
      flex-wrap: wrap;
    }

    .live-game-teams .team-name {
      color: #00ff88;
    }

    .live-game-teams .vs-text {
      color: #00ff88;
      font-size: 0.8rem;
    }

    .live-game-score {
      text-align: center;
      font-size: 0.85rem;
      color: #fff;
      font-weight: bold;
      margin-bottom: 4px;
    }

    .live-game-clock {
      font-size: 0.75rem;
      color: rgba(255, 255, 255, 0.6);
      text-align: center;
    }

    /* Personalized Picks Widget */
    .personalized-picks-widget {
      background: rgba(255, 255, 255, 0.05);
      backdrop-filter: blur(15px);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 20px;
      padding: 12px;
      width: 100%;
      box-sizing: border-box;
      max-height: 300px;
      overflow-y: auto;
      display: flex;
      flex-direction: column;
      scrollbar-width: thin;
      scrollbar-color: rgba(255, 215, 0, 0.3) transparent;
    }
    
    .personalized-picks-widget::-webkit-scrollbar {
      width: 6px;
    }

    .personalized-picks-widget::-webkit-scrollbar-thumb {
      background: linear-gradient(45deg, #ffd700, #ffaa00);
      border-radius: 10px;
    }

    .personalized-picks-widget::-webkit-scrollbar-track {
      background: transparent;
    }

    .personalized-picks-widget h3 {
      color: #ffd700;
      font-size: 1.8rem;
      font-weight: bold;
      letter-spacing: 1px;
      text-shadow: 0 0 20px rgba(255, 215, 0, 0.4);
      text-align: center;
      margin-bottom: 12px;
    }

    #personalized-picks-container {
      padding-right: 5px;
    }

    .pick-item {
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid rgba(255, 215, 0, 0.2);
      border-radius: 15px;
      padding: 10px 12px;
      margin-bottom: 8px;
      transition: all 0.3s ease;
    }

    .pick-item:hover {
      background: rgba(255, 215, 0, 0.1);
      border-color: rgba(255, 215, 0, 0.4);
      transform: translateY(-2px);
      box-shadow: 0 8px 25px rgba(255, 215, 0, 0.2);
    }

    .pick-sport {
      font-size: 0.75rem;
      font-weight: bold;
      color: #ffd700;
      margin-bottom: 4px;
    }

    .pick-matchup {
      font-size: 0.85rem;
      color: #fff;
      margin-bottom: 6px;
    }

    .pick-recommendation {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-top: 6px;
    }

    .pick-team {
      font-size: 0.9rem;
      font-weight: bold;
      color: #00ff00;
    }

    .pick-confidence {
      font-size: 0.8rem;
      color: #ffd700;
      font-weight: bold;
    }

    .hot-game-item {
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid rgba(255, 102, 0, 0.2);
      border-radius: 15px;
      padding: 8px 10px;
      margin-bottom: 8px;
      transition: all 0.3s ease;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 8px;
    }

    .hot-game-item:hover {
      background: rgba(255, 102, 0, 0.1);
      border-color: rgba(255, 102, 0, 0.4);
      transform: translateY(-2px);
      box-shadow: 0 8px 25px rgba(255, 102, 0, 0.2);
    }

    .hot-game-teams {
      display: flex;
      align-items: center;
      gap: 8px;
      flex: 1;
      min-width: 0;
      overflow: hidden;
    }

    .hot-game-logo {
      width: 40px;
      height: 40px;
      object-fit: contain;
      border-radius: 50%;
      border: 2px solid rgba(255, 102, 0, 0.3);
    }

    .hot-game-matchup {
      font-size: 0.8rem;
      font-weight: bold;
      color: #fff;
      line-height: 1.3;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }

    .hot-game-sport {
      display: inline-block;
      padding: 2px 6px;
      font-size: 0.75rem;
      background: rgba(255, 102, 0, 0.2);
      border: 1px solid rgba(255, 102, 0, 0.4);
      border-radius: 8px;
      font-size: 0.75rem;
      font-weight: bold;
      color: #ff6600;
      text-transform: uppercase;
      margin-right: 10px;
    }

    .hot-game-count {
      display: flex;
      align-items: center;
      gap: 4px;
      font-size: 0.9rem;
      font-weight: bold;
      color: #ff6600;
      white-space: nowrap;
      flex-shrink: 0;
    }

    .leaderboard-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 15px;
      flex-wrap: wrap;
      gap: 10px;
      position: relative;
    }

    .leaderboard-header h3 {
      color: #00ff00;
      font-size: 1.8rem;
      font-weight: bold;
      letter-spacing: 1px;
      text-shadow: 0 0 20px rgba(0, 255, 0, 0.3);
      flex: 1 1 100%;
      text-align: center;
      margin: 0;
      padding-right: 130px;
    }

    .view-all-btn {
      margin: 0 auto;
      display: block;
      background: linear-gradient(45deg, #00ff00, #00cc88);
      color: #000;
      border: none;
      padding: 10px 20px;
      font-size: 0.9rem;
      font-weight: bold;
      border-radius: 10px;
      cursor: pointer;
      transition: all 0.3s ease;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }

    .view-all-btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 6px 15px rgba(0, 255, 0, 0.4);
    }

    /* Top Dawg Styling */
    .top-dawg-card {
      background: linear-gradient(135deg, rgba(255, 215, 0, 0.15), rgba(255, 193, 7, 0.1));
      border: 2px solid #ffd700;
      border-radius: 15px;
      padding: 10px;
      margin-bottom: 10px;
      display: flex;
      align-items: center;
      gap: 12px;
      position: relative;
      overflow: hidden;
    }

    .top-dawg-card::before {
      content: '👑';
      position: absolute;
      top: 10px;
      right: 10px;
      font-size: 2rem;
    }

    .top-dawg-rank {
      font-size: 2rem;
      font-weight: bold;
      color: #ffd700;
      min-width: 60px;
    }

    .top-dawg-info {
      flex: 1;
    }

    .top-dawg-username {
      font-size: 1.5rem;
      font-weight: bold;
      color: #fff;
      margin-bottom: 5px;
    }

    .top-dawg-stats {
      display: flex;
      gap: 20px;
      flex-wrap: wrap;
    }

    .top-dawg-stat {
      font-size: 0.9rem;
      color: #ccc;
    }

    .top-dawg-stat strong {
      color: #00ff00;
    }

    /* Dawg Pack Container */
    .dawg-pack-container {
      display: flex;
      gap: 10px;
      overflow-x: auto;
      padding: 10px 0;
      scrollbar-width: thin;
      scrollbar-color: rgba(0, 255, 0, 0.3) transparent;
    }

    .dawg-pack-container::-webkit-scrollbar {
      height: 6px;
    }

    .dawg-pack-container::-webkit-scrollbar-track {
      background: rgba(255, 255, 255, 0.1);
      border-radius: 10px;
    }

    .dawg-pack-container::-webkit-scrollbar-thumb {
      background: linear-gradient(45deg, #00ff00, #00cc88);
      border-radius: 10px;
    }

    /* Dawg Pack Card */
    .dawg-pack-card {
      flex: 0 0 auto;
      min-width: 200px;
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 12px;
      padding: 10px;
      transition: all 0.3s ease;
    }

    .dawg-pack-card:hover {
      background: rgba(255, 255, 255, 0.08);
      border-color: rgba(0, 255, 0, 0.3);
      transform: translateY(-2px);
    }

    .dawg-pack-rank {
      font-size: 1.5rem;
      font-weight: bold;
      color: #00cc88;
      margin-bottom: 5px;
    }

    .dawg-pack-username {
      font-size: 1.1rem;
      font-weight: bold;
      color: #fff;
      margin-bottom: 10px;
    }

    .dawg-pack-stat {
      font-size: 0.85rem;
      color: #ccc;
      margin-bottom: 3px;
    }

    .dawg-pack-stat strong {
      color: #00ff00;
    }

    /* Leaderboard Modal Filter Buttons */
    .filter-btn {
      background: rgba(255, 255, 255, 0.1);
      border: 1px solid rgba(255, 255, 255, 0.2);
      color: #ccc;
      padding: 8px 16px;
      border-radius: 8px;
      cursor: pointer;
      transition: all 0.3s ease;
      font-size: 0.9rem;
      font-weight: 500;
    }

    .filter-btn:hover {
      background: rgba(255, 255, 255, 0.15);
      border-color: rgba(0, 255, 0, 0.3);
    }

    .filter-btn.active {
      background: linear-gradient(45deg, #00ff00, #00cc88);
      color: #000;
      border-color: #00ff00;
      font-weight: bold;
    }

    /* Full Leaderboard Row */
    .full-leaderboard-row {
      display: grid;
      grid-template-columns: 60px 1fr 120px 100px 120px;
      gap: 15px;
      align-items: center;
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 10px;
      padding: 15px;
      margin-bottom: 10px;
      transition: all 0.3s ease;
    }

    .full-leaderboard-row:hover {
      background: rgba(255, 255, 255, 0.08);
      border-color: rgba(0, 255, 0, 0.3);
      transform: translateY(-2px);
    }

    .full-leaderboard-row.top-three {
      border: 2px solid #ffd700;
      background: rgba(255, 215, 0, 0.1);
    }

    .leaderboard-rank-col {
      font-size: 1.5rem;
      font-weight: bold;
      color: #00ff00;
      text-align: center;
    }

    .leaderboard-rank-col.gold {
      color: #ffd700;
    }

    .leaderboard-rank-col.silver {
      color: #c0c0c0;
    }

    .leaderboard-rank-col.bronze {
      color: #cd7f32;
    }

    .leaderboard-username-col {
      font-size: 1.1rem;
      font-weight: bold;
      color: #fff;
    }

    .leaderboard-stat-col {
      font-size: 0.9rem;
      color: #ccc;
      text-align: center;
    }

    .leaderboard-stat-col strong {
      color: #00ff00;
      font-size: 1rem;
    }

    /* Leaderboard Toggle Button - All Screen Sizes */
    .mobile-toggle-btn {
      display: block;
      width: auto;
      background: rgba(255, 255, 255, 0.1);
      border: 1px solid rgba(255, 255, 255, 0.2);
      color: #00ff00;
      padding: 6px 12px;
      border-radius: 8px;
      cursor: pointer;
      font-size: 0.8rem;
      font-weight: bold;
      transition: all 0.3s ease;
      position: absolute;
      top: 0;
      right: 0;
    }

    .mobile-toggle-btn:hover {
      background: rgba(255, 255, 255, 0.15);
      border-color: rgba(0, 255, 0, 0.3);
    }

    .mobile-toggle-btn:active {
      background: rgba(255, 255, 255, 0.2);
    }

    /* Collapsed State - All Screen Sizes */
    #leaderboard-content.collapsed {
      display: none;
    }

    /* Leaderboard Mobile Responsiveness */
    @media (max-width: 768px) {
      .widgets-container {
        flex-direction: column;
        margin: 80px 5px 20px 5px !important;
        gap: 15px;
      }

      .leaderboard-section {
        margin: 0 !important;
        padding: 10px !important;
        max-width: 100% !important;
        width: 100% !important;
      }

      .hot-games-widget {
        margin: 0 !important;
        padding: 15px !important;
        max-width: 100% !important;
        width: 100% !important;
      }

      .leaderboard-header h3 {
        font-size: 1.2rem !important;
        text-align: center;
      }

      .view-all-btn {
        width: 100%;
        padding: 8px 15px;
        font-size: 0.85rem;
      }

      .mobile-toggle-btn {
        width: 100%;
        padding: 10px;
        margin-top: 5px;
      }

      /* Top Dawg Mobile - Much Smaller */
      .top-dawg-card {
        flex-direction: column;
        text-align: center;
        padding: 8px !important;
        margin-bottom: 8px !important;
      }

      .top-dawg-rank {
        font-size: 1.5rem !important;
      }

      .top-dawg-username {
        font-size: 1rem !important;
        margin-bottom: 5px;
      }

      .top-dawg-stats {
        flex-direction: column;
        gap: 3px !important;
        align-items: center;
      }

      .top-dawg-stat {
        font-size: 0.75rem !important;
      }

      /* Dawg Pack Mobile - Much Smaller */
      .dawg-pack-card {
        min-width: 120px !important;
        padding: 8px !important;
      }

      .dawg-pack-rank {
        font-size: 1rem !important;
        margin-bottom: 3px;
      }

      .dawg-pack-username {
        font-size: 0.85rem !important;
        margin-bottom: 5px;
      }

      .dawg-pack-stat {
        font-size: 0.7rem !important;
        margin-bottom: 2px;
      }
    }

      /* Full Leaderboard Modal Mobile */
      .leaderboard-filters {
        flex-direction: column;
        gap: 8px;
      }

      .filter-btn {
        width: 100%;
      }

      .full-leaderboard-row {
        grid-template-columns: 50px 1fr;
        gap: 10px;
        padding: 12px;
      }

      .leaderboard-rank-col {
        font-size: 1.2rem;
      }

      .leaderboard-username-col {
        font-size: 1rem;
        grid-column: 2;
      }

      .leaderboard-stat-col {
        font-size: 0.85rem;
        grid-column: 1 / -1;
        text-align: left;
        display: inline-block;
        margin-right: 15px;
      }
    }

    /* Small mobile devices */
    @media (max-width: 480px) {
      .leaderboard-header h3 {
        font-size: 1.2rem;
      }

      .top-dawg-rank {
        font-size: 2rem;
      }

      .top-dawg-username {
        font-size: 1.1rem;
      }

      .dawg-pack-card {
        min-width: 140px;
      }
    }

    /* Game styles */

    .game-matchup {
      font-size: 0.9rem;
      font-weight: bold;
      color: #fff;
      margin-bottom: 5px;
      white-space: nowrap;
    }

    .game-details {
      display: flex;
      gap: 15px;
      align-items: center;
      flex-wrap: wrap;
    }

    .game-datetime {
      font-size: 0.9rem;
      color: #00cc88;
      font-weight: 500;
    }

    .game-status {
      font-size: 0.85rem;
      font-weight: bold;
      padding: 3px 8px;
      border-radius: 12px;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }

    .game-status.scheduled {
      background: rgba(153, 153, 153, 0.2);
      color: #999;
    }

    .game-status.live {
      background: rgba(255, 0, 0, 0.2);
      color: #ff0000;
      animation: pulse-status 2s infinite;
    }

    .game-status.final {
      background: rgba(0, 255, 0, 0.2);
      color: #00ff00;
    }

    }

    /* Mobile responsive adjustments */
    @media (max-width: 768px) {
      .game-details {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
      }

      .game-datetime, .game-status {
        font-size: 0.8rem;
      }
    }

    /* Live game indicator */
    .bet-row.live-game {
      border: 2px solid #ff0000;
      box-shadow: 0 0 20px rgba(255, 0, 0, 0.5);
      animation: pulse-red 2s infinite;
    }

      100% {
        box-shadow: 0 0 20px rgba(255, 0, 0, 0.5);
      }
    }

    /* Game status display */
    .game-status {
      font-size: 0.8rem;
      color: #999;
      font-weight: normal;
      margin-top: 5px;
    }

    .bet-row.live-game .game-status {
      color: #ff0000;
      font-weight: bold;
      text-transform: uppercase;
    }

    /* Live indicator dot */
    .bet-row.live-game .game-status::before {
      content: "● ";
      color: #ff0000;
      animation: blink 1s infinite;
    }

    @keyframes blink {
      0%, 50% { opacity: 1; }
      51%, 100% { opacity: 0.3; }
    }

    /* Mobile responsive - Comprehensive optimization */
    @media (max-width: 768px) {
      body {
        padding: 0;
        margin: 0;
        font-size: 14px;
      }

      /* Header mobile optimization */

      /* Navigation mobile optimization */

      /* Live scores mobile optimization */
      #live-scores {
        margin: 0 10px 20px 10px;
        padding: 15px;
      }

      #live-scores h2 {
        font-size: 1.6rem;
        margin-bottom: 15px;
      }

      .score-item {
        min-width: 180px;
        padding: 10px 12px;
        font-size: 0.8rem;
      }

      /* Main content mobile optimization */
      .main-content {
        padding: 0 10px;
      }

      /* Casino button mobile */
      .casino-cta {
        margin-bottom: 30px;
      }

      .casino-btn {
        padding: 18px 35px;
        width: 90%;
        max-width: 340px;
      }

      .casino-btn-icon {
        font-size: 1.8rem;
      }

      .casino-btn-text {
        font-size: 1.2rem;
        letter-spacing: 2px;
      }

      .casino-btn-subtext {
        font-size: 0.85rem;
      }

      .create-btn {
        padding: 15px 25px;
        font-size: 1.1rem;
        width: 100%;
        max-width: 300px;
      }

      /* Sports buttons mobile optimization */
      .sports-buttons {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        padding: 10px;
        max-width: 100%;
      }

      .sport-card {
        padding: 14px 8px 10px;
      }

      .sport-card-hound {
        width: 90px;
        height: 90px;
      }

      .sport-card-name {
        font-size: 0.75rem;
      }

      /* Open bets mobile optimization */
      .open-bets-modern {
        margin: 0 10px 20px 10px;
        padding: 15px;
      }

      .open-bets-modern h3 {
        font-size: 1.4rem;
        margin-bottom: 15px;
      }

      .bet-row {
        grid-template-columns: 1fr;
        gap: 10px;
        text-align: left;
        padding: 15px;
        margin-bottom: 10px;
      }

      .bet-game {
        font-size: 1rem;
        margin-bottom: 8px;
      }

      .game-matchup {
        font-size: 1rem;
      }

      .game-details {
        flex-direction: column;
        gap: 5px;
        align-items: flex-start;
      }

      .game-datetime, .game-status {
        font-size: 0.8rem;
      }

      .bet-type, .bet-amount, .bet-odds {
        font-size: 0.9rem;
        margin-bottom: 5px;
      }

      .join-bet-btn {
        width: 100%;
        padding: 12px;
        font-size: 0.9rem;
        margin-top: 10px;
      }

      /* Modal mobile optimization */
      .modal-container {
        width: 98%;
        max-width: none;
        margin: 10px;
        max-height: 90vh;
      }

      .modal-header h2 {
        font-size: 1.4rem;
      }

      .modal-content {
        padding: 15px;
      }

      .form-row {
        flex-direction: column;
        align-items: stretch;
        gap: 15px;
      }

      .form-group {
        min-width: auto;
      }

      .form-select, .form-input {
        padding: 12px;
        font-size: 1rem;
      }

      .context-info {
        padding: 12px;
        font-size: 0.9rem;
      }
    }

    /* iPhone specific optimizations */
    @media (max-width: 480px) {

      /* Navigation for small screens */

      /* Sports buttons for very small screens */
      .sports-buttons {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        padding: 5px;
      }

      .sport-card {
        padding: 12px 6px 8px;
      }

      .sport-card-hound {
        width: 70px;
        height: 70px;
      }

      .sport-card-name {
        font-size: 0.7rem;
      }


      /* Create button for small screens */
      .create-btn {
        padding: 12px 20px;
        font-size: 1rem;
        width: 100%;
      }

      /* Live scores very small screens */
      .score-item {
        min-width: 160px;
        font-size: 0.75rem;
        padding: 8px 10px;
      }

      #live-scores h2 {
        font-size: 1.4rem;
      }

      /* Open bets very small screens */
      .open-bets-modern h3 {
        font-size: 1.2rem;
      }

      .bet-row {
        padding: 12px;
      }

      .game-matchup {
        font-size: 0.9rem;
      }

      .bet-type, .bet-amount, .bet-odds {
        font-size: 0.8rem;
      }

      .join-bet-btn {
        padding: 10px;
        font-size: 0.8rem;
      }
    }

    /* Landscape mobile optimization */
    @media (max-width: 768px) and (orientation: landscape) {

      .sports-buttons {
        grid-template-columns: repeat(4, 1fr);
        gap: 10px;
      }

      .create-bet {
        margin-bottom: 20px;
      }
    }

    /* Touch target optimization */
    @media (hover: none) and (pointer: coarse) {
      .sport-card, .join-bet-btn, .create-btn,
      .form-select, .form-input {
        min-height: 44px;
      }
    }

    /* Animation for page load */
    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(30px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .sport-card {
      animation: fadeInUp 0.6s ease forwards;
    }

    .sport-card:nth-child(1) { animation-delay: 0.1s; }
    .sport-card:nth-child(2) { animation-delay: 0.15s; }
    .sport-card:nth-child(3) { animation-delay: 0.2s; }
    .sport-card:nth-child(4) { animation-delay: 0.25s; }
    .sport-card:nth-child(5) { animation-delay: 0.3s; }
    .sport-card:nth-child(6) { animation-delay: 0.35s; }
    .sport-card:nth-child(7) { animation-delay: 0.4s; }
    .sport-card:nth-child(8) { animation-delay: 0.45s; }
    .sport-card:nth-child(9) { animation-delay: 0.5s; }
    .sport-card:nth-child(10) { animation-delay: 0.55s; }

    /* Message notification badge */
    .message-badge {
      display: inline-block;
      background: linear-gradient(45deg, #ff0000, #ff4444);
      color: white;
      font-size: 0.7rem;
      font-weight: bold;
      padding: 2px 6px;
      border-radius: 10px;
      margin-left: 5px;
      min-width: 18px;
      text-align: center;
      box-shadow: 0 2px 8px rgba(255, 0, 0, 0.4);
      animation: pulse-badge 2s infinite;
    }

    }

    /* Account Modal Tabs */
    .account-tabs {
      display: flex;
      gap: 6px;
      margin-bottom: 20px;
      border-bottom: 2px solid rgba(255, 255, 255, 0.1);
      padding-bottom: 10px;
      flex-wrap: nowrap;
      overflow-x: auto;
      scrollbar-width: thin;
      scrollbar-color: rgba(0, 255, 0, 0.3) rgba(0, 0, 0, 0.2);
    }

    .account-tabs::-webkit-scrollbar {
      height: 6px;
    }

    .account-tabs::-webkit-scrollbar-track {
      background: rgba(0, 0, 0, 0.2);
      border-radius: 3px;
    }

    .account-tabs::-webkit-scrollbar-thumb {
      background: rgba(0, 255, 0, 0.3);
      border-radius: 3px;
    }

    .account-tabs::-webkit-scrollbar-thumb:hover {
      background: rgba(0, 255, 0, 0.5);
    }

    .account-tab {
      flex: 1 0 auto;
      min-width: fit-content;
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid rgba(255, 255, 255, 0.2);
      color: #ccc;
      padding: 10px 14px;
      border-radius: 8px 8px 0 0;
      cursor: pointer;
      transition: all 0.3s ease;
      font-size: 0.85rem;
      font-weight: 500;
      text-align: center;
      white-space: nowrap;
    }

    .account-tab:hover {
      background: rgba(255, 255, 255, 0.1);
      border-color: rgba(0, 255, 0, 0.3);
    }

    .account-tab.active {
      background: linear-gradient(45deg, #00ff00, #00cc88);
      color: #000;
      border-color: #00ff00;
      font-weight: bold;
    }

    /* Mobile Account Tab Optimization */
    @media (max-width: 768px) {
      .account-tabs {
        gap: 5px;
        padding-bottom: 8px;
      }

      .account-tab {
        padding: 8px 10px;
        font-size: 0.75rem;
      }
    }

    @media (max-width: 480px) {
      .account-tabs {
        gap: 3px;
      }

      .account-tab {
        padding: 8px 6px;
        font-size: 0.7rem;
      }
    }

    .tab-content {
      animation: fadeIn 0.3s ease;
    }

    @keyframes fadeIn {
      from { opacity: 0; }
      to { opacity: 1; }
    }

    /* Conversation items */
    .conversation-item {
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 10px;
      padding: 15px;
      margin-bottom: 10px;
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .conversation-item:hover {
      background: rgba(255, 255, 255, 0.1);
      border-color: rgba(0, 255, 0, 0.3);
      transform: translateY(-2px);
      box-shadow: 0 5px 15px rgba(0, 255, 0, 0.1);
    }

    /* Conversation Modal */
    .messages-display {
      background: rgba(0, 0, 0, 0.3);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 10px;
      padding: 15px;
      max-height: 400px;
      overflow-y: auto;
      margin-bottom: 20px;
      scrollbar-width: thin;
      scrollbar-color: rgba(0, 255, 0, 0.3) transparent;
    }

    .messages-display::-webkit-scrollbar {
      width: 6px;
    }

    .messages-display::-webkit-scrollbar-thumb {
      background: linear-gradient(45deg, #00ff00, #00cc88);
      border-radius: 10px;
    }

    .message-bubble {
      padding: 12px 15px;
      border-radius: 15px;
      margin-bottom: 12px;
      max-width: 80%;
      word-wrap: break-word;
      animation: fadeIn 0.3s ease;
    }

    .message-bubble.sent {
      background: linear-gradient(45deg, #00ff00, #00cc88);
      color: #000;
      margin-left: auto;
      text-align: right;
      border-bottom-right-radius: 5px;
    }

    .message-bubble.received {
      background: rgba(255, 255, 255, 0.1);
      color: #fff;
      margin-right: auto;
      border-bottom-left-radius: 5px;
    }

    .message-time {
      font-size: 0.75rem;
      color: rgba(255, 255, 255, 0.6);
      margin-top: 5px;
    }

    .message-bubble.sent .message-time {
      color: rgba(0, 0, 0, 0.6);
    }

    .message-reply-area {
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 10px;
      padding: 15px;
    }

    /* Delete message button */
    .delete-message-btn {
      background: rgba(255, 0, 0, 0.2);
      border: 1px solid rgba(255, 0, 0, 0.3);
      color: #ff6666;
      padding: 4px 8px;
      border-radius: 5px;
      cursor: pointer;
      font-size: 0.9rem;
      transition: all 0.3s ease;
      opacity: 0.6;
    }

    .delete-message-btn:hover {
      background: rgba(255, 0, 0, 0.4);
      border-color: rgba(255, 0, 0, 0.5);
      opacity: 1;
      transform: scale(1.1);
    }

    .message-bubble.sent .delete-message-btn {
      background: rgba(0, 0, 0, 0.3);
      border-color: rgba(0, 0, 0, 0.5);
      color: #000;
      opacity: 1;
      font-weight: bold;
      font-size: 1.2rem;
    }

    .message-bubble.sent .delete-message-btn:hover {
      background: rgba(255, 0, 0, 0.3);
      color: #ff0000;
    }

    /* Delete conversation button */
    .delete-conversation-btn {
      background: rgba(255, 0, 0, 0.2);
      border: 1px solid rgba(255, 0, 0, 0.4);
      color: #ff4444;
      padding: 4px 8px;
      border-radius: 5px;
      cursor: pointer;
      font-size: 1.2rem;
      transition: all 0.3s ease;
      opacity: 1;
      font-weight: bold;
      flex-shrink: 0;
      margin-left: 10px;
    }

    .delete-conversation-btn:hover {
      background: rgba(255, 0, 0, 0.4);
      color: #ff0000;
      transform: scale(1.1);
    }

    /* Fade out animation for deleted messages */
    @keyframes fadeOut {
      from {
        opacity: 1;
        transform: scale(1);
      }
      to {
        opacity: 0;
        transform: scale(0.8);
      }
    }

    /* Search results dropdown */
    .search-results-dropdown {
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background: rgba(0, 0, 0, 0.9);
      border: 1px solid rgba(0, 255, 0, 0.3);
      border-radius: 10px;
      margin-top: 5px;
      max-height: 200px;
      overflow-y: auto;
      z-index: 1000;
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
      scrollbar-width: thin;
      scrollbar-color: rgba(0, 255, 0, 0.3) transparent;
    }

    .search-results-dropdown::-webkit-scrollbar {
      width: 6px;
    }

    .search-results-dropdown::-webkit-scrollbar-thumb {
      background: linear-gradient(45deg, #00ff00, #00cc88);
      border-radius: 10px;
    }

    /* Individual search result items */
    .search-result-item {
      padding: 12px 15px;
      cursor: pointer;
      transition: all 0.3s ease;
      border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .search-result-item:last-child {
      border-bottom: none;
    }

    .search-result-item:hover {
      background: linear-gradient(90deg, rgba(0, 255, 0, 0.2), rgba(0, 204, 136, 0.2));
      padding-left: 20px;
      color: #00ff00;
      transform: translateX(2px);
    }

    .search-result-item strong {
      color: inherit;
    }

    /* Message user button (contextual) */
    .message-user-btn {
      background: rgba(0, 150, 255, 0.2);
      border: 1px solid rgba(0, 150, 255, 0.3);
      color: #0099ff;
      padding: 3px 8px;
      border-radius: 6px;
      cursor: pointer;
      font-size: 0.75rem;
      transition: all 0.3s ease;
      font-weight: 500;
      white-space: nowrap;
    }

    .message-user-btn:hover {
      background: rgba(0, 150, 255, 0.4);
      border-color: rgba(0, 150, 255, 0.5);
      transform: translateY(-2px);
      box-shadow: 0 4px 12px rgba(0, 150, 255, 0.3);
    }

    .message-user-btn:active {
      transform: translateY(0);
    }

    /* Betting Modal Styles - ADD TO YOUR <STYLE> SECTION */
    .modal-overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.8);
      backdrop-filter: blur(10px);
      z-index: 1000;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .modal-container {
      background: linear-gradient(135deg, #0a0e27 0%, #1a1e3a 100%);
      backdrop-filter: blur(20px);
      border: 1px solid rgba(0, 255, 136, 0.2);
      border-radius: 20px;
      max-width: 600px;
      width: 95%;
      max-height: 85vh;
      overflow-y: auto;
      color: white;
      box-shadow: 0 8px 40px rgba(0, 0, 0, 0.6);
    }

    /* Account modal - desktop adjustment to avoid navbar overlap */
    @media (min-width: 769px) {
      #account-modal .modal-container {
        margin-top: 60px;
        max-height: calc(85vh - 30px);
      }
    }

    /* Leaderboard modal - adjustment to avoid navbar overlap */
    #leaderboard-modal .modal-container {
      margin-top: 80px;
      max-height: calc(85vh - 80px);
    }

    .modal-header {
      display: flex;
      justify-content: center;
      align-items: center;
      padding: 20px 25px;
      border-bottom: 1px solid rgba(0, 255, 136, 0.2);
      position: relative;
    }

    .modal-header h2 {
      color: #00ff88;
      margin: 0;
      font-size: 1.4rem;
      font-weight: 700;
      letter-spacing: 0.5px;
      text-align: center;
    }

    .modal-header .modal-close {
      position: absolute;
      right: 20px;
      top: 50%;
      transform: translateY(-50%);
    }

    .modal-close {
      background: none;
      border: none;
      color: #fff;
      font-size: 24px;
      cursor: pointer;
      transition: color 0.3s ease;
    }

    .modal-close:hover {
      color: #00ff00;
    }

    .modal-content {
      padding: 20px;
    }

    .context-info {
      background: rgba(0, 255, 0, 0.1);
      border: 1px solid rgba(0, 255, 0, 0.2);
      border-radius: 10px;
      padding: 15px;
      margin-bottom: 20px;
      color: #fff;
    }

    .betting-form-container {
      display: flex;
      flex-direction: column;
      gap: 20px;
    }

    .form-row {
      display: flex;
      flex-direction: row;
      gap: 20px;
      align-items: flex-end;
      flex-wrap: wrap;
      justify-content: flex-start;
    }

    .form-row.game-selection {
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
      padding-bottom: 15px;
    }

    .form-group {
      display: flex;
      flex-direction: column;
      gap: 8px;
      min-width: 180px;  /* Minimum width for each dropdown */
      flex: 0 0 auto;
      position: relative;  /* Required for absolute positioned children */
    }

    .form-group label {
      font-weight: bold;
      color: #00ff00;
      font-size: 1rem;
    }

    .form-select {
      background: rgba(0, 0, 0, 0.5);
      border: 1px solid rgba(255, 255, 255, 0.3);
      border-radius: 10px;
      padding: 12px 15px;
      color: white;
      font-size: 1rem;
      backdrop-filter: blur(5px);
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .form-select:focus {
      outline: none;
      border-color: #00ff00;
      box-shadow: 0 0 10px rgba(0, 255, 0, 0.3);
    }

    .form-select:disabled {
      opacity: 0.5;
      cursor: not-allowed;
      background: rgba(100, 100, 100, 0.3);
    }

    .form-select option {
      background: #1a1a2e;
      color: white;
      padding: 10px;
    }

    .form-input {
      background: rgba(0, 0, 0, 0.5);
      border: 1px solid rgba(255, 255, 255, 0.3);
      border-radius: 10px;
      padding: 12px 15px;
      color: white;
      font-size: 1rem;
      backdrop-filter: blur(5px);
      transition: all 0.3s ease;
      width: 100%;
    }

    .form-input:focus {
      outline: none;
      border-color: #00ff00;
      box-shadow: 0 0 10px rgba(0, 255, 0, 0.3);
    }

    .form-input::placeholder {
      color: rgba(255, 255, 255, 0.5);
    }

    /* Mobile responsive for betting form */
    @media (max-width: 768px) {
    .form-row {
      flex-direction: column;
      align-items: stretch;
     }

    .form-group {
      min-width: auto;
     }
  }

    /* Sport icons in dropdown */
    .form-select option[value="nfl"] {
      background-image: url('webpictures/nfllogo.jpg');
    }

    /* ========================================
       CARD-BASED BETTING MODAL STYLES
       Matching Sport Pages Design (Green Theme)
       ======================================== */
    
    /* Sport Pills/Tabs */
    .sport-pills-container {
      display: flex;
      justify-content: center;
      gap: 10px;
      margin-bottom: 20px;
      flex-wrap: wrap;
    }

    .sport-pill {
      background: rgba(255, 255, 255, 0.05);
      border: 2px solid rgba(255, 255, 255, 0.15);
      border-radius: 25px;
      padding: 10px 20px;
      color: #fff;
      font-size: 0.95rem;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s ease;
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .sport-pill:hover {
      background: rgba(0, 255, 136, 0.1);
      border-color: rgba(0, 255, 136, 0.3);
      transform: translateY(-2px);
    }

    .sport-pill.selected {
      background: rgba(0, 255, 136, 0.2);
      border-color: #00ff88;
      box-shadow: 0 0 20px rgba(0, 255, 136, 0.25);
    }

    .sport-pill .sport-icon {
      font-size: 1.2rem;
    }

    /* Game Cards Container */
    .game-cards-container {
      display: flex;
      gap: 12px;
      overflow-x: auto;
      padding: 10px 5px;
      margin-bottom: 20px;
      scrollbar-width: thin;
      scrollbar-color: rgba(0, 255, 136, 0.5) transparent;
    }

    .game-cards-container::-webkit-scrollbar {
      height: 6px;
    }

    .game-cards-container::-webkit-scrollbar-thumb {
      background: rgba(0, 255, 136, 0.5);
      border-radius: 3px;
    }

    .game-card {
      flex: 0 0 auto;
      min-width: 140px;
      background: rgba(255, 255, 255, 0.05);
      border: 2px solid rgba(255, 255, 255, 0.1);
      border-radius: 12px;
      padding: 14px 12px;
      cursor: pointer;
      transition: all 0.3s ease;
      text-align: center;
    }

    .game-card:hover {
      background: rgba(0, 255, 136, 0.1);
      border-color: rgba(0, 255, 136, 0.3);
      transform: translateY(-3px);
    }

    .game-card.selected {
      background: rgba(0, 255, 136, 0.15);
      border-color: #00ff88;
      box-shadow: 0 0 25px rgba(0, 255, 136, 0.25);
    }

    .game-card .matchup {
      font-weight: bold;
      font-size: 0.9rem;
      color: #fff;
      margin-bottom: 8px;
    }

    .game-card .game-time {
      font-size: 0.85rem;
      color: #00ff88;
      font-weight: 600;
    }

    .game-card .game-date {
      font-size: 0.75rem;
      color: rgba(255, 255, 255, 0.6);
      margin-top: 4px;
    }

    /* No Games Message */
    .no-games-message {
      text-align: center;
      padding: 30px;
      color: rgba(255, 255, 255, 0.6);
      font-style: italic;
    }

    /* Bet Type Cards - Centered Layout */
    .bet-type-cards-container {
      display: flex;
      justify-content: center;
      gap: 12px;
      margin-bottom: 20px;
    }

    .bet-type-card {
      background: rgba(255, 255, 255, 0.05);
      border: 2px solid rgba(255, 255, 255, 0.1);
      border-radius: 12px;
      padding: 16px 20px;
      text-align: center;
      cursor: pointer;
      transition: all 0.3s ease;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 8px;
      min-width: 100px;
    }

    .bet-type-card:hover {
      background: rgba(0, 255, 136, 0.1);
      border-color: rgba(0, 255, 136, 0.3);
      transform: translateY(-2px);
    }

    .bet-type-card.selected {
      background: rgba(0, 255, 136, 0.15);
      border-color: #00ff88;
      box-shadow: 0 0 20px rgba(0, 255, 136, 0.2);
    }

    .bet-type-card .bet-icon {
      font-size: 1.8rem;
    }

    .bet-type-card .bet-name {
      font-weight: 600;
      font-size: 0.85rem;
      color: #fff;
    }

    /* Team Selection Cards with VS Badge */
    .team-cards-container {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 16px;
      margin-bottom: 20px;
    }

    .team-card {
      background: rgba(255, 255, 255, 0.05);
      border: 2px solid rgba(255, 255, 255, 0.1);
      border-radius: 16px;
      padding: 20px;
      text-align: center;
      cursor: pointer;
      transition: all 0.3s ease;
      flex: 1;
      max-width: 180px;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 10px;
    }

    .team-card:hover {
      background: rgba(0, 255, 136, 0.1);
      border-color: rgba(0, 255, 136, 0.3);
      transform: translateY(-3px);
    }

    .team-card.selected {
      background: rgba(0, 255, 136, 0.15);
      border-color: #00ff88;
      box-shadow: 0 0 25px rgba(0, 255, 136, 0.25);
    }

    .team-card .team-name {
      font-size: 1rem;
      font-weight: 600;
      color: #fff;
    }

    .team-card .team-odds {
      font-size: 1.1rem;
      font-weight: bold;
      color: #00ff88;
    }

    .team-card .team-logo {
      width: 60px;
      height: 60px;
      object-fit: contain;
      border-radius: 10px;
      background: rgba(255, 255, 255, 0.1);
      padding: 5px;
    }

    .team-card .team-line {
      font-size: 0.85rem;
      color: rgba(255, 255, 255, 0.7);
    }

    /* VS Badge */
    .vs-badge {
      background: rgba(0, 255, 136, 0.15);
      border: 1px solid rgba(0, 255, 136, 0.3);
      border-radius: 50%;
      width: 40px;
      height: 40px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: bold;
      color: #00ff88;
      font-size: 0.9rem;
      flex-shrink: 0;
    }

    /* Over/Under Cards */
    .ou-cards-container {
      display: flex;
      gap: 12px;
      justify-content: center;
      margin-bottom: 20px;
    }

    .ou-card {
      background: rgba(255, 255, 255, 0.05);
      border: 2px solid rgba(255, 255, 255, 0.1);
      border-radius: 12px;
      padding: 16px 32px;
      text-align: center;
      cursor: pointer;
      transition: all 0.3s ease;
      flex: 1;
      max-width: 180px;
    }

    .ou-card:hover {
      background: rgba(0, 255, 136, 0.1);
      border-color: rgba(0, 255, 136, 0.3);
    }

    .ou-card.selected {
      background: rgba(0, 255, 136, 0.15);
      border-color: #00ff88;
      box-shadow: 0 0 20px rgba(0, 255, 136, 0.2);
    }

    .ou-card .ou-label {
      font-size: 1.1rem;
      font-weight: 600;
      color: #fff;
    }

    .ou-card .ou-value {
      font-size: 0.9rem;
      color: rgba(255, 255, 255, 0.7);
      margin-top: 4px;
    }

    /* Amount Buttons */
    .amount-buttons-container {
      display: flex;
      justify-content: center;
      gap: 10px;
      flex-wrap: wrap;
      margin-bottom: 20px;
    }

    .amount-btn {
      background: rgba(255, 255, 255, 0.05);
      border: 2px solid rgba(255, 255, 255, 0.15);
      border-radius: 10px;
      padding: 12px 18px;
      color: #fff;
      font-size: 0.95rem;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .amount-btn:hover {
      background: rgba(0, 255, 136, 0.1);
      border-color: rgba(0, 255, 136, 0.3);
      transform: translateY(-2px);
    }

    .amount-btn.selected {
      background: rgba(0, 255, 136, 0.2);
      border-color: #00ff88;
      box-shadow: 0 0 15px rgba(0, 255, 136, 0.25);
    }

    /* Custom Amount Input */
    .custom-amount-input {
      background: rgba(0, 0, 0, 0.4);
      border: 2px solid rgba(255, 255, 255, 0.2);
      border-radius: 10px;
      padding: 12px 15px;
      color: #fff;
      font-size: 1rem;
      width: 150px;
      text-align: center;
    }

    .custom-amount-input:focus {
      outline: none;
      border-color: #00ff88;
      box-shadow: 0 0 10px rgba(0, 255, 136, 0.3);
    }

    /* Bet Summary Footer */
    .bet-summary-footer {
      background: rgba(0, 255, 136, 0.1);
      border-top: 1px solid rgba(0, 255, 136, 0.2);
      padding: 15px 20px;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 12px;
      border-radius: 0 0 20px 20px;
    }

    .bet-summary-text {
      color: #fff;
      font-size: 0.95rem;
      text-align: center;
    }

    .bet-summary-text .highlight {
      color: #00ff88;
      font-weight: bold;
    }

    .bet-summary-text .potential-win {
      color: #48bb78;
      font-weight: bold;
    }

    .place-bet-btn {
      background: linear-gradient(45deg, #00ff88, #00cc88);
      border: none;
      border-radius: 25px;
      padding: 14px 50px;
      color: #000;
      font-size: 1.1rem;
      font-weight: bold;
      cursor: pointer;
      transition: all 0.3s ease;
      display: block;
      margin: 0 auto;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }

    .place-bet-btn:hover:not(:disabled) {
      transform: translateY(-2px);
      box-shadow: 0 5px 25px rgba(0, 255, 136, 0.5);
    }

    .place-bet-btn:disabled {
      background: rgba(100, 100, 100, 0.5);
      color: rgba(255, 255, 255, 0.5);
      cursor: not-allowed;
    }

    /* Section Labels - Green Theme */
    .section-label {
      color: #00ff88;
      font-size: 0.9rem;
      font-weight: 600;
      text-align: center;
      margin-bottom: 10px;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }

    /* Loading State */
    .loading-games {
      text-align: center;
      padding: 20px;
      color: #00ff88;
    }

    .loading-games .spinner {
      display: inline-block;
      width: 20px;
      height: 20px;
      border: 2px solid rgba(0, 255, 136, 0.3);
      border-top-color: #00ff88;
      border-radius: 50%;
      animation: spin 1s linear infinite;
      margin-right: 10px;
    }

    @keyframes spin {
      to { transform: rotate(360deg); }
    }

    /* Mobile Responsive for Card-Based Modal - 768px */
    @media (max-width: 768px) {
      /* Modal container optimization */
      #betting-modal .modal-container {
        width: 95%;
        max-width: 95%;
        margin: 10px;
        max-height: 90vh;
      }

      #betting-modal .modal-header h2 {
        font-size: 1.4rem;
      }

      #betting-modal .modal-content {
        padding: 15px;
      }

      /* Sport pills */
      .sport-pills-container {
        gap: 6px;
        flex-wrap: wrap;
        justify-content: center;
      }

      .sport-pill {
        padding: 8px 12px;
        font-size: 0.85rem;
      }

      .sport-pill .sport-icon {
        font-size: 1.1rem;
      }

      /* Game cards - horizontal scroll */
      .game-cards-container {
        gap: 10px;
        padding: 5px;
      }

      .game-card {
        min-width: 120px;
        padding: 12px 10px;
      }

      .game-card .matchup {
        font-size: 0.9rem;
      }

      .game-card .game-time {
        font-size: 0.8rem;
      }

      /* Bet type cards - centered flex */
      .bet-type-cards-container {
        gap: 10px;
        flex-wrap: wrap;
      }

      .bet-type-card {
        padding: 12px 16px;
        min-width: 90px;
      }

      .bet-type-card .bet-icon {
        font-size: 1.4rem;
      }

      .bet-type-card .bet-name {
        font-size: 0.75rem;
      }

      /* Team cards - side by side */
      .team-cards-container {
        flex-direction: row;
        flex-wrap: nowrap;
        gap: 8px;
        justify-content: center;
        overflow-x: visible;
        padding: 0;
      }

      .team-card {
        flex: 1;
        max-width: 48%;
        min-width: 0;
        padding: 12px 8px;
      }

      .team-card .team-logo {
        width: 40px;
        height: 40px;
      }

      .team-card .team-name {
        font-size: 0.85rem;
      }

      .team-card .team-odds {
        font-size: 0.9rem;
      }

      .team-card .team-line {
        font-size: 0.75rem;
      }

      /* VS badge */
      .vs-badge {
        width: 28px;
        height: 28px;
        font-size: 0.7rem;
        flex-shrink: 0;
      }

      /* Over/Under cards */
      .ou-cards-container {
        flex-direction: row;
        gap: 10px;
      }

      .ou-card {
        padding: 14px 20px;
        flex: 1;
      }

      .ou-card .ou-label {
        font-size: 0.9rem;
      }

      .ou-card .ou-value {
        font-size: 1.1rem;
      }

      /* Amount buttons - 3 per row */
      .amount-buttons-container {
        gap: 8px;
      }

      .amount-btn {
        padding: 10px 14px;
        font-size: 0.9rem;
        min-width: auto;
        flex: 1 1 calc(33% - 8px);
      }

      /* Bet summary footer */
      .bet-summary-footer {
        padding: 14px 16px;
        flex-direction: column;
        gap: 12px;
      }

      .bet-summary-text {
        font-size: 0.9rem;
        text-align: center;
      }

      .place-bet-btn {
        padding: 14px 24px;
        font-size: 1rem;
        width: 100%;
      }

      /* Section labels */
      .section-label {
        font-size: 0.9rem;
        margin-bottom: 10px;
      }
    }

    /* Mobile Responsive for Card-Based Modal - 480px (small phones) */
    @media (max-width: 480px) {
      #betting-modal .modal-container {
        width: 98%;
        max-width: 98%;
        margin: 5px;
        max-height: 95vh;
      }

      #betting-modal .modal-header h2 {
        font-size: 1.2rem;
      }

      #betting-modal .modal-content {
        padding: 12px;
      }

      /* Sport pills - compact */
      .sport-pills-container {
        gap: 4px;
      }

      .sport-pill {
        padding: 6px 10px;
        font-size: 0.75rem;
      }

      .sport-pill .sport-icon {
        font-size: 1rem;
      }

      /* Game cards */
      .game-card {
        min-width: 110px;
        padding: 10px 8px;
      }

      .game-card .matchup {
        font-size: 0.85rem;
      }

      .game-card .game-time,
      .game-card .game-date {
        font-size: 0.7rem;
      }

      /* Bet type cards - compact centered */
      .bet-type-cards-container {
        gap: 6px;
      }

      .bet-type-card {
        padding: 10px 12px;
        min-width: 80px;
      }

      .bet-type-card .bet-icon {
        font-size: 1.2rem;
      }

      .bet-type-card .bet-name {
        font-size: 0.7rem;
      }

      /* Team cards - compact side by side */
      .team-cards-container {
        gap: 6px;
      }

      .team-card {
        max-width: 47%;
        padding: 10px 6px;
      }

      .team-card .team-logo {
        width: 32px;
        height: 32px;
      }

      .team-card .team-name {
        font-size: 0.75rem;
      }

      .team-card .team-odds {
        font-size: 0.8rem;
      }

      .team-card .team-line {
        font-size: 0.7rem;
      }

      /* VS badge - smaller */
      .vs-badge {
        width: 24px;
        height: 24px;
        font-size: 0.6rem;
      }

      /* Over/Under cards */
      .ou-card {
        padding: 12px 16px;
      }

      .ou-card .ou-label {
        font-size: 0.8rem;
      }

      .ou-card .ou-value {
        font-size: 1rem;
      }

      /* Amount buttons */
      .amount-btn {
        padding: 8px 10px;
        font-size: 0.8rem;
        flex: 1 1 calc(33% - 6px);
      }

      /* Custom amount input */
      .custom-amount-input {
        font-size: 1rem;
        padding: 10px;
      }

      /* Bet summary footer */
      .bet-summary-footer {
        padding: 12px;
      }

      .bet-summary-text {
        font-size: 0.85rem;
      }

      .place-bet-btn {
        padding: 12px 20px;
        font-size: 0.95rem;
      }

      /* Section labels */
      .section-label {
        font-size: 0.85rem;
      }
    }

/* ================================================
   BETS TABLES CONTAINER - Side by Side Layout
   ================================================ */
.bets-tables-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 1400px;
  margin: 30px auto;
  padding: 0 20px;
}

@media (max-width: 1024px) {
  .bets-tables-container {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* Scrollable wrapper for bet cards */
.bets-scroll-wrapper {
  max-height: 520px;
  overflow-y: auto;
  padding-right: 8px;
  margin-right: -8px;
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: rgba(0, 255, 136, 0.4) rgba(0, 0, 0, 0.2);
}

.bets-scroll-wrapper::-webkit-scrollbar {
  width: 8px;
}

.bets-scroll-wrapper::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.3);
  border-radius: 4px;
}

.bets-scroll-wrapper::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #00ff88, #00cc88);
  border-radius: 4px;
}

.bets-scroll-wrapper::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #00ff88, #00aa66);
}

/* Fade effect at bottom of scroll */
.scroll-fade-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: linear-gradient(to top, rgba(10, 14, 39, 1), transparent);
  pointer-events: none;
  border-radius: 0 0 18px 18px;
  z-index: 5;
}

/* ================================================
   LIVE BETS SECTION - Sweepstakes House Betting
   ================================================ */
.live-bets-section {
  background: linear-gradient(170deg, #0a2418, #051510);
  border: 2px solid rgba(0, 255, 136, 0.35);
  border-radius: 18px;
  padding: 25px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), inset 0 0 80px rgba(0, 255, 136, 0.06);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.live-bets-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #00ff88, #00cc88);
  border-radius: 18px 18px 0 0;
  animation: shimmer 2s linear infinite;
}

@keyframes shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

.live-bets-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  gap: 10px;
}

.live-bets-header h3 {
  font-size: 1.6rem;
  background: linear-gradient(45deg, #00ff88, #00cc88);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.live-indicator {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 68, 68, 0.2);
  padding: 4px 10px;
  border-radius: 12px;
  font-size: 0.7rem;
  font-weight: 700;
  color: #ff4444;
  text-transform: uppercase;
  letter-spacing: 1px;
  -webkit-text-fill-color: #ff4444;
}

.live-dot {
  width: 8px;
  height: 8px;
  background: #ff4444;
  border-radius: 50%;
  animation: pulse-dot 1.5s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.2); }
}

.live-bets-filter {
  display: flex;
  gap: 8px;
  background: rgba(0, 0, 0, 0.4);
  padding: 5px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.live-bets-filter .filter-btn {
  padding: 10px 18px;
  border: none;
  border-radius: 10px;
  background: transparent;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
}

.live-bets-filter .filter-btn:hover {
  color: #fff;
  background: rgba(0, 255, 136, 0.15);
}

.live-bets-filter .filter-btn.active {
  background: linear-gradient(135deg, #00ff88, #00cc88);
  color: #0a0e27;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(0, 255, 136, 0.3);
}

.live-bets-container {
  position: relative;
}

.live-bets-scroll-wrapper {
  overflow-x: auto;
  padding-bottom: 15px;
  margin: 0 -10px;
  padding: 10px;
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: rgba(0, 255, 136, 0.3) transparent;
}

.live-bets-scroll-wrapper::-webkit-scrollbar {
  height: 6px;
}

.live-bets-scroll-wrapper::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 3px;
}

.live-bets-scroll-wrapper::-webkit-scrollbar-thumb {
  background: rgba(0, 255, 136, 0.4);
  border-radius: 3px;
}

.live-bets-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 5px 5px 80px 5px;
}

.live-bets-grid.grid-view {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  flex-wrap: wrap;
}

.live-bet-card {
  background: linear-gradient(170deg, #0d2a1a, #071a10);
  border: 1.5px solid rgba(0, 255, 136, 0.2);
  border-left: 4px solid #00ff88;
  border-radius: 14px;
  padding: 20px;
  padding-top: 40px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  width: 100%;
  box-sizing: border-box;
}

.live-bet-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 0;
  background: none;
}

.live-bet-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: none;
  pointer-events: none;
}

.live-bet-card:hover {
  transform: translateY(-3px);
  border-color: rgba(0, 255, 136, 0.2);
  border-left-color: rgba(0, 255, 136, 0.7);
  box-shadow: 0 8px 28px rgba(0, 255, 136, 0.12);
}

.live-bet-card.high-stake {
  border-color: rgba(255, 215, 0, 0.4);
  box-shadow: 0 0 30px rgba(255, 215, 0, 0.15);
}

.live-bet-card.high-stake::before {
  background: linear-gradient(90deg, #ffd700, #ffaa00, #ffd700);
  background-size: 200% 100%;
}

.live-bet-card.live {
  border-color: rgba(255, 68, 68, 0.5);
  animation: liveGlow 2s ease-in-out infinite;
}

.live-bet-card.live::before {
  background: linear-gradient(90deg, #ff4444, #ff6b6b, #ff4444);
  background-size: 200% 100%;
}

.live-bet-card.soon {
  border-color: rgba(255, 152, 0, 0.5);
}

.live-bet-card.soon::before {
  background: linear-gradient(90deg, #ff9800, #ffc107, #ff9800);
  background-size: 200% 100%;
}

@keyframes liveGlow {
  0%, 100% { box-shadow: 0 0 20px rgba(255, 68, 68, 0.2); }
  50% { box-shadow: 0 0 35px rgba(255, 68, 68, 0.4); }
}

.countdown-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  padding: 2px 6px;
  border-radius: 10px;
  font-size: 0.6rem;
  font-weight: 600;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 3px;
}

.countdown-badge.live {
  background: linear-gradient(135deg, #ff4444, #cc0000);
  color: #fff;
  animation: pulseBadge 1.5s ease-in-out infinite;
}

.countdown-badge.soon {
  background: linear-gradient(135deg, #ff9800, #ff6b00);
  color: #fff;
}

.countdown-badge.upcoming {
  background: rgba(0, 255, 136, 0.2);
  color: #00ff88;
  border: 1px solid rgba(0, 255, 136, 0.4);
}

.countdown-badge.later {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.7);
}

@keyframes pulseBadge {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.bet-matchup {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 6px;
  font-weight: 500;
}

.live-bet-card .bet-card-header,
.completed-bet-card .bet-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 12px;
}

.live-bet-card .bet-user-info,
.completed-bet-card .bet-user-info {
  display: flex;
  align-items: center;
  gap: 8px;
}

.live-bet-card .bet-username,
.completed-bet-card .bet-username {
  font-weight: 600;
  color: #00ff88;
  font-size: 0.95rem;
}

.live-bet-card .bet-time,
.completed-bet-card .bet-time {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
}

.bet-sport-badge {
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.bet-sport-badge.nfl { background: rgba(0, 53, 148, 0.5); }
.bet-sport-badge.nba { background: rgba(206, 17, 65, 0.5); }
.bet-sport-badge.nhl { background: rgba(0, 0, 0, 0.5); border: 1px solid rgba(255, 255, 255, 0.3); }
.bet-sport-badge.mlb { background: rgba(0, 45, 114, 0.5); }
.bet-sport-badge.ncaa-football, .bet-sport-badge.ncaaf { background: rgba(0, 100, 0, 0.5); }
.bet-sport-badge.ncaam, .bet-sport-badge.ncaa-basketball-mens { background: rgba(255, 102, 0, 0.5); }
.bet-sport-badge.ncaaw, .bet-sport-badge.ncaa-basketball-womens { background: rgba(148, 0, 211, 0.5); }
.bet-sport-badge.soccer { background: rgba(0, 128, 0, 0.5); }
.bet-sport-badge.ufc { background: rgba(213, 0, 50, 0.5); }
.bet-sport-badge.tennis { background: rgba(0, 128, 128, 0.5); }
.bet-sport-badge.golf { background: rgba(34, 139, 34, 0.5); }

.live-bet-card .bet-card-body,
.completed-bet-card .bet-card-body {
  margin-bottom: 12px;
}

.live-bet-card .bet-description,
.completed-bet-card .bet-description {
  font-size: 1rem;
  font-weight: 500;
  color: #fff;
  margin-bottom: 8px;
  line-height: 1.4;
}

.live-bet-card .bet-game-info,
.completed-bet-card .bet-game-info {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
}

.live-bet-card .bet-game-time,
.completed-bet-card .bet-game-time {
  font-size: 0.8rem;
  color: #00ff88;
  margin-top: 6px;
  font-weight: 500;
}

.live-bet-card .bet-card-footer,
.completed-bet-card .bet-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.live-bet-card .bet-stake,
.completed-bet-card .bet-stake {
  display: flex;
  flex-direction: column;
}

.live-bet-card .bet-stake-label,
.completed-bet-card .bet-stake-label {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.live-bet-card .bet-stake-value,
.completed-bet-card .bet-stake-value {
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffd700;
}

.live-bet-card .bet-payout,
.completed-bet-card .bet-payout {
  display: flex;
  flex-direction: column;
  text-align: right;
}

.live-bet-card .bet-payout-label,
.completed-bet-card .bet-payout-label {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.live-bet-card .bet-payout-value,
.completed-bet-card .bet-payout-value {
  font-size: 1.1rem;
  font-weight: 700;
  color: #00ff88;
}

.bet-odds-badge {
  padding: 4px 8px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.8);
}

.no-bets-message {
  text-align: center;
  padding: 40px 20px;
  color: rgba(255, 255, 255, 0.5);
}

.no-bets-message span {
  font-size: 3rem;
  display: block;
  margin-bottom: 15px;
}

.no-bets-message p {
  font-size: 1rem;
}

/* ================================================
   COMPLETED BETS SECTION - Bet History
   ================================================ */
.completed-bets-section {
  background: linear-gradient(170deg, #2a1f0a, #1a1305);
  border: 2px solid rgba(255, 193, 7, 0.35);
  border-radius: 18px;
  padding: 25px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), inset 0 0 80px rgba(255, 193, 7, 0.06);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.completed-bets-section .bets-scroll-wrapper::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #ffc107, #ff9800);
}

.completed-bets-section .scroll-fade-bottom {
  background: linear-gradient(to top, rgba(10, 14, 39, 1), transparent);
}

.completed-bets-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #ffc107, #ff9800);
  border-radius: 18px 18px 0 0;
}

.history-stats-bar {
  display: flex;
  gap: 20px;
  padding: 15px 20px;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 12px;
  margin-bottom: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.history-stat {
  text-align: center;
  min-width: 80px;
}

.history-stat-value {
  font-size: 1.4rem;
  font-weight: 700;
  display: block;
}

.history-stat-value.wins { color: #00ff88; }
.history-stat-value.losses { color: #ff4444; }
.history-stat-value.profit { color: #ffd700; }
.history-stat-value.streak { color: #00ccff; }

.history-stat-label {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.completed-bets-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  flex-wrap: wrap;
  gap: 15px;
}

.completed-bets-header h3 {
  font-size: 1.6rem;
  background: linear-gradient(45deg, #ffc107, #ff9800);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 0;
}

.completed-bets-filter {
  display: flex;
  gap: 8px;
  background: rgba(0, 0, 0, 0.4);
  padding: 5px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.completed-bets-filter .filter-btn {
  padding: 10px 18px;
  border: none;
  border-radius: 10px;
  background: transparent;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
}

.completed-bets-filter .filter-btn:hover {
  color: #fff;
  background: rgba(255, 193, 7, 0.15);
}

.completed-bets-filter .filter-btn.active {
  background: linear-gradient(135deg, #ffc107, #ff9800);
  color: #0a0e27;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(255, 193, 7, 0.3);
}

.completed-bets-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 5px 5px 80px 5px;
}

.completed-bet-card {
  background: linear-gradient(170deg, #2e220c, #1e1606);
  border: 1.5px solid rgba(255, 193, 7, 0.2);
  border-left: 4px solid #ffc107;
  border-radius: 14px;
  padding: 20px;
  padding-top: 40px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  width: 100%;
  box-sizing: border-box;
}

.completed-bet-card.won {
  border-color: rgba(0, 255, 136, 0.3);
}

.completed-bet-card.won::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #00ff88, #00cc88);
}

.completed-bet-card.won::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at top left, rgba(0, 255, 136, 0.08), transparent 50%);
  pointer-events: none;
}

.completed-bet-card.lost {
  border-color: rgba(255, 68, 68, 0.2);
}

.completed-bet-card.lost::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #ff4444, #cc0000);
}

.completed-bet-card.push::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #ffc107, #ff9800);
}

.streak-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 4px 10px;
  background: linear-gradient(135deg, #ff6b00, #ff9500);
  border-radius: 8px;
  font-size: 0.7rem;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 4px;
  z-index: 2;
}

.streak-badge::before {
  content: '🔥';
  font-size: 0.8rem;
}

.bet-result-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  z-index: 5;
}

.bet-result-badge.won {
  background: rgba(0, 255, 136, 0.2);
  color: #00ff88;
  border: 1px solid rgba(0, 255, 136, 0.3);
}

.bet-result-badge.lost {
  background: rgba(255, 68, 68, 0.2);
  color: #ff4444;
  border: 1px solid rgba(255, 68, 68, 0.3);
}

.bet-result-badge.push {
  background: rgba(255, 193, 7, 0.2);
  color: #ffc107;
  border: 1px solid rgba(255, 193, 7, 0.3);
}

.completed-bet-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 193, 7, 0.2);
  border-left-color: rgba(255, 193, 7, 0.7);
  box-shadow: 0 8px 28px rgba(255, 193, 7, 0.1);
}

.completed-bet-card .bet-game-time {
  color: #ffc107;
}

.completed-bet-card .bet-username {
  color: #ffc107;
}

/* Mobile Responsive - Bet Cards */
@media (max-width: 768px) {
  .live-bets-section,
  .completed-bets-section {
    margin: 10px;
    padding: 15px;
  }

  .live-bets-header,
  .completed-bets-header {
    flex-direction: row;
    align-items: center;
    flex-wrap: nowrap;
  }
  
  .live-bets-header h3,
  .completed-bets-header h3 {
    font-size: 1.2rem;
  }

  .live-bets-grid,
  .completed-bets-grid {
    grid-template-columns: 1fr;
  }

  .live-bets-filter .filter-btn,
  .completed-bets-filter .filter-btn {
    padding: 6px 12px;
    font-size: 0.8rem;
  }

  .live-bet-card,
  .completed-bet-card {
    padding: 14px;
    padding-top: 36px;
    border-radius: 12px;
  }

  .live-bet-card .bet-card-header,
  .completed-bet-card .bet-card-header {
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 10px;
  }

  .live-bet-card .bet-user-info,
  .completed-bet-card .bet-user-info {
    flex-direction: row;
    align-items: center;
    gap: 6px;
    min-width: 0;
    flex: 1;
  }

  .live-bet-card .bet-username,
  .completed-bet-card .bet-username {
    font-size: 0.85rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 120px;
  }

  .live-bet-card .bet-time,
  .completed-bet-card .bet-time {
    font-size: 0.65rem;
    white-space: nowrap;
  }

  .bet-sport-badge {
    padding: 3px 8px;
    font-size: 0.65rem;
    flex-shrink: 0;
  }

  .live-bet-card .bet-card-body,
  .completed-bet-card .bet-card-body {
    margin-bottom: 10px;
  }

  .live-bet-card .bet-matchup,
  .completed-bet-card .bet-matchup {
    font-size: 0.78rem;
    line-height: 1.3;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .live-bet-card .bet-description,
  .completed-bet-card .bet-description {
    font-size: 0.85rem;
    line-height: 1.3;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .live-bet-card .bet-game-time,
  .completed-bet-card .bet-game-time {
    font-size: 0.7rem;
  }

  .live-bet-card .bet-card-footer,
  .completed-bet-card .bet-card-footer {
    flex-wrap: wrap;
    gap: 8px;
    padding-top: 10px;
    justify-content: space-between;
  }

  .live-bet-card .bet-stake,
  .live-bet-card .bet-payout,
  .completed-bet-card .bet-stake,
  .completed-bet-card .bet-payout {
    flex: 1;
    min-width: 0;
  }

  .live-bet-card .bet-stake-label,
  .live-bet-card .bet-payout-label,
  .completed-bet-card .bet-stake-label,
  .completed-bet-card .bet-payout-label {
    font-size: 0.6rem;
  }

  .live-bet-card .bet-stake-value,
  .live-bet-card .bet-payout-value,
  .completed-bet-card .bet-stake-value,
  .completed-bet-card .bet-payout-value {
    font-size: 0.9rem;
    white-space: nowrap;
  }

  .live-bet-card .bet-odds-badge,
  .completed-bet-card .bet-odds-badge {
    padding: 3px 6px;
    font-size: 0.7rem;
    flex-shrink: 0;
    order: 0;
  }

  .countdown-badge {
    font-size: 0.55rem;
    padding: 2px 5px;
    top: 6px;
    left: 6px;
  }

  .bet-result-badge {
    font-size: 0.65rem;
    padding: 3px 8px;
    top: 8px;
    left: 8px;
  }

  .history-stats-bar {
    gap: 10px;
    padding: 10px 12px;
  }

  .history-stat {
    min-width: 60px;
  }

  .history-stat-value {
    font-size: 1.1rem;
  }

  .history-stat-label {
    font-size: 0.6rem;
  }
}

@media (max-width: 400px) {
  .live-bet-card,
  .completed-bet-card {
    padding: 12px;
    padding-top: 34px;
    border-radius: 10px;
  }

  .live-bet-card .bet-card-header,
  .completed-bet-card .bet-card-header {
    margin-bottom: 8px;
  }

  .live-bet-card .bet-user-info,
  .completed-bet-card .bet-user-info {
    gap: 4px;
  }

  .live-bet-card .bet-username,
  .completed-bet-card .bet-username {
    font-size: 0.8rem;
    max-width: 100px;
  }

  .live-bet-card .bet-time,
  .completed-bet-card .bet-time {
    font-size: 0.6rem;
  }

  .bet-sport-badge {
    padding: 2px 6px;
    font-size: 0.6rem;
  }

  .live-bet-card .bet-matchup,
  .completed-bet-card .bet-matchup {
    font-size: 0.75rem;
  }

  .live-bet-card .bet-description,
  .completed-bet-card .bet-description {
    font-size: 0.8rem;
  }

  .live-bet-card .bet-card-footer,
  .completed-bet-card .bet-card-footer {
    gap: 6px;
    padding-top: 8px;
  }

  .live-bet-card .bet-stake-value,
  .live-bet-card .bet-payout-value,
  .completed-bet-card .bet-stake-value,
  .completed-bet-card .bet-payout-value {
    font-size: 0.82rem;
  }

  .live-bet-card .bet-odds-badge,
  .completed-bet-card .bet-odds-badge {
    font-size: 0.65rem;
    padding: 2px 5px;
  }

  .live-bet-card .bet-stake-label,
  .live-bet-card .bet-payout-label,
  .completed-bet-card .bet-stake-label,
  .completed-bet-card .bet-payout-label {
    font-size: 0.55rem;
  }

  .completed-bets-filter .filter-btn,
  .live-bets-filter .filter-btn {
    padding: 5px 8px;
    font-size: 0.7rem;
  }

  .history-stats-bar {
    gap: 6px;
    padding: 8px 10px;
  }

  .history-stat {
    min-width: 50px;
  }

  .history-stat-value {
    font-size: 0.95rem;
  }
}

.top-banner-dots {
  display: none;
  justify-content: center;
  gap: 8px;
  margin-top: 10px;
  padding-bottom: 4px;
}
.top-banner-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  transition: background 0.3s, transform 0.3s;
  cursor: pointer;
  border: none;
  padding: 0;
}
.top-banner-dot.active {
  background: #00ff88;
  transform: scale(1.3);
}
.pp-carousel-dots { display: none; }

/* Top Banner Row - Side by Side Layout */
.top-banner-wrapper {
  position: relative;
  max-width: 1200px;
  margin: 80px auto 20px auto;
  padding: 0;
}
.top-banner-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(13,5,24,0.85);
  color: #fff;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, opacity 0.3s;
  padding: 0;
}
.top-banner-arrow:hover {
  background: rgba(168,85,247,0.25);
  border-color: rgba(168,85,247,0.4);
}
.top-banner-arrow-left { left: 2px; }
.top-banner-arrow-right { right: 2px; }
.top-banner-row {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.top-banner-row::-webkit-scrollbar { display: none; }
.top-banner-row > * {
  flex: 0 0 280px;
  scroll-snap-align: center;
  box-sizing: border-box;
}
.top-banner-row > .welcome-banner {
  flex: 0 0 280px;
}
.top-banner-row::after {
  content: none;
}
/* Carousel order is now controlled by DOM order — stats card is first child.
   Stats card (.my-gc-card) keeps its natural tall height.
   All OTHER carousel cards forced to one uniform shorter height. */
.top-banner-row > .mm-gc-card,
.top-banner-row > .hc-gc-card,
.top-banner-row > .kr-gc-card,
.top-banner-row > .pp-gc-card {
  height: 470px !important;
  min-height: 470px !important;
  max-height: 470px !important;
  overflow: hidden;
}
@media (max-width: 768px) {
  .top-banner-row > .mm-gc-card,
  .top-banner-row > .hc-gc-card,
  .top-banner-row > .kr-gc-card,
  .top-banner-row > .pp-gc-card {
    height: 440px !important;
    min-height: 440px !important;
    max-height: 440px !important;
  }
}
/* Beat the Hound hero card matches the (tall) stats card height instead of the
   uniform 470/440 lock. align-self:stretch grows it to the row's tallest card
   (the stats card) without affecting the locked cards. Floor of 470/440 so it
   never collapses when the stats card is hidden (e.g. logged out). */
.top-banner-row > .bth-hero {
  align-self: stretch;
  height: auto !important;
  min-height: 470px !important;
  max-height: none !important;
}
@media (max-width: 768px) {
  .top-banner-row > .bth-hero {
    min-height: 440px !important;
  }
}

/* ========== PREMIUM GOLD STANDARD - Daily Hound Coin Bonus ========== */
.daily-hc-bonus-container {
  flex: 1;
  min-width: 0;
  max-width: 500px;
}

/* Main card with Premium Gold Standard styling */
.daily-hc-bonus-card.gold-standard {
  position: relative;
  background: linear-gradient(145deg, #2a1a1a 0%, #1a0f0f 50%, #251515 100%);
  border: 3px solid transparent;
  border-image: linear-gradient(135deg, #d4af37 0%, #b8860b 25%, #ffd700 50%, #b8860b 75%, #d4af37 100%) 1;
  border-radius: 16px;
  padding: 12px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 
    0 4px 30px rgba(212, 175, 55, 0.3),
    inset 0 1px 0 rgba(255, 215, 0, 0.1),
    inset 0 -1px 0 rgba(0, 0, 0, 0.3);
  height: auto;
  box-sizing: border-box;
  overflow: hidden;
}

/* Paw print background pattern overlay */
.paw-pattern-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60' viewBox='0 0 60 60'%3E%3Cpath fill='%238b4513' fill-opacity='0.08' d='M30 18c-2.2 0-4 1.8-4 4s1.8 4 4 4 4-1.8 4-4-1.8-4-4-4zm-10 6c-1.7 0-3 1.3-3 3s1.3 3 3 3 3-1.3 3-3-1.3-3-3-3zm20 0c-1.7 0-3 1.3-3 3s1.3 3 3 3 3-1.3 3-3-1.3-3-3-3zm-16 8c-1.7 0-3 1.3-3 3s1.3 3 3 3 3-1.3 3-3-1.3-3-3-3zm12 0c-1.7 0-3 1.3-3 3s1.3 3 3 3 3-1.3 3-3-1.3-3-3-3zm-6 4c-3.3 0-6 2.7-6 6s2.7 6 6 6 6-2.7 6-6-2.7-6-6-6z'/%3E%3C/svg%3E");
  background-repeat: repeat;
  pointer-events: none;
  z-index: 0;
}

/* Golden light burst effect */
.golden-burst {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.3) 0%, rgba(212, 175, 55, 0.15) 40%, transparent 70%);
  pointer-events: none;
  z-index: 1;
  animation: burst-pulse 3s ease-in-out infinite;
}

@keyframes burst-pulse {
  0%, 100% { opacity: 0.7; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 1; transform: translate(-50%, -50%) scale(1.1); }
}

/* Filigree border overlay */
.filigree-border {
  position: absolute;
  top: 4px;
  left: 4px;
  right: 4px;
  bottom: 4px;
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 12px;
  pointer-events: none;
  z-index: 2;
  background: linear-gradient(45deg, transparent 48%, rgba(212, 175, 55, 0.1) 50%, transparent 52%);
}

/* Content wrapper above overlays */
.gold-standard-content {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  width: 100%;
}

.daily-hc-bonus-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
}

.gold-standard .daily-hc-bonus-header h3 {
  font-size: 1.3rem;
  font-weight: 800;
  background: linear-gradient(135deg, #ffd700 0%, #d4af37 50%, #b8860b 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 0;
  text-shadow: none;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.daily-hc-bonus-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 10px;
}

.daily-hc-bonus-action {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.gold-standard .bonus-description {
  color: rgba(255, 235, 200, 0.75);
  font-size: 0.75rem;
  margin: 0;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.gold-standard .bonus-window-info {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(139, 69, 19, 0.3);
  padding: 5px 10px;
  border-radius: 6px;
  border: 1px solid rgba(212, 175, 55, 0.2);
}

.gold-standard .window-label {
  color: rgba(255, 235, 200, 0.6);
  font-size: 0.7rem;
}

.gold-standard .window-value {
  color: #ffd700;
  font-weight: 700;
  font-size: 0.75rem;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

/* Gold Coin Button - The coin image IS the button */
.claim-hc-btn.gold-coin-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 50%;
  position: relative;
}

.claim-hc-btn.gold-coin-btn .hound-coin-img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  box-shadow: 
    0 6px 30px rgba(255, 215, 0, 0.6),
    0 0 50px rgba(212, 175, 55, 0.4);
  transition: all 0.3s ease;
  filter: drop-shadow(0 0 12px rgba(255, 215, 0, 0.5));
}

.claim-hc-btn.gold-coin-btn:hover:not(:disabled) .hound-coin-img {
  transform: scale(1.15) rotate(5deg);
  box-shadow: 
    0 10px 50px rgba(255, 215, 0, 0.7),
    0 0 60px rgba(212, 175, 55, 0.6);
  filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.7));
}

.claim-hc-btn.gold-coin-btn:disabled .hound-coin-img {
  filter: grayscale(60%) brightness(0.7);
  box-shadow: 0 2px 10px rgba(100, 100, 100, 0.3);
}

.claim-hc-btn.gold-coin-btn.claiming .hound-coin-img {
  animation: coin-spin 1s linear infinite;
}

@keyframes coin-spin {
  0% { transform: rotateY(0deg); }
  100% { transform: rotateY(360deg); }
}

.claim-hc-btn.gold-coin-btn.claimed .hound-coin-img {
  filter: saturate(1.2) brightness(1.1);
}

/* Claim label below coin */
.claim-label {
  display: block;
  color: #ffd700;
  font-size: 0.9rem;
  font-weight: 600;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.4);
  margin-top: 4px;
  position: relative;
  z-index: 10;
}

.claim-label.claimed {
  color: #90EE90;
  text-shadow: 0 0 10px rgba(144, 238, 144, 0.4);
}

.gold-standard .bonus-status {
  color: rgba(255, 235, 200, 0.7);
  font-size: 0.8rem;
  margin: 8px 0 0 0;
  font-style: italic;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
  text-align: center;
  width: 100%;
}

.gold-standard .bonus-status.success {
  color: #90EE90;
  text-shadow: 0 0 10px rgba(144, 238, 144, 0.4);
}

.gold-standard .bonus-status.error {
  color: #ff6b6b;
}

.gold-standard .bonus-status.claimed-status {
  color: #90EE90;
  font-weight: 600;
  font-style: normal;
  text-shadow: 0 0 10px rgba(144, 238, 144, 0.4);
}

/* Combined status line at bottom */
.gold-standard .daily-hc-bonus-action {
  position: relative;
}

.gold-standard .bonus-bottom-status {
  position: absolute;
  bottom: -35px;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  text-align: center;
  font-size: 0.8rem;
  color: #90EE90;
  text-shadow: 0 0 10px rgba(144, 238, 144, 0.4);
}

/* Mobile Responsive for Daily Bonus and Top Banner Row */
@media (max-width: 768px) {
  .top-banner-row {
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    align-items: flex-start !important;
    margin-top: 0;
    padding: 0;
    gap: 12px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    scroll-padding: 0 6%;
    padding-left: 6%;
    padding-right: 6%;
  }
  .top-banner-row::-webkit-scrollbar { display: none; }
  .top-banner-row > * {
    flex: 0 0 88% !important;
    min-width: 88% !important;
    max-width: 88% !important;
    scroll-snap-align: center;
    box-sizing: border-box;
  }

  .top-banner-wrapper {
    margin-top: 75px;
    margin-bottom: 10px;
  }
  .top-banner-arrow {
    display: none !important;
  }
  .top-banner-row .welcome-banner,
  .top-banner-row .hc-gc-card,
  .top-banner-row .kr-gc-card,
  .top-banner-row .mm-gc-card,
  .top-banner-row .cth-gc-card {
    flex: 0 0 88% !important;
    min-width: 88% !important;
    max-width: 88% !important;
    order: unset;
  }
  .top-banner-row .welcome-banner {
    order: -1;
  }
  .top-banner-row .kr-gc-card,
  .top-banner-row .mm-gc-card,
  .top-banner-row .hc-gc-card,
  .top-banner-row .cth-gc-card {
    min-height: auto !important;
  }
  .top-banner-dots {
    display: flex;
  }

  .pp-carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 12px;
  }
  .pp-carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    transition: background 0.3s, transform 0.3s;
    cursor: pointer;
    border: none;
    padding: 0;
  }
  .pp-carousel-dot.active {
    background: #00ff88;
    transform: scale(1.3);
  }

  #pack-picks-cards {
    display: flex !important;
    grid-template-columns: none !important;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 12px !important;
    padding-bottom: 4px;
  }
  #pack-picks-cards::-webkit-scrollbar { display: none; }
  #pack-picks-cards > .pp-card {
    flex: 0 0 88% !important;
    min-width: 88% !important;
    max-width: 88% !important;
    scroll-snap-align: center;
  }

  .daily-hc-bonus-container {
    margin-top: 0;
    padding: 0;
  }

  .daily-hc-bonus-card.gold-standard {
    padding: 18px 15px;
  }

  .gold-standard .daily-hc-bonus-header h3 {
    font-size: 1.1rem;
  }

  .daily-hc-bonus-row {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  .gold-standard .bonus-description {
    order: 1;
    font-size: 0.9rem;
  }

  .gold-standard .bonus-window-info {
    order: 2;
  }

  .claim-hc-btn.gold-coin-btn .hound-coin-img {
    width: 110px;
    height: 110px;
  }

  .golden-burst {
    width: 200px;
    height: 200px;
  }

  .claim-label {
    font-size: 0.8rem;
  }

  .gold-standard .bonus-description {
    font-size: 0.7rem;
  }

  .gold-standard .window-label,
  .gold-standard .window-value {
    font-size: 0.65rem;
  }
}

/* Featured Contest Banner Styles - High-Tech Glassmorphism */
.mm-banner {
  flex: 1;
  min-width: 0;
  padding-top: 15px;
}

.mm-banner-card {
  position: relative;
  border-radius: 20px;
  overflow: visible;
  border: 1px solid rgba(255, 140, 0, 0.35);
  box-shadow: 0 0 35px rgba(255, 140, 0, 0.15), inset 0 1px 0 rgba(255,255,255,0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  box-sizing: border-box;
}

.mm-banner-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 50px rgba(255, 140, 0, 0.3), inset 0 1px 0 rgba(255,255,255,0.08);
}

.mm-banner-bg {
  position: absolute;
  inset: 0;
  border-radius: 20px;
  background:
    radial-gradient(ellipse 80% 60% at 50% 110%, rgba(255,140,0,0.12) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 20% 0%, rgba(255,100,0,0.08) 0%, transparent 50%),
    linear-gradient(170deg, rgba(15,20,45,0.97) 0%, rgba(20,28,58,0.97) 100%);
  z-index: 0;
}

.mm-badge {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  background: linear-gradient(90deg, #ff8c00, #ff6200);
  color: #fff;
  padding: 7px 22px;
  border-radius: 50px;
  font-weight: 900;
  font-size: 0.75rem;
  letter-spacing: 2px;
  box-shadow: 0 0 18px rgba(255, 140, 0, 0.7);
  z-index: 10;
  white-space: nowrap;
}

.mm-banner-body {
  position: relative;
  z-index: 1;
  padding: 28px 24px 22px;
  text-align: center;
}

.mm-header { margin-bottom: 18px; }

.mm-title {
  font-size: 1.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, #ff8c00, #ffa940, #ff6200);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 0.5px;
  margin: 0 0 4px;
}

.mm-subtitle {
  color: rgba(255,255,255,0.55);
  font-size: 0.85rem;
  margin: 0;
  letter-spacing: 0.3px;
}

.mm-tiers {
  display: flex;
  gap: 14px;
  justify-content: center;
}

.mm-tier {
  flex: 1;
  max-width: 220px;
  text-decoration: none;
  border-radius: 14px;
  padding: 18px 14px 14px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  cursor: pointer;
}

.mm-tier:hover {
  transform: translateY(-3px);
}

.mm-tier-main {
  background: linear-gradient(160deg, rgba(255,140,0,0.12) 0%, rgba(255,100,0,0.06) 100%);
  border: 1px solid rgba(255,140,0,0.3);
}

.mm-tier-main:hover {
  box-shadow: 0 8px 30px rgba(255,140,0,0.25);
  border-color: rgba(255,140,0,0.5);
}

.mm-tier-lite {
  background: linear-gradient(160deg, rgba(0,255,136,0.08) 0%, rgba(0,200,106,0.04) 100%);
  border: 1px solid rgba(0,255,136,0.25);
}

.mm-tier-lite:hover {
  box-shadow: 0 8px 30px rgba(0,255,136,0.2);
  border-color: rgba(0,255,136,0.45);
}

.mm-tier-badge-label {
  position: absolute;
  top: -9px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  padding: 2px 12px;
  border-radius: 20px;
  white-space: nowrap;
}

.mm-tier-main .mm-tier-badge-label {
  background: linear-gradient(90deg, #ff8c00, #ff6200);
  color: #fff;
}

.mm-tier-lite .mm-tier-badge-label {
  background: linear-gradient(90deg, #00ff88, #00cc6a);
  color: #000;
}

.mm-tier-icon { line-height: 1; }

.mm-coin {
  width: 32px;
  height: 32px;
  filter: drop-shadow(0 2px 6px rgba(255,200,0,0.35));
}

.mm-tier-name {
  font-size: 0.85rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.3px;
}

.mm-tier-stats {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.6);
}

.mm-stat-num {
  font-weight: 700;
}

.mm-tier-main .mm-stat-num { color: #ff8c00; }
.mm-tier-lite .mm-stat-num { color: #00ff88; }

.mm-stat-divider {
  width: 1px;
  height: 12px;
  background: rgba(255,255,255,0.15);
}

.mm-tier-main .mm-stat-prize .mm-stat-num { color: #ffd700; }

.mm-tier-regions {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.5px;
}

.mm-tier-cta {
  display: inline-block;
  padding: 7px 22px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.25s ease;
  margin-top: 2px;
}

.mm-tier-main .mm-tier-cta {
  background: linear-gradient(90deg, #ff8c00, #ff6200);
  color: #fff;
  box-shadow: 0 4px 16px rgba(255,140,0,0.3);
}

.mm-tier-main:hover .mm-tier-cta {
  box-shadow: 0 6px 24px rgba(255,140,0,0.45);
}

.mm-tier-lite .mm-tier-cta {
  background: linear-gradient(90deg, #00ff88, #00cc6a);
  color: #000;
  box-shadow: 0 4px 16px rgba(0,255,136,0.25);
}

.mm-tier-lite:hover .mm-tier-cta {
  box-shadow: 0 6px 24px rgba(0,255,136,0.4);
}

@media (max-width: 768px) {
  .mm-banner { padding-top: 14px; }
  .mm-banner-body { padding: 22px 14px 16px; }
  .mm-badge { font-size: 0.65rem; padding: 5px 16px; }
  .mm-title { font-size: 1.2rem; }
  .mm-subtitle { font-size: 0.78rem; }
  .mm-tiers { gap: 10px; }
  .mm-tier { padding: 16px 10px 12px; max-width: 180px; }
  .mm-coin { width: 26px; height: 26px; }
  .mm-tier-name { font-size: 0.78rem; }
  .mm-tier-stats { font-size: 0.65rem; gap: 6px; }
  .mm-tier-cta { padding: 6px 16px; font-size: 0.68rem; }
}

@media (max-width: 480px) {
  .mm-tiers { flex-direction: column; align-items: center; }
  .mm-tier { max-width: 260px; width: 100%; }
}

/* ================================================
   ARENA CONTESTS GC-CARD WIDGET
   ================================================ */
.mm-gc-card {
  position: relative;
  min-width: 0;
  max-width: 340px;
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  background: linear-gradient(170deg, #0a0e1a 0%, #0d1225 60%, #111832 100%);
  border: 1.5px solid rgba(99, 102, 241, 0.2);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.mm-gc-hero-bg {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse at 50% 30%, rgba(99, 102, 241, 0.12) 0%, transparent 60%),
              radial-gradient(ellipse at 20% 80%, rgba(34, 197, 94, 0.06) 0%, transparent 50%),
              radial-gradient(ellipse at 80% 80%, rgba(249, 115, 22, 0.06) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

.mm-gc-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #22c55e, #6366f1, #f97316);
  z-index: 2;
}

.mm-gc-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 40px rgba(99, 102, 241, 0.18), 0 4px 16px rgba(34, 197, 94, 0.08);
  border-color: rgba(99, 102, 241, 0.35);
}

.mm-gc-status-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 12px 0;
  position: relative;
  z-index: 1;
  width: 100%;
  box-sizing: border-box;
  align-self: stretch;
}

.mm-gc-badge {
  font-size: 9px;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: 10px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.25), rgba(139, 92, 246, 0.25));
  color: #a5b4fc;
  border: 1px solid rgba(99, 102, 241, 0.3);
}

.mm-gc-subtitle {
  font-size: 9px;
  color: #94a3b8;
  font-weight: 600;
}

.mm-gc-avatar-row {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  position: relative;
  z-index: 1;
  flex: 1;
  width: 100%;
  overflow: hidden;
}

.mm-gc-avatar-row::before {
  display: none;
}

.mm-gc-avatar {
  width: 100%;
  height: 100%;
  border-radius: 0;
  overflow: hidden;
  background: none;
  border: none;
  box-shadow: none;
  position: relative;
  z-index: 1;
}

.mm-gc-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.mm-gc-headline {
  text-align: center !important;
  font-size: 1.1rem;
  font-weight: 800;
  color: #e2e8f0;
  letter-spacing: 0.5px;
  padding: 6px 0 2px;
  position: relative;
  z-index: 1;
  width: 100%;
  box-sizing: border-box;
  align-self: stretch;
  display: block;
  margin-top: auto;
}

.mm-gc-tiers {
  display: flex;
  gap: 8px;
  padding: 4px 12px 10px;
  position: relative;
  z-index: 1;
  width: 100%;
  box-sizing: border-box;
  align-self: stretch;
}

.mm-gc-tier {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 10px 8px;
  border-radius: 12px;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
  text-align: center;
}

.mm-gc-tier:hover {
  transform: translateY(-2px);
}

.mm-gc-tier-grand {
  background: rgba(249, 115, 22, 0.1);
  border: 1px solid rgba(249, 115, 22, 0.2);
}

.mm-gc-tier-grand:hover {
  background: rgba(249, 115, 22, 0.18);
}

.mm-gc-tier-lite {
  background: rgba(34, 197, 94, 0.08);
  border: 1px solid rgba(34, 197, 94, 0.15);
}

.mm-gc-tier-lite:hover {
  background: rgba(34, 197, 94, 0.14);
}

.mm-gc-tier-label {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 1px;
  padding: 2px 8px;
  border-radius: 10px;
  text-transform: uppercase;
}

.mm-gc-tier-grand .mm-gc-tier-label {
  background: rgba(249, 115, 22, 0.2);
  color: #fb923c;
}

.mm-gc-tier-lite .mm-gc-tier-label {
  background: rgba(34, 197, 94, 0.2);
  color: #4ade80;
}

.mm-gc-tier-name {
  font-size: 0.72rem;
  font-weight: 700;
  color: #e2e8f0;
}

.mm-gc-tier-stats {
  font-size: 0.62rem;
  color: #94a3b8;
  display: flex;
  gap: 4px;
  align-items: center;
}

.mm-gc-tier-divider {
  color: #475569;
}

.mm-gc-tier-cta {
  font-size: 0.68rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 8px;
  margin-top: 2px;
  transition: background 0.2s;
}

.mm-gc-tier-grand .mm-gc-tier-cta {
  background: rgba(249, 115, 22, 0.2);
  color: #fb923c;
}

.mm-gc-tier-grand:hover .mm-gc-tier-cta {
  background: rgba(249, 115, 22, 0.35);
}

.mm-gc-tier-lite .mm-gc-tier-cta {
  background: rgba(34, 197, 94, 0.2);
  color: #4ade80;
}

.mm-gc-tier-lite:hover .mm-gc-tier-cta {
  background: rgba(34, 197, 94, 0.35);
}

@media (max-width: 600px) {
  .mm-gc-card {
    max-width: none;
    margin: 0 0 16px;
    border-radius: 14px;
    min-height: 480px;
  }
  .mm-gc-avatar-row {
    min-height: 280px;
    height: 280px;
    flex: 0 0 280px;
  }
  .mm-gc-avatar {
    width: 100%;
    height: 100%;
  }
  .mm-gc-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 65%;
  }
  .mm-gc-headline {
    font-size: 0.95rem;
  }
  .mm-gc-tiers {
    padding: 4px 10px 10px;
    gap: 6px;
  }
  .mm-gc-tier-name {
    font-size: 0.7rem;
  }
  .mm-gc-tier-stats {
    font-size: 0.58rem;
  }
}

/* ================================================
   KENNEL ROYALE CASINO GC-CARD
   ================================================ */
.kr-gc-card {
  position: relative;
  min-width: 0;
  max-width: 340px;
  min-height: 350px;
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  background: linear-gradient(170deg, #1a0a2a 0%, #0d0518 100%);
  border: 1.5px solid rgba(168, 85, 247, 0.15);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: flex;
  flex-direction: column;
}

.kr-gc-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #a855f7, #d4af37, #a855f7);
}

.kr-gc-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 36px rgba(168, 85, 247, 0.15);
  border-color: rgba(168, 85, 247, 0.3);
}

.kr-gc-status-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 12px 0;
}

.kr-gc-badge {
  font-size: 10px;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: 20px;
  letter-spacing: 1px;
  text-transform: uppercase;
  background: rgba(168, 85, 247, 0.18);
  color: #a855f7;
}

.kr-gc-subtitle {
  font-size: 11px;
  color: #64748b;
  font-weight: 600;
}

.kr-gc-avatar-row {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  flex: 1;
  position: relative;
}

.kr-gc-avatar-row::before {
  content: '';
  position: absolute;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, rgba(168, 85, 247, 0.08) 40%, transparent 70%);
  pointer-events: none;
}

.kr-gc-avatar {
  width: 200px;
  height: 200px;
  overflow: visible;
  background: none;
  border: none;
  position: relative;
  z-index: 1;
  transition: transform 0.3s ease;
}

.kr-gc-avatar:hover {
  transform: scale(1.05);
}

.kr-gc-avatar img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.3));
}

.kr-gc-info {
  text-align: center;
  padding: 0 14px 12px;
}

.kr-gc-title {
  font-size: 0.85rem;
  font-weight: 700;
  color: #e2e8f0;
  margin: 0 0 8px;
  letter-spacing: 0.3px;
}

.kr-gc-cta {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  color: #d4af37;
  background: rgba(212, 175, 55, 0.12);
  padding: 5px 18px;
  border-radius: 20px;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
  letter-spacing: 0.5px;
}

.kr-gc-cta:hover {
  background: rgba(212, 175, 55, 0.25);
  color: #ffd700;
}

@media (max-width: 600px) {
  .kr-gc-card {
    max-width: none;
    margin: 0 0 16px;
    border-radius: 14px;
  }
  .kr-gc-avatar {
    width: 180px;
    height: 180px;
  }
  .kr-gc-avatar-row::before {
    width: 160px;
    height: 160px;
  }
}

/* ================================================
   HOUND COIN BONUS GC-CARD
   ================================================ */
.hc-gc-card {
  position: relative;
  min-width: 0;
  max-width: 340px;
  min-height: 350px;
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  background: linear-gradient(170deg, #0a2a2a 0%, #051a1a 100%);
  border: 1.5px solid rgba(0, 210, 190, 0.15);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: flex;
  flex-direction: column;
}

.hc-gc-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #eab308, #f59e0b, #eab308);
}

.hc-gc-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 36px rgba(0, 210, 190, 0.12);
  border-color: rgba(0, 210, 190, 0.3);
}

.hc-gc-status-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 12px 0;
}

.hc-gc-badge {
  font-size: 10px;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: 20px;
  letter-spacing: 1px;
  text-transform: uppercase;
  background: rgba(234, 179, 8, 0.18);
  color: #eab308;
}

.hc-gc-window {
  display: flex;
  align-items: center;
  gap: 4px;
}

.hc-gc-window-label {
  font-size: 10px;
  color: #5b9a9a;
  font-weight: 600;
}

.hc-gc-window-value {
  font-size: 10px;
  color: #eab308;
  font-weight: 700;
}

.hc-gc-avatar-row {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  flex: 1;
  position: relative;
}

.hc-gc-avatar-row::before {
  content: '';
  position: absolute;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(234, 179, 8, 0.25) 0%, rgba(234, 179, 8, 0.08) 40%, transparent 70%);
  pointer-events: none;
}

.hc-gc-coin-btn {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  transition: transform 0.3s ease;
  display: block;
  position: relative;
  z-index: 1;
}

.hc-gc-coin-btn:hover:not(:disabled) {
  transform: scale(1.1);
}

.hc-gc-coin-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.hc-gc-coin-btn .hound-coin-img {
  width: 170px;
  height: 170px;
  object-fit: contain;
  display: block;
  border-radius: 50%;
  transition: transform 0.3s ease, filter 0.3s ease;
  filter: brightness(1.3) saturate(1.2) drop-shadow(0 0 30px rgba(234, 179, 8, 0.7)) drop-shadow(0 0 60px rgba(234, 179, 8, 0.3));
}

.hc-gc-coin-btn:hover:not(:disabled) .hound-coin-img {
  transform: rotate(15deg) scale(1.05);
  filter: brightness(1.4) saturate(1.3) drop-shadow(0 0 40px rgba(234, 179, 8, 0.8)) drop-shadow(0 0 80px rgba(234, 179, 8, 0.4));
}

.hc-gc-coin-btn.claiming .hound-coin-img {
  animation: hc-spin 0.8s ease-in-out;
}

.hc-gc-coin-btn.claimed .hound-coin-img {
  filter: brightness(0.7) saturate(0.6) drop-shadow(0 2px 8px rgba(234, 179, 8, 0.15));
}

@keyframes hc-spin {
  0% { transform: rotateY(0deg); }
  100% { transform: rotateY(360deg); }
}

.hc-gc-info {
  text-align: center;
  padding: 6px 14px 12px;
}

.hc-gc-title {
  font-size: 0.85rem;
  font-weight: 700;
  color: #e2e8f0;
  margin: 0 0 4px;
  letter-spacing: 0.3px;
  line-height: 1.3;
}

.hc-gc-desc {
  font-size: 0.7rem;
  font-weight: 500;
  color: rgba(126, 200, 200, 0.7);
  margin: 0 0 4px;
  line-height: 1.3;
}

.hc-gc-info .claim-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  color: #22c55e;
  margin: 6px 0 2px;
  line-height: 1.3;
}

.hc-gc-info .claim-label.claimed {
  color: #eab308;
  font-weight: 700;
}

.hc-gc-status {
  font-size: 0.68rem;
  font-weight: 500;
  color: rgba(126, 200, 200, 0.6);
  margin: 4px 0 0;
  line-height: 1.3;
}

.hc-gc-status.success {
  color: #22c55e;
  font-weight: 600;
}

.hc-gc-status.error {
  color: #ef4444;
  font-weight: 600;
}

.hc-gc-status.claimed-status {
  color: rgba(126, 200, 200, 0.6);
  font-weight: 500;
}

@media (max-width: 600px) {
  .hc-gc-card {
    max-width: none;
    margin: 0 0 16px;
    border-radius: 14px;
  }
  .hc-gc-coin-btn .hound-coin-img {
    width: 150px;
    height: 150px;
  }
  .hc-gc-avatar-row::before {
    width: 160px;
    height: 160px;
  }
}

/* ================================================
   CHALLENGE THE HOUND GC-CARD
   ================================================ */
.cth-gc-card {
  position: relative;
  min-width: 0;
  max-width: 340px;
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  background: linear-gradient(170deg, #062a1a 0%, #041a10 60%, #031208 100%);
  border: 1.5px solid rgba(0, 230, 118, 0.18);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: flex;
  flex-direction: column;
}

.cth-gc-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0, 230, 118, 0.18);
  border-color: rgba(0, 230, 118, 0.35);
}

.cth-gc-accent {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #00e676, #00c853, #00e676);
  z-index: 2;
}

.cth-gc-badge-row {
  display: flex;
  align-items: center;
  padding: 10px 12px 0;
  z-index: 2;
  position: relative;
}

.cth-gc-badge {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #00e676;
  background: rgba(0, 230, 118, 0.12);
  border: 1px solid rgba(0, 230, 118, 0.25);
  padding: 3px 8px;
  border-radius: 4px;
}

.cth-gc-hero {
  position: relative;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px 6px 0;
  min-height: 260px;
}

.cth-gc-hero-img {
  width: 100%;
  max-width: 320px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 4px 24px rgba(0, 230, 118, 0.25));
  z-index: 2;
  position: relative;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.cth-gc-card:hover .cth-gc-hero-img {
  transform: scale(1.04);
  filter: drop-shadow(0 8px 32px rgba(0, 230, 118, 0.35));
}

.cth-gc-hero-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 230, 118, 0.12) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}

.cth-gc-info {
  padding: 6px 14px 14px;
  text-align: center;
  z-index: 2;
  position: relative;
}

.cth-gc-title {
  font-size: 1.35rem;
  font-weight: 900;
  margin: 32px 0 4px;
  letter-spacing: 2.5px;
  text-align: center;
  text-transform: uppercase;
  font-family: 'Bebas Neue', 'Oswald', 'Impact', sans-serif;
  background: linear-gradient(135deg, #00e676 0%, #69f0ae 45%, #ffd54a 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  text-shadow: 0 2px 18px rgba(0, 230, 118, 0.35);
  filter: drop-shadow(0 1px 0 rgba(0,0,0,0.4));
  position: relative;
  z-index: 3;
}

.cth-gc-tagline {
  font-size: 0.72rem;
  color: rgba(0, 230, 118, 0.7);
  margin: 0 0 8px;
  font-weight: 600;
}

.cth-gc-cta {
  display: inline-block;
  padding: 8px 24px;
  border-radius: 8px;
  font-size: 0.75rem;
  font-weight: 700;
  text-decoration: none;
  color: #fff;
  background: linear-gradient(135deg, #00c853 0%, #00e676 100%);
  border: 1px solid rgba(0, 230, 118, 0.3);
  transition: all 0.2s ease;
  letter-spacing: 0.3px;
  box-shadow: 0 2px 12px rgba(0, 230, 118, 0.2);
}

.cth-gc-cta:hover {
  background: linear-gradient(135deg, #00e676 0%, #69f0ae 100%);
  box-shadow: 0 4px 20px rgba(0, 230, 118, 0.35);
  transform: translateY(-1px);
}

@media (max-width: 600px) {
  .cth-gc-card {
    max-width: none;
    margin: 0 0 16px;
    border-radius: 14px;
  }
  .cth-gc-hero-img {
    max-width: 300px;
  }
}

/* ===== World Cup Bracket hero card — FIFA 2026 palette (blue -> purple -> magenta) ===== */
#world-cup-banner.bth-hero {
  background: radial-gradient(120% 80% at 50% 0%, #243b8f 0%, #2a1c63 45%, #0a0a24 100%) !important;
  border-color: rgba(124, 77, 255, 0.34) !important;
}
#world-cup-banner:hover {
  box-shadow: 0 12px 40px rgba(124, 77, 255, 0.28);
  border-color: rgba(255, 45, 120, 0.45) !important;
}
#world-cup-banner .cth-gc-accent {
  background: linear-gradient(90deg, #2979ff, #ff2d78, #18e0d0);
}
#world-cup-banner .cth-gc-badge,
#world-cup-banner .bth-card-badge {
  color: #ff7ab0;
  background: rgba(255, 45, 120, 0.14);
  border-color: rgba(255, 45, 120, 0.32);
}
#world-cup-banner .cth-gc-title,
#world-cup-banner .bth-card-title {
  background: linear-gradient(135deg, #4d9fff 0%, #b06bff 45%, #ff4d94 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  text-shadow: 0 2px 18px rgba(124, 77, 255, 0.4);
}
#world-cup-banner .cth-gc-hero-img {
  filter: drop-shadow(0 4px 24px rgba(124, 77, 255, 0.32));
}
#world-cup-banner:hover .cth-gc-hero-img {
  filter: drop-shadow(0 8px 32px rgba(255, 45, 120, 0.4));
}
#world-cup-banner .cth-gc-hero-glow {
  background: radial-gradient(circle, rgba(124, 77, 255, 0.18) 0%, transparent 70%);
}
#world-cup-banner .bth-card-tier.lite {
  color: #bca9ff;
  background: rgba(124, 77, 255, 0.12);
  border-color: rgba(124, 77, 255, 0.28);
}
#world-cup-banner .cth-gc-cta,
#world-cup-banner .bth-card-cta {
  background: linear-gradient(135deg, #2962ff 0%, #7c4dff 55%, #ff2d78 100%);
  border-color: rgba(255, 45, 120, 0.35);
  box-shadow: 0 2px 12px rgba(124, 77, 255, 0.28);
}
#world-cup-banner .cth-gc-cta:hover,
#world-cup-banner .bth-card-cta:hover {
  background: linear-gradient(135deg, #4d8bff 0%, #9b6bff 55%, #ff5d97 100%);
  box-shadow: 0 4px 20px rgba(255, 45, 120, 0.4);
}

/* ===== Beat the Hound hero card (slot 1) ===== */
.bth-hero {
  background: radial-gradient(120% 80% at 50% 0%, #0a3a24 0%, #052817 45%, #02110a 100%) !important;
  border-color: rgba(0, 230, 118, 0.30) !important;
  cursor: pointer;
}
.bth-hero .cth-gc-hero {
  min-height: 150px;
  padding-top: 2px;
}
.bth-hero .cth-gc-hero-img {
  max-width: 270px;
}
.bth-hero .bth-card-title {
  margin: 6px 0 8px;
  font-size: 1.5rem;
}
.bth-card-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.bth-card-stats {
  display: flex;
  justify-content: center;
  gap: 26px;
  margin: 0 0 10px;
}
.bth-card-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1.1;
}
.bth-card-stat-val {
  font-size: 1.15rem;
  font-weight: 900;
  color: #00e676;
}
.bth-card-stat-lbl {
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 2px;
}
.bth-card-tiers {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin: 0 0 12px;
  align-items: center;
}
.bth-card-tier {
  font-size: 0.7rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.85);
  background: rgba(0, 230, 118, 0.08);
  border: 1px solid rgba(0, 230, 118, 0.18);
  border-radius: 999px;
  padding: 4px 12px;
  white-space: nowrap;
}
.bth-card-tier.cash {
  color: #ffd54a;
  border-color: rgba(255, 213, 74, 0.28);
  background: rgba(255, 213, 74, 0.08);
}
.bth-hero .bth-card-cta {
  width: 100%;
  box-sizing: border-box;
  text-align: center;
  padding: 13px 18px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.4px;
}
@media (max-width: 768px) {
  .bth-hero .cth-gc-hero {
    min-height: 120px;
  }
  .bth-hero .cth-gc-hero-img {
    max-width: 230px;
  }
  .bth-card-stats {
    gap: 20px;
  }
}

.pp-gc-card {
  position: relative;
  min-width: 0;
  max-width: 340px;
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  background: linear-gradient(155deg, #1a0a00 0%, #2d1200 30%, #1a0800 60%, #0d0400 100%);
  border: 1.5px solid rgba(255, 152, 0, 0.25);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.pp-gc-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(255, 152, 0, 0.25);
  border-color: rgba(255, 152, 0, 0.5);
}

.pp-gc-accent {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #ff6d00, #ff9800, #ffb74d, #ff9800, #ff6d00);
  z-index: 3;
}

.pp-gc-bg-avatar {
  position: absolute;
  bottom: -15px;
  right: -10px;
  width: 220px;
  height: 280px;
  opacity: 0.35;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.pp-gc-bg-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: bottom right;
  filter: drop-shadow(0 0 30px rgba(255, 152, 0, 0.3)) saturate(0.8);
}

.pp-gc-card:hover .pp-gc-bg-avatar {
  opacity: 0.45;
  transform: scale(1.03);
}

.pp-gc-badge-row {
  display: flex;
  align-items: center;
  padding: 12px 14px 0;
  z-index: 2;
  position: relative;
}

.pp-gc-badge {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #ffb74d;
  background: rgba(255, 152, 0, 0.15);
  border: 1px solid rgba(255, 152, 0, 0.3);
  padding: 3px 8px;
  border-radius: 4px;
}

.pp-gc-content {
  position: relative;
  z-index: 2;
  padding: 14px 14px 18px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.pp-gc-title {
  font-size: 1.45rem;
  font-weight: 900;
  color: #fff;
  margin: 0 0 10px;
  letter-spacing: -0.2px;
  line-height: 1.25;
  text-shadow: 0 2px 12px rgba(255, 152, 0, 0.25), 0 0 40px rgba(255, 152, 0, 0.08);
  max-width: 200px;
}

.pp-gc-desc {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.7);
  margin: 0 0 16px;
  line-height: 1.5;
  font-weight: 500;
  max-width: 210px;
}

.pp-gc-cta-row {
  display: flex;
  gap: 8px;
}

.pp-gc-cta {
  display: inline-block;
  padding: 9px 18px;
  border-radius: 8px;
  font-size: 0.75rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s ease;
  letter-spacing: 0.3px;
}

.pp-gc-cta-picks {
  color: #fff;
  background: linear-gradient(135deg, #e65100 0%, #ff9800 100%);
  border: 1px solid rgba(255, 152, 0, 0.4);
  box-shadow: 0 3px 16px rgba(255, 152, 0, 0.3);
}

.pp-gc-cta-picks:hover {
  background: linear-gradient(135deg, #ff9800 0%, #ffb74d 100%);
  box-shadow: 0 4px 24px rgba(255, 152, 0, 0.45);
  transform: translateY(-1px);
}

.pp-gc-cta-parlay {
  color: #ffb74d;
  background: rgba(255, 152, 0, 0.12);
  border: 1px solid rgba(255, 152, 0, 0.3);
}

.pp-gc-cta-parlay:hover {
  background: rgba(255, 152, 0, 0.22);
  border-color: rgba(255, 152, 0, 0.5);
  transform: translateY(-1px);
}

@media (max-width: 600px) {
  .pp-gc-card {
    max-width: none;
    border-radius: 14px;
  }
  .pp-gc-title {
    font-size: 1.25rem;
  }
  .pp-gc-desc {
    font-size: 0.74rem;
  }
  .pp-gc-bg-avatar {
    width: 180px;
    height: 230px;
    bottom: -10px;
    right: -5px;
    opacity: 0.3;
  }
}

/* ================================================
   CHALLENGE THE HOUND HUB MODAL
   ================================================ */
.cth-hub-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.75);
  z-index: 10001;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  backdrop-filter: blur(4px);
}

.cth-hub-content {
  background: linear-gradient(160deg, #0a2e1a 0%, #061a0f 50%, #041208 100%);
  border-radius: 18px;
  padding: 28px 24px;
  max-width: 440px;
  width: 100%;
  max-height: 85vh;
  overflow-y: auto;
  color: #fff;
  position: relative;
  box-shadow: 0 8px 48px rgba(0, 80, 40, 0.5), 0 0 24px rgba(0, 230, 118, 0.08);
  border: 1px solid rgba(0, 230, 118, 0.15);
}

.cth-hub-close {
  position: absolute;
  top: 12px;
  right: 14px;
  background: none;
  border: none;
  color: #fff;
  font-size: 24px;
  cursor: pointer;
  opacity: 0.6;
  transition: opacity 0.2s;
  z-index: 2;
}
.cth-hub-close:hover { opacity: 1; }

.cth-hub-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

.cth-hub-avatar {
  width: 64px;
  height: 64px;
  border-radius: 14px;
  border: 2px solid rgba(0, 230, 118, 0.4);
  box-shadow: 0 0 18px rgba(0, 230, 118, 0.25);
  object-fit: contain;
  background: rgba(0, 20, 10, 0.6);
  padding: 4px;
}

.cth-hub-header-text h3 {
  margin: 0;
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.3px;
}

.cth-hub-subtitle {
  font-size: 12px;
  color: rgba(0, 230, 118, 0.6);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.cth-hub-record {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: rgba(0, 230, 118, 0.06);
  border: 1px solid rgba(0, 230, 118, 0.12);
  border-radius: 12px;
  padding: 14px 8px;
  margin-bottom: 20px;
}

.cth-hub-record-stat {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.cth-hub-record-num {
  font-size: 28px;
  font-weight: 800;
  color: #00e676;
  line-height: 1;
}

.cth-hub-record-label {
  font-size: 11px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.45);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cth-hub-record-divider {
  width: 1px;
  height: 36px;
  background: rgba(0, 230, 118, 0.15);
}

.cth-hub-tabs {
  display: flex;
  gap: 0;
  margin-bottom: 16px;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(0, 230, 118, 0.15);
}

.cth-hub-tab {
  flex: 1;
  padding: 10px 0;
  border: none;
  background: rgba(0, 20, 10, 0.4);
  color: rgba(255, 255, 255, 0.45);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.cth-hub-tab:hover {
  background: rgba(0, 230, 118, 0.08);
  color: rgba(255, 255, 255, 0.7);
}

.cth-hub-tab.active {
  background: rgba(0, 230, 118, 0.15);
  color: #00e676;
}

.cth-hub-list {
  min-height: 120px;
}

.cth-hub-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 30px 16px;
  text-align: center;
}

.cth-hub-empty-icon {
  font-size: 32px;
  margin-bottom: 10px;
  opacity: 0.6;
}

.cth-hub-empty p {
  margin: 0 0 6px;
  font-size: 15px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.5);
}

.cth-hub-empty-hint {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.25);
  max-width: 240px;
  line-height: 1.4;
}

.cth-hub-challenge-item {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(0, 230, 118, 0.1);
  border-radius: 12px;
  margin-bottom: 10px;
  transition: background 0.2s;
}

.cth-hub-challenge-item:hover {
  background: rgba(0, 230, 118, 0.06);
}

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

.cth-hub-challenge-sport {
  font-size: 11px;
  font-weight: 800;
  color: #00e676;
  letter-spacing: 1.2px;
  background: rgba(0, 230, 118, 0.1);
  padding: 3px 8px;
  border-radius: 4px;
}

.cth-hub-challenge-date {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  font-weight: 500;
}

.cth-hub-challenge-picks {
  display: flex;
  align-items: center;
  gap: 10px;
}

.cth-hub-pick-row {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.cth-hub-pick-label {
  font-size: 10px;
  font-weight: 700;
  color: #4ade80;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.cth-hub-pick-label.hound {
  color: #f87171;
}

.cth-hub-pick-team {
  font-size: 13px;
  font-weight: 600;
  color: #e2e8f0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.cth-hub-pick-vs {
  font-size: 10px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.2);
  flex-shrink: 0;
  padding: 0 2px;
}

.cth-hub-challenge-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.cth-hub-challenge-wager {
  font-size: 13px;
  font-weight: 700;
  color: #fbbf24;
  white-space: nowrap;
}

.cth-hub-challenge-result {
  font-size: 11px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.cth-hub-challenge-result.win {
  background: rgba(34, 197, 94, 0.15);
  color: #4ade80;
}

.cth-hub-challenge-result.loss {
  background: rgba(239, 68, 68, 0.15);
  color: #f87171;
}

.cth-hub-challenge-result.pending {
  background: rgba(234, 179, 8, 0.12);
  color: #fbbf24;
}

.cth-hub-challenge-result.push {
  background: rgba(148, 163, 184, 0.12);
  color: #94a3b8;
}

.cth-open-pick-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(0, 230, 118, 0.15);
  border-radius: 12px;
  margin-bottom: 10px;
  transition: background 0.2s;
}

.cth-open-pick-card:hover {
  background: rgba(0, 230, 118, 0.06);
}

.cth-open-pick-top {
  display: flex;
  align-items: center;
  gap: 10px;
}

.cth-open-pick-time {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
  margin-left: auto;
}

.cth-open-pick-matchup {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.85);
}

.cth-open-pick-at {
  color: rgba(255, 255, 255, 0.3);
  font-size: 12px;
}

.cth-open-pick-hound {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  background: rgba(0, 230, 118, 0.06);
  border-radius: 10px;
  border: 1px solid rgba(0, 230, 118, 0.1);
}

.cth-open-pick-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid rgba(0, 230, 118, 0.4);
  object-fit: cover;
}

.cth-open-pick-details {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.cth-open-pick-label {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: rgba(0, 230, 118, 0.6);
  text-transform: uppercase;
}

.cth-open-pick-winner {
  font-size: 15px;
  font-weight: 700;
  color: #00e676;
}

.cth-open-challenge-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 14px;
  border: 2px solid rgba(255,215,0,0.4);
  background: linear-gradient(135deg, #6b1525, #4a0e1a);
  cursor: pointer;
  transition: all 0.2s;
  box-shadow: 0 4px 16px rgba(107,21,37,0.5);
  font-size: 15px;
  font-weight: 800;
  color: #ffd700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  white-space: nowrap;
}

.cth-open-challenge-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(107,21,37,0.6);
  border-color: #ffd700;
}

.cth-hub-daily-count {
  text-align: center;
  padding: 12px 16px;
  margin-top: 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.cth-open-upsell {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 16px;
  margin-top: 4px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.cth-open-upsell span {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
}

.cth-open-upsell a {
  font-size: 13px;
  font-weight: 700;
  color: #00e676;
  text-decoration: none;
  transition: opacity 0.2s;
}

.cth-open-upsell a:hover {
  opacity: 0.8;
  text-decoration: underline;
}

@media (max-width: 480px) {
  .cth-hub-content {
    padding: 20px 16px;
    border-radius: 14px;
  }
  .cth-hub-avatar {
    width: 52px;
    height: 52px;
  }
  .cth-hub-record-num {
    font-size: 24px;
  }
}

/* ================================================
   HOW IT WORKS SECTION
   ================================================ */
.how-it-works-section {
  max-width: 1200px;
  margin: 60px auto 40px;
  padding: 50px 30px;
  background: linear-gradient(135deg, rgba(10, 14, 39, 0.98) 0%, rgba(26, 30, 58, 0.98) 100%);
  border: 1px solid rgba(0, 255, 136, 0.15);
  border-radius: 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.how-it-works-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 4px;
  background: linear-gradient(90deg, transparent, #00ff88, transparent);
  border-radius: 2px;
}

.how-it-works-section h2 {
  font-size: 2.2rem;
  background: linear-gradient(45deg, #00ff88, #00ccff);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 0 0 10px 0;
}

.how-it-works-subtitle {
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.1rem;
  margin: 0 0 40px 0;
}

.how-it-works-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.how-step {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 35px 25px;
  position: relative;
  transition: all 0.3s ease;
}

.how-step:hover {
  border-color: rgba(0, 255, 136, 0.3);
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 255, 136, 0.1);
}

.step-number {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 35px;
  height: 35px;
  background: linear-gradient(135deg, #00ff88, #00cc88);
  color: #0a0e27;
  font-size: 1.2rem;
  font-weight: 800;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 255, 136, 0.4);
}

.step-icon {
  font-size: 3rem;
  margin-bottom: 20px;
}

.how-step h3 {
  font-size: 1.3rem;
  color: #fff;
  margin: 0 0 12px 0;
}

.how-step p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.95rem;
  line-height: 1.5;
  margin: 0;
}

/* ================================================
   PLATFORM STATS SECTION
   ================================================ */
.platform-stats-section {
  max-width: 1200px;
  margin: 0 auto 40px;
  padding: 0 20px;
}

.platform-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.platform-stat {
  background: linear-gradient(145deg, rgba(20, 25, 50, 0.9) 0%, rgba(30, 35, 65, 0.9) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 25px 20px;
  display: flex;
  align-items: center;
  gap: 15px;
  transition: all 0.3s ease;
}

.platform-stat:hover {
  border-color: rgba(0, 255, 136, 0.3);
  transform: translateY(-3px);
}

.stat-icon {
  font-size: 2.5rem;
}

.stat-info {
  display: flex;
  flex-direction: column;
}

.stat-value {
  font-size: 1.8rem;
  font-weight: 800;
  background: linear-gradient(45deg, #00ff88, #00ccff);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat-label {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ================================================
   COMMUNITY LINKS SECTION
   ================================================ */
.community-links-section {
  max-width: 1200px;
  margin: 0 auto 40px;
  padding: 0 20px;
  text-align: center;
}

.community-links-section h2 {
  font-size: 2rem;
  background: linear-gradient(45deg, #00ff88, #00ccff);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 0 0 30px 0;
}

.community-links-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.community-link-card {
  background: linear-gradient(145deg, rgba(20, 25, 50, 0.95) 0%, rgba(30, 35, 65, 0.95) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 30px 20px;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.community-link-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.community-link-card.howlboard::before { background: linear-gradient(90deg, #00ff88, #00cc88); }
.community-link-card.doghouse::before { background: linear-gradient(90deg, #ff9500, #ffc107); }
.community-link-card.arena::before { background: linear-gradient(90deg, #ff4444, #ff6b6b); }
.community-link-card.casino::before { background: linear-gradient(90deg, #9b59b6, #e91e63); }

.community-link-card:hover {
  transform: translateY(-8px);
  border-color: rgba(0, 255, 136, 0.4);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.community-link-card:hover::before {
  opacity: 1;
}

.community-icon {
  font-size: 3rem;
  display: block;
  margin-bottom: 15px;
}

.community-link-card h3 {
  font-size: 1.3rem;
  color: #fff;
  margin: 0 0 10px 0;
}

.community-link-card p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
  line-height: 1.4;
}

/* ================================================
   RESPONSIBLE GAMING SECTION
   ================================================ */
.responsible-gaming-section {
  max-width: 1200px;
  margin: 20px auto 40px;
  padding: 0 20px;
}

.responsible-gaming-content {
  background: linear-gradient(135deg, rgba(255, 170, 0, 0.1) 0%, rgba(10, 14, 39, 0.95) 100%);
  border: 1px solid rgba(255, 170, 0, 0.3);
  border-radius: 16px;
  padding: 25px 30px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.responsible-icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.responsible-text h4 {
  font-size: 1.2rem;
  color: #ffaa00;
  margin: 0 0 8px 0;
}

.responsible-text p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
  line-height: 1.6;
}

/* ================================================
   SITE FOOTER
   ================================================ */
.site-footer {
  background: linear-gradient(180deg, rgba(10, 14, 39, 0.98) 0%, #050811 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 50px 0 0;
  margin-top: 40px;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px 40px;
  display: flex;
  justify-content: space-between;
  gap: 50px;
  flex-wrap: wrap;
}

.footer-brand {
  flex: 1;
  min-width: 200px;
}

.footer-logo {
  height: 50px;
  margin-bottom: 15px;
}

.footer-tagline {
  color: rgba(255, 255, 255, 0.5);
  font-size: 1rem;
  margin: 0;
  font-style: italic;
}

.footer-links {
  display: flex;
  gap: 60px;
  flex-wrap: wrap;
}

.footer-link-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-link-group h5 {
  font-size: 0.9rem;
  color: #00ff88;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0 0 10px 0;
}

.footer-link-group a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer-link-group a:hover {
  color: #00ff88;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px 30px;
  text-align: center;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.85rem;
  margin: 0;
}

/* Mobile Responsive for Footer Sections */
@media (max-width: 768px) {
  .how-it-works-section {
    margin: 40px 15px;
    padding: 40px 20px;
  }

  .how-it-works-section h2 {
    font-size: 1.7rem;
  }

  .how-it-works-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .how-step {
    padding: 30px 20px;
  }

  .platform-stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .platform-stat {
    flex-direction: column;
    text-align: center;
    padding: 20px 15px;
  }

  .stat-value {
    font-size: 1.5rem;
  }

  .community-links-section h2 {
    font-size: 1.6rem;
  }

  .community-links-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .community-link-card {
    padding: 25px 15px;
  }

  .community-icon {
    font-size: 2.5rem;
  }

  .community-link-card h3 {
    font-size: 1.1rem;
  }

  .responsible-gaming-content {
    flex-direction: column;
    text-align: center;
    padding: 20px;
  }

  .footer-content {
    flex-direction: column;
    gap: 30px;
    text-align: center;
  }

  .footer-links {
    justify-content: center;
    gap: 40px;
  }
}

@media (max-width: 480px) {
  .platform-stats-grid {
    grid-template-columns: 1fr;
  }

  .community-links-grid {
    grid-template-columns: 1fr;
  }

  .footer-links {
    flex-direction: column;
    gap: 25px;
  }
}

/* ============================================
   PACK PICKS SECTION
   ============================================ */
.pack-picks-section {
  max-width: 1200px;
  margin: 30px auto 20px auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.pack-picks-header {
  text-align: center;
  margin-bottom: 24px;
}

.pack-picks-title-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 16px;
  flex-wrap: nowrap;
}

.pack-picks-section .pack-logo {
  width: 48px !important;
  height: 48px !important;
  max-width: 48px !important;
  max-height: 48px !important;
  min-width: 48px;
  object-fit: contain;
  filter: drop-shadow(0 0 10px rgba(0, 255, 136, 0.5));
  flex-shrink: 0;
}

.pack-title {
  font-size: 1.8rem;
  font-weight: 900;
  background: linear-gradient(135deg, #00ff88 0%, #00cc6a 50%, #ffffff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0;
  letter-spacing: 0.5px;
}

.pack-subtitle {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.95rem;
  margin: 4px 0 0 0;
  font-style: italic;
}

.pack-stats-row {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

.pack-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.pack-stat-value {
  font-size: 1.4rem;
  font-weight: 800;
  color: #00ff88;
}

.pack-stat-label {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 2px;
}

.pack-picks-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.pack-pick-card {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 18px;
  padding: 28px 20px 20px;
  position: relative;
  overflow: visible;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.pack-pick-card:hover {
  transform: translateY(-4px);
}

.pack-pick-card.pack-tier {
  border-color: rgba(0, 255, 136, 0.35);
  box-shadow: 0 0 25px rgba(0, 255, 136, 0.15);
}

.pack-pick-card.pack-tier:hover {
  box-shadow: 0 8px 35px rgba(0, 255, 136, 0.3);
  border-color: rgba(0, 255, 136, 0.6);
}

.pack-pick-card.sharp-tier {
  border-color: rgba(59, 130, 246, 0.3);
  box-shadow: 0 0 20px rgba(59, 130, 246, 0.1);
}

.pack-pick-card.sharp-tier:hover {
  box-shadow: 0 8px 35px rgba(59, 130, 246, 0.25);
  border-color: rgba(59, 130, 246, 0.5);
}

.pack-pick-card.risk-tier {
  border-color: rgba(245, 158, 11, 0.3);
  box-shadow: 0 0 20px rgba(245, 158, 11, 0.1);
}

.pack-pick-card.risk-tier:hover {
  box-shadow: 0 8px 35px rgba(245, 158, 11, 0.25);
  border-color: rgba(245, 158, 11, 0.5);
}

.pick-tier-badge {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 5px 18px;
  border-radius: 50px;
  font-weight: 900;
  font-size: 0.7rem;
  letter-spacing: 1.5px;
  white-space: nowrap;
  z-index: 5;
}

.tier-pack {
  background: linear-gradient(90deg, #00ff88, #00cc6a);
  color: #000;
  box-shadow: 0 0 15px rgba(0, 255, 136, 0.6);
}

.tier-sharp {
  background: linear-gradient(90deg, #3b82f6, #2563eb);
  color: #fff;
  box-shadow: 0 0 15px rgba(59, 130, 246, 0.5);
}

.tier-risk {
  background: linear-gradient(90deg, #f59e0b, #d97706);
  color: #000;
  box-shadow: 0 0 15px rgba(245, 158, 11, 0.5);
}

.pick-card-body {
  text-align: center;
  position: relative;
}

.pick-sport-tag {
  display: inline-block;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.7);
  padding: 3px 12px;
  border-radius: 12px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.pick-matchup {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 14px;
  line-height: 1.4;
}

.pick-prediction {
  margin-bottom: 8px;
}

.pick-winner {
  display: block;
  font-size: 1.3rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 4px;
}

.pick-confidence {
  display: block;
  font-size: 0.8rem;
  color: #00ff88;
  font-weight: 600;
}

.sharp-tier .pick-confidence {
  color: #60a5fa;
}

.risk-tier .pick-confidence {
  color: #fbbf24;
}

.pick-spread {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 16px;
}

.pack-cta-btn {
  width: 100%;
  padding: 12px;
  border: none;
  border-radius: 12px;
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.2s ease;
  background: linear-gradient(135deg, #00ff88, #00cc6a);
  color: #000;
}

.pack-cta-btn:hover {
  transform: scale(1.03);
  box-shadow: 0 4px 20px rgba(0, 255, 136, 0.4);
}

.pack-cta-btn.sharp-btn {
  background: linear-gradient(135deg, #3b82f6, #2563eb);
  color: #fff;
}

.pack-cta-btn.sharp-btn:hover {
  box-shadow: 0 4px 20px rgba(59, 130, 246, 0.4);
}

.pack-cta-btn.risk-btn {
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: #000;
}

.pack-cta-btn.risk-btn:hover {
  box-shadow: 0 4px 20px rgba(245, 158, 11, 0.4);
}

.pick-locked-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(10, 14, 39, 0.85);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  z-index: 10;
}

.lock-icon {
  font-size: 2rem;
}

.lock-text {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
  font-weight: 600;
}

.unlock-btn {
  display: inline-block;
  padding: 8px 22px;
  background: linear-gradient(135deg, #00ff88, #00cc6a);
  color: #000;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 800;
  font-size: 0.8rem;
  margin-top: 4px;
  transition: all 0.2s ease;
}

.unlock-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 15px rgba(0, 255, 136, 0.5);
}

@media (max-width: 900px) {
  .pack-picks-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  
  .pack-title {
    font-size: 1.4rem;
  }
  
  .pack-stats-row {
    gap: 20px;
  }
  
  .pack-pick-card {
    padding-top: 24px;
  }
}

@media (max-width: 600px) {
  .pack-picks-section {
    padding: 0 10px;
    margin: 16px auto 12px auto;
  }
  
  .pack-picks-section .pack-logo {
    width: 32px !important;
    height: 32px !important;
    max-width: 32px !important;
    max-height: 32px !important;
  }
  
  .pack-title {
    font-size: 1.1rem;
  }
  
  .pack-stat-value {
    font-size: 1rem;
  }

  .pack-stat-label {
    font-size: 0.62rem;
    letter-spacing: 0.5px;
  }

  .pack-stats-row {
    gap: 12px;
  }

  .pack-subtitle {
    font-size: 0.82rem;
  }

  .pack-pick-card {
    padding: 20px 14px 16px;
    border-radius: 14px;
  }

  .pack-picks-grid {
    gap: 16px;
  }
}

@keyframes houndFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes houndScaleIn {
  from { opacity: 0; transform: scale(0.85); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes houndSlideUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes houndSlideInRight {
  from { opacity: 0; transform: translateX(60px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes houndSlideOutRight {
  from { opacity: 1; transform: translateX(0); }
  to { opacity: 0; transform: translateX(60px); }
}

@keyframes houndPulse {
  0%, 100% { box-shadow: 0 0 20px rgba(0,255,136,0.3); }
  50% { box-shadow: 0 0 40px rgba(0,255,136,0.6); }
}

@keyframes houndBadgeBounce {
  0% { transform: scale(0.3); opacity: 0; }
  50% { transform: scale(1.1); }
  70% { transform: scale(0.95); }
  100% { transform: scale(1); opacity: 1; }
}

.mode-toggle-wrapper {
  display: flex;
  justify-content: center;
  padding: 18px 16px 8px;
  perspective: 600px;
}

.mode-toggle-glass {
  position: relative;
  display: flex;
  gap: 4px;
  padding: 5px;
  border-radius: 16px;
  background: linear-gradient(135deg,
    rgba(30, 38, 75, 0.45) 0%,
    rgba(45, 55, 100, 0.35) 50%,
    rgba(30, 38, 75, 0.45) 100%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.25),
    0 2px 8px rgba(0, 0, 0, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.15),
    inset 0 -1px 0 rgba(0, 0, 0, 0.1);
  transform: rotateX(2deg);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mode-toggle-glass:hover {
  transform: rotateX(0deg);
  box-shadow:
    0 12px 40px rgba(0, 0, 0, 0.3),
    0 4px 12px rgba(0, 255, 136, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.2),
    inset 0 -1px 0 rgba(0, 0, 0, 0.1);
}

.mode-slider {
  position: absolute;
  top: 5px;
  left: 5px;
  width: calc(50% - 7px);
  height: calc(100% - 10px);
  border-radius: 12px;
  background: linear-gradient(135deg,
    rgba(0, 255, 136, 0.18) 0%,
    rgba(0, 255, 136, 0.1) 100%);
  border: 1px solid rgba(0, 255, 136, 0.3);
  box-shadow:
    0 0 24px rgba(0, 255, 136, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 0;
  pointer-events: none;
}

.mode-slider.track {
  transform: translateX(calc(100% + 4px));
}

.mode-toggle-btn {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  border: none;
  background: transparent;
  color: rgba(255, 255, 255, 0.45);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  border-radius: 12px;
  transition: color 0.3s ease;
  white-space: nowrap;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-family: inherit;
}

.mode-toggle-btn:hover {
  color: rgba(255, 255, 255, 0.7);
}

.mode-toggle-btn.active {
  color: #00ff88;
  text-shadow: 0 0 12px rgba(0, 255, 136, 0.4);
}

.mode-icon {
  display: inline-flex;
  align-items: center;
  line-height: 1;
}

.mode-icon svg,
.mode-icon img {
  display: block;
  object-fit: contain;
}

.mode-label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1.2;
}

.mode-subtitle {
  display: block;
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.3px;
  opacity: 0.5;
  margin-top: 1px;
  text-transform: none;
}

.mode-toggle-btn.active .mode-subtitle {
  opacity: 0.7;
}

@media (max-width: 480px) {
  .mode-toggle-wrapper {
    padding: 14px 12px 6px;
  }
  .mode-toggle-btn {
    padding: 9px 16px;
    gap: 6px;
  }
  .mode-label {
    font-size: 11px;
  }
  .mode-subtitle {
    font-size: 8px;
  }
  .mode-icon svg,
  .mode-icon img {
    width: 16px;
    height: 16px;
  }
}

/* ===== TRACK MODE DESIGN SYSTEM ===== */

#track-mode-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px 40px;
}

.track-fade-in {
  animation: trackFadeIn 0.4s ease-out;
}

@keyframes trackFadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

.track-dash-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 20px 4px 12px;
}

.track-dash-title {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.track-dash-subtitle {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}

.track-dash-main {
  font-size: 22px;
  font-weight: 300;
  color: rgba(255,255,255,0.9);
  letter-spacing: -0.3px;
}

.track-dash-main em {
  font-style: normal;
  font-weight: 600;
  color: #00ff88;
}

.track-dash-timestamp {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  text-align: right;
  font-variant-numeric: tabular-nums;
  line-height: 1.5;
}

.track-stats-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 14px;
  padding: 0 0 8px;
}

.track-stat-card {
  padding: 18px 20px;
}

.track-stat-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 10px;
}

.track-stat-big {
  font-size: 48px;
  font-weight: 800;
  color: #00ff88;
  line-height: 1;
  font-variant-numeric: tabular-nums;
  text-shadow: 0 0 30px rgba(0,255,136,0.3);
  letter-spacing: -1px;
}

.track-stat-accent {
  color: #00ff88;
}

.track-stat-sub {
  font-size: 11px;
  color: rgba(255,255,255,0.35);
  margin-top: 6px;
}

.track-stat-delta {
  margin-top: 8px;
}

.track-delta-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 6px;
}

.track-delta-up {
  background: rgba(0,255,136,0.1);
  color: #00ff88;
  border: 1px solid rgba(0,255,136,0.2);
}

.track-delta-down {
  background: rgba(248,113,113,0.1);
  color: #f87171;
  border: 1px solid rgba(248,113,113,0.2);
}

.track-sparkline {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 32px;
  margin-top: 12px;
}

.track-spark-bar {
  flex: 1;
  min-width: 8px;
  border-radius: 2px 2px 0 0;
  transition: opacity 0.2s;
}

.track-hie-layers {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 8px 0;
}

.track-hie-layer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 12px;
  border-radius: 8px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
}

.track-hie-layer-name {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.5px;
}

.track-hie-layer-status {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.8px;
  padding: 2px 8px;
  border-radius: 4px;
}

.track-hie-active {
  color: #00ff88;
  background: rgba(0,255,136,0.1);
  border: 1px solid rgba(0,255,136,0.2);
}

.track-hie-flags {
  color: #fbbf24;
  background: rgba(251,191,36,0.1);
  border: 1px solid rgba(251,191,36,0.2);
}

.track-hie-clear {
  color: rgba(255,255,255,0.45);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
}

/* Sharp Signals Panel */
.track-sharp-count {
  font-size: 11px;
  font-weight: 700;
  color: #fbbf24;
  letter-spacing: 0.5px;
}

.track-sharp-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 30px 20px;
  color: rgba(255,255,255,0.4);
}

.track-sharp-empty p {
  margin: 0;
  font-size: 13px;
}

.track-sharp-list {
  padding: 8px 12px 12px;
}

.track-sharp-item {
  padding: 10px 12px;
  border-radius: 10px;
  margin-bottom: 8px;
  border: 1px solid rgba(255,255,255,0.06);
  background: rgba(255,255,255,0.03);
  transition: background 0.2s;
}

.track-sharp-item:last-child {
  margin-bottom: 0;
}

.track-sharp-item:hover {
  background: rgba(255,255,255,0.06);
}

.track-sharp-strong {
  border-color: rgba(248,113,113,0.3);
  background: rgba(248,113,113,0.05);
}

.track-sharp-moderate {
  border-color: rgba(251,191,36,0.25);
  background: rgba(251,191,36,0.04);
}

.track-sharp-light {
  border-color: rgba(255,255,255,0.1);
}

.track-sharp-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 4px;
}

.track-sharp-sport {
  font-size: 10px;
  font-weight: 700;
  color: rgba(255,255,255,0.4);
  letter-spacing: 1px;
}

.track-sharp-strength-badge {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 2px 7px;
  border-radius: 4px;
}

.track-sharp-str-strong {
  color: #f87171;
  background: rgba(248,113,113,0.15);
}

.track-sharp-str-moderate {
  color: #fbbf24;
  background: rgba(251,191,36,0.12);
}

.track-sharp-str-light {
  color: rgba(255,255,255,0.5);
  background: rgba(255,255,255,0.06);
}

.track-sharp-matchup {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  margin-bottom: 6px;
}

.track-sharp-detail {
  display: flex;
  align-items: center;
  gap: 6px;
}

.track-sharp-arrow {
  font-size: 14px;
  font-weight: 700;
  color: #00ff88;
}

.track-sharp-team {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  flex: 1;
}

.track-sharp-pct {
  font-size: 13px;
  font-weight: 800;
  color: #00ff88;
  font-variant-numeric: tabular-nums;
}

/* Track Mode Premium Gate */
.track-blurred .track-stats-row,
.track-blurred .track-stats-row-secondary,
.track-blurred .track-sport-filters,
.track-blurred .track-grid,
.track-blurred .track-grid-bottom {
  filter: blur(8px);
  pointer-events: none;
  user-select: none;
  -webkit-user-select: none;
}

.track-blurred .track-dash-header {
  filter: none;
}

.track-premium-gate {
  position: relative;
  z-index: 10;
  display: flex;
  justify-content: center;
  padding: 20px 20px 0;
  margin-bottom: -40px;
}

.track-gate-card {
  background: linear-gradient(135deg, rgba(30,38,75,0.85) 0%, rgba(20,28,60,0.9) 100%);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(0,255,136,0.2);
  border-radius: 20px;
  padding: 40px 36px;
  text-align: center;
  max-width: 440px;
  width: 100%;
  box-shadow: 0 16px 60px rgba(0,0,0,0.5), 0 0 40px rgba(0,255,136,0.08);
}

.track-gate-icon {
  font-size: 36px;
  margin-bottom: 12px;
}

.track-gate-title {
  font-size: 22px;
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 10px;
  letter-spacing: -0.3px;
}

.track-gate-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  line-height: 1.5;
  margin: 0 0 24px;
}

.track-gate-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 28px;
}

.track-gate-feature {
  display: flex;
  align-items: center;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  padding: 8px 10px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  text-align: left;
}

.track-gate-btn {
  display: block;
  width: 100%;
  padding: 14px 24px;
  background: linear-gradient(135deg, #00ff88 0%, #00cc6a 100%);
  color: #0a0e27;
  font-size: 15px;
  font-weight: 800;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  letter-spacing: 0.3px;
  transition: transform 0.15s, box-shadow 0.15s;
  box-shadow: 0 4px 20px rgba(0,255,136,0.25);
}

.track-gate-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 28px rgba(0,255,136,0.35);
}

.track-gate-btn:active {
  transform: translateY(0);
}

.track-gate-sub {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  margin: 12px 0 0;
}

@media (max-width: 600px) {
  .track-gate-card {
    padding: 30px 24px;
  }

  .track-gate-features {
    grid-template-columns: 1fr;
  }

  .track-gate-title {
    font-size: 20px;
  }
}

.track-roi-list {
  display: flex;
  flex-direction: column;
}

.track-roi-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

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

.track-roi-sport {
  font-size: 13px;
  font-weight: 700;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.5px;
  min-width: 65px;
}

.track-roi-record {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  font-variant-numeric: tabular-nums;
  min-width: 50px;
  text-align: center;
}

.track-roi-pct {
  font-size: 13px;
  font-weight: 700;
  min-width: 50px;
  text-align: right;
  font-variant-numeric: tabular-nums;
}

.track-roi-pct-good { color: #00ff88; }
.track-roi-pct-ok { color: #fbbf24; }
.track-roi-pct-bad { color: #f87171; }

.track-roi-bar-wrap {
  flex: 1;
  max-width: 80px;
  height: 4px;
  background: rgba(255,255,255,0.06);
  border-radius: 2px;
  overflow: hidden;
  margin: 0 12px;
}

.track-roi-bar-fill {
  height: 100%;
  border-radius: 2px;
}

.track-edge-badge {
  font-size: 10px;
  font-weight: 600;
  padding: 2px 6px;
  border-radius: 4px;
  letter-spacing: 0.4px;
  white-space: nowrap;
}

.track-edge-pos { background: rgba(0,255,136,0.1); color: #00ff88; border: 1px solid rgba(0,255,136,0.15); }
.track-edge-neg { background: rgba(248,113,113,0.1); color: #f87171; border: 1px solid rgba(248,113,113,0.15); }
.track-edge-neutral { background: rgba(255,255,255,0.05); color: rgba(255,255,255,0.35); border: 1px solid rgba(255,255,255,0.08); }

@media (max-width: 900px) {
  .track-stats-row {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .track-dash-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .track-dash-timestamp {
    text-align: left;
  }
}

@media (max-width: 600px) {
  .track-dash-main {
    font-size: 18px;
  }

  .track-stat-big {
    font-size: 28px;
  }

  .track-stats-row {
    gap: 10px;
  }
}

.track-sport-filters {
  display: flex;
  gap: 8px;
  justify-content: center;
  padding: 16px 0 20px;
  flex-wrap: wrap;
}

.track-filter-btn {
  padding: 8px 20px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(30,38,75,0.3);
  color: rgba(255,255,255,0.5);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  font-family: inherit;
}

.track-filter-btn:hover {
  border-color: rgba(0,255,136,0.3);
  color: rgba(255,255,255,0.8);
}

.track-filter-btn.active {
  background: rgba(0,255,136,0.12);
  border-color: rgba(0,255,136,0.4);
  color: #00ff88;
  box-shadow: 0 0 16px rgba(0,255,136,0.1);
}

.track-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 20px;
  align-items: start;
}

.track-glass-card {
  background: linear-gradient(135deg, rgba(30,38,75,0.45) 0%, rgba(45,55,100,0.35) 50%, rgba(30,38,75,0.45) 100%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.25), inset 0 1px 0 rgba(255,255,255,0.1);
  overflow: hidden;
}

.track-glass-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.track-glass-header h3 {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  flex: 1;
}

.track-header-icon {
  display: inline-flex;
  align-items: center;
  color: #00ff88;
}

.track-header-icon svg {
  display: block;
}

.track-header-date {
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  font-weight: 500;
  letter-spacing: 0.5px;
}

.track-picks-loading,
.track-perf-loading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 40px 20px;
  color: rgba(255,255,255,0.45);
  font-size: 14px;
}

.track-spinner {
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255,255,255,0.1);
  border-top-color: #00ff88;
  border-radius: 50%;
  animation: trackSpin 0.8s linear infinite;
}

@keyframes trackSpin {
  to { transform: rotate(360deg); }
}

.track-picks-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 50px 20px;
  color: rgba(255,255,255,0.4);
}

.track-empty-icon {
  display: inline-flex;
  align-items: center;
  color: rgba(255,255,255,0.35);
  opacity: 0.7;
}

.track-picks-empty p {
  margin: 0;
  font-size: 14px;
}

.track-glass-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.track-glass-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.track-glass-table thead th {
  padding: 10px 16px;
  text-align: left;
  font-size: 10px;
  font-weight: 600;
  color: rgba(255,255,255,0.3);
  text-transform: uppercase;
  letter-spacing: 1.2px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  white-space: nowrap;
}

.track-glass-table tbody td {
  padding: 14px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  color: rgba(255,255,255,0.85);
  vertical-align: middle;
}

.track-pick-row {
  transition: background 0.2s ease;
}

.track-pick-row:hover {
  background: rgba(0,255,136,0.04);
}

.track-sport-badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.8px;
  border: 1px solid;
  white-space: nowrap;
}

.track-matchup {
  font-weight: 400;
  white-space: nowrap;
  color: rgba(255,255,255,0.7);
}

.track-pick-value {
  font-weight: 700;
  color: #00ff88;
}

.track-confidence-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 120px;
}

.track-confidence-bar {
  flex: 1;
  height: 6px;
  background: rgba(255,255,255,0.08);
  border-radius: 3px;
  overflow: hidden;
}

.track-confidence-fill {
  height: 100%;
  border-radius: 3px;
  transition: width 0.6s ease-out;
}

.track-conf-high {
  background: linear-gradient(90deg, #00ff88, #00cc6a);
  box-shadow: 0 0 8px rgba(0,255,136,0.3);
}

.track-conf-med {
  background: linear-gradient(90deg, #fbbf24, #f59e0b);
  box-shadow: 0 0 8px rgba(251,191,36,0.3);
}

.track-conf-low {
  background: linear-gradient(90deg, #f87171, #ef4444);
  box-shadow: 0 0 8px rgba(248,113,113,0.3);
}

.track-confidence-num {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  min-width: 40px;
  text-align: right;
  font-variant-numeric: tabular-nums;
}

.track-time {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}

.track-time-live {
  color: #ef4444;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 1px;
  animation: trackPulse 1.5s ease-in-out infinite;
}

@keyframes trackPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.track-picks-count {
  padding: 10px 20px;
  text-align: center;
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  border-top: 1px solid rgba(255,255,255,0.06);
  letter-spacing: 0.5px;
}

/* Performance Panel */
.track-perf-content {
  padding: 24px 20px;
}

.track-perf-record {
  text-align: center;
  margin-bottom: 16px;
}

.track-perf-big-number {
  font-size: 48px;
  font-weight: 800;
  color: #00ff88;
  line-height: 1;
  text-shadow: 0 0 30px rgba(0,255,136,0.35);
  font-variant-numeric: tabular-nums;
  letter-spacing: -1px;
}

.track-perf-label {
  font-size: 10px;
  color: rgba(255,255,255,0.35);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-top: 6px;
}

.track-perf-wl {
  display: flex;
  justify-content: center;
  gap: 12px;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
  font-variant-numeric: tabular-nums;
}

.track-perf-wins {
  color: #00ff88;
}

.track-perf-losses {
  color: #f87171;
}

.track-perf-divider {
  color: rgba(255,255,255,0.2);
}

.track-perf-sports {
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 16px;
}

.track-perf-sport-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 12px;
  border-radius: 8px;
  background: rgba(255,255,255,0.03);
}

.track-perf-sport-name {
  font-size: 13px;
  font-weight: 700;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.5px;
}

.track-perf-sport-count {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
}

/* Track Mode Right Column Stack */
.track-right-stack {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-self: start;
}

/* Track Mode Bottom Grid Spacing */
.track-grid-bottom {
  margin-top: 20px;
}

.track-grid-bottom-cols {
  grid-template-columns: 1fr 300px;
}

/* Track Mode PGA Section */
.track-pga-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  color: rgba(255,255,255,0.4);
}

.track-pga-empty .track-empty-icon {
  margin-bottom: 8px;
}

.track-pga-empty p {
  font-size: 14px;
  margin-bottom: 4px;
}

.track-pga-next-sub {
  font-size: 12px;
  color: rgba(255,255,255,0.25);
}

.track-pga-round-label {
  padding: 10px 20px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #00ff88;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.track-pga-model-info {
  padding: 10px 20px;
  font-size: 11px;
  color: rgba(255,255,255,0.3);
  border-top: 1px solid rgba(255,255,255,0.06);
  text-align: center;
  letter-spacing: 0.3px;
}

.track-pga-win-cell {
  font-weight: 700;
  color: #00ff88;
  font-variant-numeric: tabular-nums;
}

.track-pga-prob-cell {
  font-variant-numeric: tabular-nums;
  color: rgba(255,255,255,0.7);
}

.track-pga-finish-badge {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 700;
  background: rgba(59,130,246,0.12);
  color: #60a5fa;
  border: 1px solid rgba(59,130,246,0.2);
}

/* Track Mode Secondary Stats Row */
.track-stats-row-secondary {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  padding: 0 0 10px;
}

.track-stat-card-sm {
  padding: 16px 14px !important;
}

.track-stat-card-sm .track-stat-label {
  font-size: 10px;
  margin-bottom: 6px;
}

.track-stat-card-sm .track-stat-big {
  font-size: 26px;
}

.track-stat-card-sm .track-stat-sub {
  font-size: 11px;
}

/* Track Mode Pick Type Breakdown */
.track-type-list {
  padding: 8px 0;
}

.track-type-row {
  display: grid;
  grid-template-columns: 1fr 55px 44px 36px;
  align-items: center;
  gap: 6px;
  padding: 9px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

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

.track-type-name {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.track-type-record {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  font-variant-numeric: tabular-nums;
  text-align: right;
  white-space: nowrap;
}

.track-type-bar-wrap {
  height: 4px;
  background: rgba(255,255,255,0.06);
  border-radius: 2px;
  overflow: hidden;
}

.track-type-bar-fill {
  height: 100%;
  border-radius: 2px;
  transition: width 0.5s ease;
}

.track-type-pct {
  font-size: 12px;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  text-align: right;
  white-space: nowrap;
}

/* Track Mode Spread Table */
.track-spread-badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 700;
  background: rgba(59,130,246,0.12);
  color: #60a5fa;
  border: 1px solid rgba(59,130,246,0.2);
  font-variant-numeric: tabular-nums;
}

.track-call-badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.track-call-cover {
  background: rgba(0,255,136,0.1);
  color: #00ff88;
  border: 1px solid rgba(0,255,136,0.15);
}

.track-call-fade {
  background: rgba(251,191,36,0.1);
  color: #fbbf24;
  border: 1px solid rgba(251,191,36,0.15);
}

.track-spread-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  color: rgba(255,255,255,0.4);
}

.track-spread-empty .track-empty-icon {
  margin-bottom: 8px;
}

.track-spread-empty p {
  font-size: 13px;
}

/* Track Mode Odds Columns */
.track-odds-wrap {
  text-align: center;
  white-space: nowrap;
}

.track-odds-cell {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  font-variant-numeric: tabular-nums;
}

.track-ml-mini {
  display: block;
  font-size: 10px;
  color: rgba(255,255,255,0.35);
  margin-top: 2px;
  font-variant-numeric: tabular-nums;
}

/* Track Mode Responsive */
@media (max-width: 900px) {
  .track-grid {
    grid-template-columns: 1fr;
  }

  .track-performance-panel {
    order: -1;
  }
}

@media (max-width: 600px) {
  #track-mode-content {
    padding: 0 8px 30px;
  }

  .track-sport-filters {
    gap: 6px;
    padding: 12px 0 16px;
  }

  .track-filter-btn {
    padding: 6px 14px;
    font-size: 11px;
  }

  .track-glass-header {
    padding: 12px 14px;
  }

  .track-glass-header h3 {
    font-size: 14px;
  }

  .track-glass-table-wrap {
    overflow-x: auto;
  }

  .track-glass-table {
    font-size: 12px;
  }

  .track-glass-table thead th {
    padding: 6px 8px;
    font-size: 9px;
    letter-spacing: 0.5px;
  }

  .track-glass-table tbody td {
    padding: 8px;
    font-size: 12px;
  }

  .track-matchup {
    max-width: 110px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .track-confidence-wrap {
    min-width: 60px;
  }

  .track-confidence-bar {
    display: none;
  }

  .track-sport-badge {
    padding: 2px 6px;
    font-size: 9px;
  }

  .track-stat-big {
    font-size: 36px;
  }

  .track-perf-big-number {
    font-size: 36px;
  }

  .track-stat-card-sm .track-stat-big {
    font-size: 22px;
  }

  .track-stats-row-secondary {
    grid-template-columns: 1fr 1fr;
  }

  .track-picks-panel .track-glass-table th:nth-child(1),
  .track-picks-panel .track-glass-table td:nth-child(1) {
    display: none;
  }

  .track-picks-panel .track-glass-table th:nth-child(5),
  .track-picks-panel .track-glass-table td:nth-child(5) {
    display: none;
  }

  .track-picks-panel .track-glass-table th:nth-child(6),
  .track-picks-panel .track-glass-table td:nth-child(6),
  .track-picks-panel .track-glass-table th:nth-child(7),
  .track-picks-panel .track-glass-table td:nth-child(7) {
    display: none;
  }

  .track-picks-panel .track-glass-table th:nth-child(8),
  .track-picks-panel .track-glass-table td:nth-child(8) {
    display: none;
  }

  .track-odds-wrap {
    display: none;
  }

  .track-roi-row {
    padding: 8px 12px;
  }

  .track-roi-sport {
    font-size: 12px;
    min-width: 50px;
  }

  .track-roi-record {
    font-size: 11px;
    min-width: 40px;
  }

  .track-roi-bar-wrap {
    max-width: 50px;
  }

  .track-roi-pct {
    font-size: 12px;
    min-width: 40px;
  }

  .track-type-row {
    grid-template-columns: 1fr 50px 36px 34px;
    padding: 8px 12px;
    gap: 4px;
  }

  .track-type-name {
    font-size: 12px;
  }

  .track-type-record {
    font-size: 11px;
  }

  .track-type-pct {
    font-size: 11px;
  }

  .track-spread-badge {
    font-size: 10px;
    padding: 2px 6px;
  }

  .track-pga-win-cell,
  .track-pga-prob-cell {
    font-size: 11px;
  }

  .track-pga-finish-badge {
    font-size: 10px;
    padding: 2px 6px;
  }

  .track-grid-bottom-cols {
    grid-template-columns: 1fr;
  }
}

.welcome-banner {
  position: relative;
  flex: 1;
  min-width: 0;
  max-width: 340px;
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  background: linear-gradient(170deg, #111827 0%, #0a0f1e 100%);
  border: 1.5px solid rgba(255, 255, 255, 0.07);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: flex;
  flex-direction: column;
  z-index: 1;
}

.welcome-banner::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  border-radius: 18px 18px 0 0;
  background: linear-gradient(90deg, #14b8a6, #22c55e);
}

.welcome-banner-close {
  position: absolute;
  top: 6px;
  right: 6px;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  font-size: 13px;
  cursor: pointer;
  padding: 0;
  line-height: 1;
  border-radius: 50%;
  transition: background 0.2s;
  z-index: 10;
}

.welcome-banner-close:hover {
  background: rgba(0, 0, 0, 0.8);
}

.welcome-banner-headline {
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  margin: 0;
  padding: 12px 14px 6px;
  text-transform: uppercase;
  color: #e2e8f0;
  line-height: 1.2;
  text-align: center;
}

.welcome-banner-avatar {
  position: relative;
  width: 160px;
  height: 160px;
  margin: 4px auto;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid rgba(20, 184, 166, 0.3);
  box-shadow: 0 0 20px rgba(20, 184, 166, 0.15);
}

.welcome-banner-avatar img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center center;
}

.welcome-banner-actions {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 8px 10px;
}

.welcome-action-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 0.72rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.15s ease;
  border: 1px solid transparent;
  text-align: center;
  width: 100%;
  box-sizing: border-box;
}

.welcome-action-btn:hover {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.welcome-action-icon-img {
  width: 18px;
  height: 18px;
  object-fit: contain;
  flex-shrink: 0;
  border-radius: 3px;
}

.welcome-action-contest {
  background: rgba(20, 184, 166, 0.12);
  color: #5eead4;
  border-color: rgba(20, 184, 166, 0.2);
}

.welcome-action-contest:hover {
  background: rgba(20, 184, 166, 0.22);
}

.welcome-action-coins {
  background: rgba(234, 179, 8, 0.10);
  color: #fbbf24;
  border-color: rgba(234, 179, 8, 0.18);
}

.welcome-action-coins:hover {
  background: rgba(234, 179, 8, 0.20);
}

.welcome-action-sports {
  background: rgba(99, 102, 241, 0.10);
  color: #a5b4fc;
  border-color: rgba(99, 102, 241, 0.18);
}

.welcome-action-sports:hover {
  background: rgba(99, 102, 241, 0.20);
}

.welcome-banner-dismiss {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  font-size: 0.6rem;
  color: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  user-select: none;
  transition: color 0.2s;
  padding: 2px 0 8px;
}

.welcome-banner-dismiss:hover {
  color: rgba(255, 255, 255, 0.4);
}

.welcome-banner-dismiss input[type="checkbox"] {
  width: 11px;
  height: 11px;
  accent-color: #22c55e;
  cursor: pointer;
  margin: 0;
}

@media (max-width: 600px) {
  .welcome-banner {
    margin: 0;
    max-width: none;
  }

  .welcome-banner-headline {
    font-size: 0.88rem;
    padding: 12px 14px 8px;
  }
}
