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

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

    .controls-container {
      display: flex;
      justify-content: center;
      gap: 20px;
      margin: 20px auto 30px auto;
      max-width: 1200px;
      flex-wrap: wrap;
    }

    .selector-group {
      display: flex;
      align-items: center;
      gap: 10px;
      background: rgba(255, 255, 255, 0.1);
      padding: 15px 20px;
      border-radius: 15px;
      backdrop-filter: blur(10px);
      border: 1px solid rgba(255, 255, 255, 0.2);
    }

    .selector-group label {
      font-weight: bold;
      font-size: 1.1rem;
      color: #00ff00;
      white-space: nowrap;
    }

    select {
      font-size: 1rem;
      padding: 8px 15px;
      border-radius: 10px;
      border: 1px solid rgba(255, 255, 255, 0.3);
      background: rgba(0, 0, 0, 0.5);
      color: white;
      cursor: pointer;
      min-width: 150px;
      backdrop-filter: blur(5px);
    }

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

    #loading {
      text-align: center;
      padding: 40px;
      font-size: 1.2rem;
      color: #00ff00;
    }

    .spinner {
      border: 4px solid rgba(0, 255, 0, 0.1);
      border-left: 4px solid #00ff00;
      border-radius: 50%;
      width: 40px;
      height: 40px;
      animation: spin 1s linear infinite;
      margin: 0 auto 20px auto;
    }

    @keyframes spin {
      0% { transform: rotate(0deg); }
      100% { transform: rotate(360deg); }
    }

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

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

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

    .quarter-info {
      font-size: 1rem;
      color: #ff0000;
      font-weight: bold;
      margin: 5px 0;
      text-align: center;
    }

    /* Betting Odds Section Styles - Add to your existing CSS */

    .betting-odds-section {
      background: rgba(0, 255, 0, 0.05);
      border: 1px solid rgba(0, 255, 0, 0.2);
      border-radius: 12px;
      padding: 15px;
      margin: 20px 0;
      backdrop-filter: blur(5px);
    }

    .betting-provider {
      font-size: 0.9rem;
      color: #00cc88;
      font-weight: bold;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }

    .betting-content {
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .betting-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
    }

    .betting-item {
      background: rgba(0, 0, 0, 0.3);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 8px;
      padding: 10px;
      text-align: center;
      transition: all 0.3s ease;
    }

    .betting-item:hover {
      background: rgba(0, 255, 0, 0.1);
      border-color: rgba(0, 255, 0, 0.3);
      transform: translateY(-1px);
    }

    .betting-label {
      font-size: 0.8rem;
      color: #ccc;
      margin-bottom: 4px;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }

    .betting-value {
      font-size: 1rem;
      color: #00ff00;
      font-weight: bold;
    }

    /* Mobile responsive for betting odds */
    @media (max-width: 768px) {
      .betting-odds-section {
        padding: 12px;
        margin: 15px 0;
      }

      .betting-provider {
        font-size: 0.8rem;
      }

      .betting-row {
        grid-template-columns: 1fr;
        gap: 8px;
      }

      .betting-item {
        padding: 8px;
      }

      .betting-label {
        font-size: 0.75rem;
      }

      .betting-value {
        font-size: 0.9rem;
      }
    }

    @media (max-width: 480px) {
      .betting-odds-section {
        padding: 10px;
      }

      .betting-row {
        gap: 6px;
      }

      .betting-item {
        padding: 6px;
      }

      .betting-label {
        font-size: 0.7rem;
      }

      .betting-value {
        font-size: 0.85rem;
      }
    }

    /* Betting Toggle Styles */
    .betting-section {
      width: 100%;
      margin: 15px 0;
    }

    .betting-toggle-btn {
      background: rgba(0, 255, 0, 0.1);
      border: 1px solid rgba(0, 255, 0, 0.3);
      color: #00ff00;
      padding: 8px 15px;
      border-radius: 8px;
      cursor: pointer;
      font-size: 0.9rem;
      font-weight: 600;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      transition: all 0.3s ease;
      width: 100%;
    }

    .betting-toggle-btn:hover {
      background: rgba(0, 255, 0, 0.2);
      transform: translateY(-1px);
    }

    .betting-arrow {
      font-size: 0.8rem;
      transition: transform 0.3s ease;
    }

    .betting-content {
      margin-top: 10px;
      animation: slideDown 0.3s ease;
    }

    /* Update existing betting-odds-section to remove margin since it's now nested */
    .betting-odds-section {
      background: rgba(0, 255, 0, 0.05);
      border: 1px solid rgba(0, 255, 0, 0.2);
      border-radius: 12px;
      padding: 15px;
      margin: 0; /* Changed from 20px 0 to 0 */
      backdrop-filter: blur(5px);
    }

    /* Mobile responsive for betting toggle - add this to your existing mobile CSS */
    @media (max-width: 768px) {
      .betting-toggle-btn {
        font-size: 0.8rem;
        padding: 6px 12px;
      }

      .betting-section {
        margin: 12px 0;
      }

      .betting-odds-section {
        padding: 12px;
      }

      .betting-row {
        grid-template-columns: 1fr;
        gap: 8px;
      }

      .betting-item {
        padding: 8px;
      }

      .betting-label {
        font-size: 0.75rem;
      }

      .betting-value {
        font-size: 0.9rem;
      }
    }

    @media (max-width: 480px) {
      .betting-toggle-btn {
        font-size: 0.75rem;
        padding: 5px 10px;
      }

      .betting-odds-section {
        padding: 10px;
      }

      .betting-item {
        padding: 6px;
      }

      .betting-label {
        font-size: 0.7rem;
      }

      .betting-value {
        font-size: 0.85rem;
      }
    }

    /* Stats section styling */
    .stats-section {
      width: 100%;
      margin: 15px 0;
    }

    .stats-toggle-btn {
      background: rgba(0, 255, 0, 0.1);
      border: 1px solid rgba(0, 255, 0, 0.3);
      color: #00ff00;
      padding: 8px 15px;
      border-radius: 8px;
      cursor: pointer;
      font-size: 0.9rem;
      font-weight: 600;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      transition: all 0.3s ease;
      width: 100%;
    }

    .stats-toggle-btn:hover {
      background: rgba(0, 255, 0, 0.2);
      transform: translateY(-1px);
    }

    .stats-arrow {
      font-size: 0.8rem;
      transition: transform 0.3s ease;
    }

    .stats-content {
      background: rgba(0, 0, 0, 0.3);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 8px;
      padding: 15px;
      margin-top: 10px;
      animation: slideDown 0.3s ease;
    }

    @keyframes slideDown {
      from {
        opacity: 0;
        max-height: 0;
        padding: 0 15px;
      }
      to {
        opacity: 1;
        max-height: 500px;
        padding: 15px;
      }
    }

    .loading-stats {
      text-align: center;
      color: #00cc88;
      font-style: italic;
      padding: 10px;
    }

    .stats-error {
      text-align: center;
      color: #ff6666;
      font-style: italic;
      padding: 10px;
    }

    .stats-grid {
      display: flex;
      flex-direction: column;
      gap: 15px;
    }

    /* Team records section */
    .team-records h4 {
      color: #00ff00;
      margin-bottom: 10px;
      font-size: 1rem;
      text-align: center;
    }

    .records {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 10px;
      margin-bottom: 15px;
    }

    .record {
      background: rgba(255, 255, 255, 0.05);
      padding: 8px;
      border-radius: 6px;
      text-align: center;
    }

    .record strong {
      display: block;
      color: #fff;
      margin-bottom: 3px;
      font-size: 0.85rem;
    }

    .record span {
      color: #ff9900;
      font-size: 0.8rem;
      font-weight: 500;
    }

    /* Team stats section */
    .team-stats-section h4 {
      color: #00ff00;
      margin-bottom: 10px;
      font-size: 1rem;
      text-align: center;
    }

    .team-stats-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 10px;
      margin-bottom: 15px;
    }

    .stat-item {
      background: rgba(255, 255, 255, 0.05);
      padding: 8px;
      border-radius: 6px;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .stat-label {
      color: #ccc;
      font-size: 0.85rem;
    }

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

    /* Old slider CSS removed - now using yards-input-box with arrow buttons */

    /* Player leaders section */
    .leaders-section h4 {
      color: #00ff00;
      margin-bottom: 10px;
      font-size: 1rem;
      text-align: center;
    }

    .leaders-grid {
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .leader-item {
      background: rgba(255, 255, 255, 0.05);
      padding: 10px;
      border-radius: 6px;
      border-left: 3px solid #00ff00;
    }

    .leader-title {
      color: #00cc88;
      font-size: 0.85rem;
      font-weight: bold;
      margin-bottom: 5px;
    }

    .leader-name {
      color: #fff;
      font-weight: bold;
      margin-bottom: 3px;
    }

    .leader-stats {
      color: #ff9900;
      font-size: 0.85rem;
    }

   #nfl-game-containers {
      display: grid;
      gap: 20px;
      max-width: 1200px;
      margin: auto;
      grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
      padding: 20px;
    }

    .game-item {
      background: rgba(255, 255, 255, 0.05);
      backdrop-filter: blur(15px);
      border: 1px solid rgba(255, 255, 255, 0.1);
      padding: 25px;
      border-radius: 20px;
      transition: all 0.3s ease;
      position: relative;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: space-between;
      max-width: none;
      width: 100%;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    }

    .game-item::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;
    }

    .game-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 15px 35px rgba(0, 255, 0, 0.15);
      border-color: rgba(0, 255, 0, 0.3);
    }

    .game-item:hover::before {
      opacity: 1;
    }

    .game-status {
      background: rgba(0, 255, 0, 0.2);
      color: #00ff00;
      padding: 5px 12px;
      border-radius: 20px;
      font-size: 0.9rem;
      font-weight: bold;
    }

    .teams-container {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 20px;
    }

    .team {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 10px;
      flex: 1;
    }

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

    .team-name {
      font-weight: bold;
      font-size: 1.1rem;
      text-align: center;
    }

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

    .vs-divider {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 10px;
      margin: 0 20px;
    }

    .vs-text {
      font-size: 1.2rem;
      font-weight: bold;
      opacity: 0.7;
    }

    .game-info {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 15px;
      margin-bottom: 20px;
      padding-top: 15px;
      border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .info-item {
      display: flex;
      flex-direction: column;
      gap: 5px;
    }

    .info-label {
      font-size: 0.9rem;
      color: #999;
    }

    .info-value {
      font-size: 1rem;
      color: white;
    }

    .create-bet-btn {
      width: 100%;
      background: linear-gradient(45deg, #00ff00, #00cc88);
      border: none;
      padding: 12px 20px;
      border-radius: 12px;
      font-weight: bold;
      font-size: 1rem;
      cursor: pointer;
      transition: all 0.3s ease;
      color: #000;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }

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

    .back-button {
      text-align: center;
      margin-top: 50px;
    }

    .back-button a {
      color: #00ff00;
      font-size: 1.2rem;
      text-decoration: none;
      padding: 15px 30px;
      border: 2px solid #00ff00;
      border-radius: 25px;
      transition: all 0.3s ease;
      display: inline-block;
    }

    .back-button a:hover {
      background: rgba(0, 255, 0, 0.1);
      transform: translateY(-2px);
      box-shadow: 0 5px 15px rgba(0, 255, 0, 0.3);
    }

    .error-message {
      text-align: center;
      padding: 40px;
      color: #ff4444;
      font-size: 1.1rem;
    }

      /* NFL Betting Modal Styles - Modern Redesign */
      .modal-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, rgba(10, 14, 39, 0.95) 0%, rgba(26, 30, 58, 0.95) 100%);
        backdrop-filter: blur(10px);
        z-index: 1000;
        display: flex;
        align-items: center;
        justify-content: center;
      }

      .modal-container {
        background: rgba(26, 30, 58, 0.95);
        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 32px rgba(0, 0, 0, 0.4);
        display: flex;
        flex-direction: column;
      }

      .modal-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 20px 24px;
        border-bottom: 1px solid rgba(0, 255, 136, 0.15);
        background: rgba(10, 14, 39, 0.5);
      }

      .modal-header h2 {
        color: #00ff88;
        margin: 0;
        text-align: center;
        flex: 1;
        font-size: 1.5rem;
        font-weight: bold;
        letter-spacing: 1px;
      }

      .modal-close {
        background: rgba(255, 255, 255, 0.1);
        border: none;
        color: #fff;
        font-size: 20px;
        width: 36px;
        height: 36px;
        border-radius: 50%;
        cursor: pointer;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        justify-content: center;
      }

      .modal-close:hover {
        background: rgba(0, 255, 136, 0.2);
        color: #00ff88;
      }

      .modal-content {
        padding: 24px;
        flex: 1;
        overflow-y: auto;
      }

      .context-info {
        background: rgba(0, 255, 136, 0.08);
        border: 1px solid rgba(0, 255, 136, 0.2);
        border-radius: 12px;
        padding: 16px;
        margin-bottom: 24px;
        color: #fff;
        text-align: center;
        font-size: 1.1rem;
      }

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

      .form-row {
        display: flex;
        flex-direction: column;
        gap: 16px;
      }

      .form-row.game-selection {
        border-bottom: none;
        padding-bottom: 0;
      }

      /* Hide original dropdowns when using visual components */
      .form-group.hidden-select {
        display: none !important;
      }

      .form-group {
        display: flex;
        flex-direction: column;
        gap: 10px;
      }

      .form-group label {
        font-weight: 600;
        color: #00ff88;
        font-size: 0.9rem;
        text-transform: uppercase;
        letter-spacing: 0.5px;
      }

      /* Bet Type Cards */
      .bet-type-cards {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 12px;
      }

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

      .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 .icon {
        font-size: 1.8rem;
      }

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

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

      .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: 200px;
        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-logo {
        width: 60px;
        height: 60px;
        object-fit: contain;
      }

      .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;
      }

      .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;
      }

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

      .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;
      }

      .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;
      }

      /* Prop Type Pills */
      .prop-pills-container {
        display: flex;
        gap: 10px;
        flex-wrap: wrap;
        justify-content: center;
      }

      .prop-pill {
        background: rgba(255, 255, 255, 0.05);
        border: 2px solid rgba(255, 255, 255, 0.15);
        border-radius: 25px;
        padding: 12px 20px;
        cursor: pointer;
        transition: all 0.3s ease;
        font-size: 0.95rem;
        font-weight: 500;
        color: #fff;
      }

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

      .prop-pill.selected {
        background: rgba(0, 255, 136, 0.2);
        border-color: #00ff88;
        color: #00ff88;
      }

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

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

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

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

      .custom-amount-input {
        background: rgba(0, 0, 0, 0.3);
        border: 2px solid rgba(255, 255, 255, 0.15);
        border-radius: 10px;
        padding: 12px 16px;
        color: white;
        font-size: 1rem;
        width: 100%;
        max-width: 200px;
        text-align: center;
        transition: all 0.3s ease;
      }

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

      /* Yards Input Box with Arrow Buttons */
      .yards-input-container {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 16px;
        padding: 20px;
        background: rgba(0, 255, 136, 0.05);
        border-radius: 12px;
        border: 1px solid rgba(0, 255, 136, 0.2);
      }

      .yards-arrow-btn {
        width: 52px;
        height: 52px;
        border: 2px solid rgba(0, 255, 136, 0.3);
        background: rgba(0, 255, 136, 0.1);
        border-radius: 12px;
        color: #00ff88;
        font-size: 1.6rem;
        font-weight: bold;
        cursor: pointer;
        transition: all 0.2s ease;
        display: flex;
        align-items: center;
        justify-content: center;
        user-select: none;
      }

      .yards-arrow-btn:hover {
        background: rgba(0, 255, 136, 0.2);
        border-color: #00ff88;
        transform: scale(1.05);
      }

      .yards-arrow-btn:active {
        transform: scale(0.95);
        background: rgba(0, 255, 136, 0.3);
      }

      .yards-input-box {
        width: 120px;
        height: 60px;
        background: rgba(10, 14, 39, 0.8);
        border: 2px solid rgba(0, 255, 136, 0.4);
        border-radius: 12px;
        color: #00ff88;
        font-size: 2rem;
        font-weight: 700;
        text-align: center;
        outline: none;
        -moz-appearance: textfield;
      }

      .yards-input-box::-webkit-outer-spin-button,
      .yards-input-box::-webkit-inner-spin-button {
        -webkit-appearance: none;
        margin: 0;
      }

      .yards-input-box:focus {
        border-color: #00ff88;
        box-shadow: 0 0 15px rgba(0, 255, 136, 0.3);
      }

      .yards-label {
        font-size: 0.85rem;
        color: rgba(255, 255, 255, 0.5);
        text-align: center;
        margin-top: 8px;
      }

      /* Floating Bet Summary Footer */
      .bet-summary-footer {
        background: rgba(10, 14, 39, 0.95);
        border-top: 1px solid rgba(0, 255, 136, 0.2);
        padding: 16px 24px;
        display: flex;
        flex-direction: column;
        gap: 12px;
      }

      .bet-summary-text {
        text-align: center;
        font-size: 1rem;
        color: rgba(255, 255, 255, 0.8);
      }

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

      .bet-summary-text .potential-win {
        color: #ffd700;
        font-weight: 600;
      }

      .place-bet-btn {
        background: linear-gradient(135deg, #00ff88 0%, #00cc88 100%);
        border: none;
        border-radius: 12px;
        padding: 16px 32px;
        font-size: 1.1rem;
        font-weight: bold;
        color: #0a0e27;
        cursor: pointer;
        transition: all 0.3s ease;
        text-transform: uppercase;
        letter-spacing: 1px;
      }

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

      .place-bet-btn:disabled {
        opacity: 0.5;
        cursor: not-allowed;
        transform: none;
        box-shadow: none;
      }

      /* Player Select Dropdown - Bold Gamble Hounds Style */
      .form-select {
        background: linear-gradient(135deg, #0d1230 0%, #1a1e3a 100%);
        border: 3px solid #00ff88;
        border-radius: 12px;
        padding: 16px 20px;
        color: #ffffff;
        font-size: 1.1rem;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
        width: 100%;
        box-shadow: 0 4px 15px rgba(0, 255, 136, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.1);
        appearance: none;
        -webkit-appearance: none;
        -moz-appearance: none;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%2300ff88' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
        background-repeat: no-repeat;
        background-position: right 16px center;
        background-size: 20px;
        padding-right: 50px;
      }

      .form-select:hover {
        border-color: #00ffaa;
        box-shadow: 0 6px 25px rgba(0, 255, 136, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.15);
        transform: translateY(-2px);
      }

      .form-select:focus {
        outline: none;
        border-color: #00ffcc;
        box-shadow: 0 0 20px rgba(0, 255, 136, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.1);
      }

      .form-select option {
        background: #0d1230;
        color: #ffffff;
        padding: 14px 16px;
        font-weight: 500;
        border-bottom: 1px solid rgba(0, 255, 136, 0.2);
      }

      .form-select option:checked {
        background: linear-gradient(135deg, #00ff88 0%, #00cc88 100%);
        color: #0a0e27;
        font-weight: 700;
      }

      .form-select optgroup {
        background: linear-gradient(135deg, #1a2456 0%, #0d1230 100%);
        color: #00ff88;
        font-weight: 700;
        font-size: 0.9rem;
        text-transform: uppercase;
        letter-spacing: 1px;
        padding: 12px 16px;
        border-top: 2px solid #00ff88;
        border-bottom: 1px solid rgba(0, 255, 136, 0.3);
      }

      /* Player Prop Form Group Labels */
      .form-group label {
        font-weight: 700;
        color: #00ff88;
        font-size: 1rem;
        text-transform: uppercase;
        letter-spacing: 1px;
        text-shadow: 0 0 10px rgba(0, 255, 136, 0.3);
        margin-bottom: 8px;
      }

      .form-input {
        background: rgba(0, 0, 0, 0.3);
        border: 2px solid rgba(255, 255, 255, 0.15);
        border-radius: 10px;
        padding: 14px 16px;
        color: white;
        font-size: 1rem;
        transition: all 0.3s ease;
        width: 100%;
      }

      .form-input:focus {
        outline: none;
        border-color: #00ff88;
        box-shadow: 0 0 15px rgba(0, 255, 136, 0.2);
      }

      .controls-container {
        flex-direction: column;
        align-items: center;
      }

      .teams-container {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 20px;
        flex-direction: row !important;
      }

      .vs-divider {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10px;
        margin: 0 20px;
        transform: none !important;
      }

    .create-bet-btn {
      width: 100%;
      background: linear-gradient(45deg, #00ff00, #00cc88);
      border: none;
      padding: 12px 20px;
      border-radius: 12px;
      font-weight: bold;
      font-size: 1rem;
      cursor: pointer;
      transition: all 0.3s ease;
      color: #000;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }

    /* Mobile Responsive Design */
    @media (max-width: 768px) {
      body {
        padding: 10px;
      }

      .controls-container {
        flex-direction: column;
        gap: 15px;
        margin: 0 10px 20px 10px;
      }

      .selector-group {
        padding: 12px 15px;
        width: 100%;
        justify-content: space-between;
      }

      .selector-group label {
        font-size: 1rem;
      }

      select {
        font-size: 0.9rem;
        padding: 6px 12px;
        min-width: 120px;
      }

      /* Game containers mobile optimization */
      #nfl-game-containers {
        grid-template-columns: 1fr;
        gap: 15px;
        margin: 0 auto;
        padding: 0 10px;
        max-width: 100%;
      }

      .game-item {
        padding: 20px 15px;
        border-radius: 15px;
        margin-bottom: 10px;
        min-height: auto;
      }

      .game-status {
        font-size: 0.8rem;
        padding: 4px 10px;
      }

      .teams-container {
        flex-direction: row;
        gap: 15px;
        margin-bottom: 15px;
        justify-content: space-between;
        align-items: center;
      }

      .team {
        flex-direction: column;
        gap: 10px;
        flex: 1;
        align-items: center;
      }

      .team-logo {
        width: 50px;
        height: 50px;
      }

      .team-name {
        font-size: 1rem;
        text-align: center;
      }

      .team-score {
        font-size: 1.5rem;
        text-align: center;
      }

      .vs-divider {
        transform: none;
        margin: 0 10px;
        flex-shrink: 0;
      }

      .vs-text {
        font-size: 1rem;
        opacity: 0.7;
      }

      .game-info {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        margin-bottom: 15px;
      }

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

      .info-value {
        font-size: 0.9rem;
      }

      .quarter-info {
        font-size: 0.9rem;
      }

      .stats-toggle-btn {
        font-size: 0.8rem;
        padding: 6px 12px;
      }

      .stats-content {
        padding: 12px;
      }

      .records {
        grid-template-columns: 1fr;
        gap: 8px;
      }

      .team-stats-grid {
        grid-template-columns: 1fr;
        gap: 8px;
      }

      .stat-item {
        padding: 6px;
        font-size: 0.8rem;
      }

      .leaders-grid {
        gap: 8px;
      }

      .leader-item {
        padding: 8px;
      }

      .leader-title {
        font-size: 0.8rem;
      }

      .leader-stats {
        font-size: 0.8rem;
      }

      .create-bet-btn {
        padding: 15px 20px;
        font-size: 1rem;
        margin-top: 15px;
      }

      .back-button {
        margin-top: 30px;
        padding: 0 10px;
      }

      .back-button a {
        font-size: 1rem;
        padding: 12px 25px;
        display: block;
        text-align: center;
      }

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

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

      .modal-content {
        padding: 15px;
      }

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

      .form-group {
        min-width: 100%;
      }

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

      .context-info {
        padding: 12px;
        margin-bottom: 15px;
      }

      /* New Modal Visual Components - Mobile */
      .bet-type-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
      }

      .bet-type-card {
        padding: 12px 8px;
      }

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

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

      .team-cards-container {
        flex-direction: row;
        gap: 8px;
        justify-content: center;
      }

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

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

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

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

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

      .ou-cards-container {
        flex-direction: row;
        gap: 10px;
      }

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

      .prop-pills-container {
        gap: 8px;
      }

      .prop-pill {
        padding: 10px 16px;
        font-size: 0.85rem;
      }

      .amount-buttons-container {
        gap: 8px;
      }

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

      .yards-input-container {
        gap: 12px;
        padding: 14px;
      }

      .yards-arrow-btn {
        width: 44px;
        height: 44px;
        font-size: 1.3rem;
      }

      .yards-input-box {
        width: 100px;
        height: 50px;
        font-size: 1.6rem;
      }

      .bet-summary-footer {
        padding: 14px 16px;
      }

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

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

      #loading {
        padding: 30px;
        font-size: 1rem;
      }

      .spinner {
        width: 30px;
        height: 30px;
      }

      .error-message {
        padding: 30px 15px;
        font-size: 1rem;
      }
    }

    /* Extra small screens (phones in portrait) */
    @media (max-width: 480px) {

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

      .team-name {
        font-size: 0.9rem;
      }

      .team-score {
        font-size: 1.3rem;
      }

      .vs-text {
        font-size: 0.9rem;
      }

      .game-item {
        padding: 15px 12px;
      }

      .create-bet-btn {
        padding: 12px 15px;
        font-size: 0.9rem;
      }

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

      .form-select, .form-input {
        padding: 8px 10px;
        font-size: 0.8rem;
      }

      /* Keep team cards side by side on small phones */
      .team-cards-container {
        flex-direction: row;
        gap: 6px;
      }

      .team-card {
        flex: 1;
        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;
      }

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

      /* Smaller yards input for phones */
      .yards-input-container {
        gap: 10px;
        padding: 12px;
      }

      .yards-arrow-btn {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
      }

      .yards-input-box {
        width: 80px;
        height: 44px;
        font-size: 1.4rem;
      }
    }

    /* ML Predictions Section Styles */
    #predictions-section {
      max-width: 1000px;
      margin: 30px auto;
      padding: 25px;
      background: rgba(0, 255, 0, 0.05);
      border: 2px solid #00ff00;
      border-radius: 15px;
      backdrop-filter: blur(10px);
      box-shadow: 0 0 30px rgba(0, 255, 0, 0.2);
    }

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

    .predictions-header h3 {
      font-size: 1.8rem;
      background: linear-gradient(45deg, #00ff00, #00cc88);
      background-clip: text;
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      margin: 0;
    }

    .premium-badge {
      background: linear-gradient(45deg, #FFD700, #FFA500);
      color: #000;
      padding: 5px 15px;
      border-radius: 20px;
      font-size: 0.8rem;
      font-weight: bold;
      letter-spacing: 1px;
      box-shadow: 0 0 15px rgba(255, 215, 0, 0.4);
    }

    .predictions-header-right {
      display: flex;
      align-items: center;
      gap: 15px;
    }

    .toggle-predictions-btn {
      background: linear-gradient(135deg, #00ff00, #00cc88);
      color: #000;
      border: none;
      padding: 8px 20px;
      border-radius: 25px;
      font-size: 0.9rem;
      font-weight: bold;
      cursor: pointer;
      transition: all 0.3s ease;
      box-shadow: 0 0 15px rgba(0, 255, 0, 0.3);
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .toggle-predictions-btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 0 25px rgba(0, 255, 0, 0.5);
    }

    .toggle-predictions-btn:active {
      transform: translateY(0);
    }

    .predictions-table-container {
      overflow-x: auto;
      border-radius: 10px;
      margin-bottom: 15px;
    }

    .predictions-table {
      width: 100%;
      border-collapse: collapse;
      background: rgba(0, 0, 0, 0.3);
    }

    .predictions-table thead {
      background: linear-gradient(135deg, rgba(0, 255, 0, 0.2), rgba(0, 204, 136, 0.2));
      border-bottom: 2px solid #00ff00;
    }

    .predictions-table th {
      padding: 12px 10px;
      text-align: center;
      vertical-align: middle;
      color: #00ff00;
      font-weight: bold;
      font-size: 0.9rem;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }

    .predictions-table td {
      padding: 12px 10px;
      text-align: center;
      vertical-align: middle;
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
      color: #fff;
    }

    .predictions-table th:nth-child(1),
    .predictions-table td:nth-child(1) { width: 28%; }
    .predictions-table th:nth-child(2),
    .predictions-table td:nth-child(2) { width: 26%; }
    .predictions-table th:nth-child(3),
    .predictions-table td:nth-child(3) { width: 26%; }
    .predictions-table th:nth-child(4),
    .predictions-table td:nth-child(4) { width: 20%; }

    .predictions-table tbody tr:hover {
      background: rgba(0, 255, 0, 0.1);
      transition: all 0.3s ease;
    }

    .predicted-winner-container {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
    }

    .predicted-winner-logo {
      width: 28px;
      height: 28px;
      object-fit: contain;
      border-radius: 4px;
      background: rgba(255, 255, 255, 0.1);
      padding: 2px;
    }

    .predicted-winner {
      font-weight: bold;
      color: #00ff00;
      text-shadow: 0 0 10px rgba(0, 255, 0, 0.3);
    }

    .confidence-bar {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .confidence-percentage {
      font-weight: bold;
      color: #00ff00;
      min-width: 45px;
    }

    .confidence-fill {
      flex: 1;
      height: 8px;
      background: rgba(255, 255, 255, 0.1);
      border-radius: 10px;
      overflow: hidden;
      position: relative;
    }

    .confidence-level {
      height: 100%;
      background: linear-gradient(90deg, #00ff00, #00cc88);
      border-radius: 10px;
      transition: width 0.5s ease;
      box-shadow: 0 0 10px rgba(0, 255, 0, 0.5);
    }

    .predictions-note {
      font-size: 0.85rem;
      color: rgba(255, 255, 255, 0.6);
      font-style: italic;
      text-align: center;
    }

    /* Compact Winner Pick Column */
    .winner-pick {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      justify-content: center;
    }

    .winner-info {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 2px;
    }

    .winner-conf {
      font-size: 0.75rem;
      color: rgba(0, 255, 0, 0.7);
      font-weight: 500;
    }

    /* Compact Spread Pick Column */
    .spread-pick {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      justify-content: center;
      padding: 4px 10px;
      border-radius: 6px;
      background: rgba(0, 255, 0, 0.1);
      border: 1px solid rgba(0, 255, 0, 0.3);
      white-space: nowrap;
    }

    .spread-pick.cover {
      background: rgba(0, 255, 0, 0.15);
      border-color: rgba(0, 255, 0, 0.4);
    }

    .spread-pick.fade {
      background: rgba(255, 165, 0, 0.15);
      border-color: rgba(255, 165, 0, 0.4);
    }

    .spread-team {
      font-weight: 600;
      font-size: 0.85rem;
      color: #00ff00;
      max-width: 70px;
      overflow: hidden;
      text-overflow: ellipsis;
    }

    .spread-pick.fade .spread-team {
      color: #ffa500;
    }

    .spread-line {
      font-size: 0.8rem;
      color: rgba(255, 255, 255, 0.9);
      font-weight: 500;
    }

    .spread-conf {
      font-size: 0.7rem;
      color: rgba(255, 255, 255, 0.6);
      padding: 1px 4px;
      background: rgba(0, 0, 0, 0.3);
      border-radius: 3px;
    }

    .spread-na {
      color: rgba(255, 255, 255, 0.4);
      font-size: 0.85rem;
    }

    .game-time-cell {
      font-size: 0.85rem;
      line-height: 1.3;
    }

    .time-text {
      font-size: 0.75rem;
      color: rgba(255, 255, 255, 0.6);
    }

    /* Mobile Predictions Optimization - Card Layout */
    @media (max-width: 768px) {
      #predictions-section {
        padding: 12px;
        margin: 15px 8px;
        overflow: hidden;
      }

      .predictions-header {
        flex-wrap: wrap;
        gap: 10px;
      }

      .predictions-header h3 {
        font-size: 1.1rem;
        flex: 1 1 100%;
        text-align: center;
      }

      .predictions-header-right {
        flex: 1 1 100%;
        justify-content: center;
        flex-wrap: wrap;
        gap: 8px;
      }

      .toggle-predictions-btn {
        padding: 8px 16px;
        font-size: 0.8rem;
        white-space: nowrap;
        max-width: 100%;
      }

      .premium-badge {
        font-size: 0.65rem;
        padding: 4px 10px;
      }

      .predictions-table-container {
        overflow-x: visible;
      }

      .predictions-table {
        display: block;
        width: 100%;
      }

      .predictions-table thead {
        display: none;
      }

      .predictions-table tbody {
        display: block;
      }

      .predictions-table tbody tr {
        display: block;
        margin-bottom: 15px;
        border: 1px solid rgba(0, 255, 0, 0.2);
        border-radius: 8px;
        padding: 10px;
      }

      .predictions-table td {
        display: block;
        width: 100% !important;
        border: none;
        padding: 5px 0;
      }

      .predictions-table td:before {
        content: attr(data-label);
        font-weight: bold;
        color: #00ff00;
        margin-right: 8px;
      }

      .team-logo {
        width: 22px;
        height: 22px;
      }

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

      .vs-text {
        font-size: 0.7rem;
        margin: 0 4px;
      }

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

    /* Open Bets Section Styles */
    .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: 1000px;
      margin-left: auto;
      margin-right: auto;
    }

    .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: 2fr 1.5fr 1fr 1fr 140px;
      gap: 15px;
      align-items: center;
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 15px;
      padding: 20px;
      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-game {
      font-size: 1.1rem;
      font-weight: bold;
      color: #fff;
    }

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

    .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;
    }

    @keyframes pulse-status {
      0%, 100% { opacity: 1; }
      50% { opacity: 0.7; }
    }

    .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;
    }

    .message-user-btn {
      background: linear-gradient(45deg, #0099ff, #0077cc);
      color: white;
      border: none;
      padding: 4px 10px;
      border-radius: 8px;
      font-size: 0.75rem;
      cursor: pointer;
      transition: all 0.3s ease;
      font-weight: bold;
    }

    .message-user-btn:hover {
      background: linear-gradient(45deg, #0077cc, #0099ff);
      transform: scale(1.05);
    }

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

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

    .bet-action {
      display: flex;
      justify-content: flex-end;
    }

    .join-btn {
      background: linear-gradient(45deg, #00ff00, #00cc88);
      color: #000;
      border: none;
      padding: 10px 16px;
      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-btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 6px 15px rgba(0, 255, 0, 0.4);
      background: linear-gradient(45deg, #00cc88, #00ff00);
    }

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

    .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);
      }
    }

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

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

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

    .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; }
    }
