    * {
      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;
    }

    /* Navigation Styles */

    .dropdown-container:hover 

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

      .dropdown-container:hover 
    }

    /* Submenu Styles */

    .submenu-container:hover 

    .main-content h2 {
      text-align: center;
      margin-bottom: 30px;
      font-size: 2rem;
      background: linear-gradient(45deg, #00ff00, #00cc88);
      background-clip: text;
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }

    /* Controls Section */
    .controls-container {
      max-width: 800px;
      margin: 0 auto 30px auto;
      display: flex;
      gap: 20px;
      justify-content: center;
      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 Spinner */
    .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); }
    }

    /* Game Containers */
    #ncaa-game-containers {
      display: grid;
      gap: 20px;
      max-width: 1000px;
      margin: auto;
      grid-template-columns: repeat(auto-fit, minmax(450px, 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;
      margin-bottom: 15px;
    }

    .teams {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 20px;
      margin-bottom: 20px;
      width: 100%;
    }

    .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;
      color: white;
    }

    .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);
      width: 100%;
    }

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

    .no-games {
      text-align: center;
      padding: 40px;
      color: #999;
      font-size: 1.1rem;
    }

    .sports-buttons {
      display: flex;
      justify-content: center;
      gap: 20px;
      margin: 40px 0;
      flex-wrap: wrap;
    }

    .sports-btn {
      background: rgba(255, 255, 255, 0.1);
      border: 1px solid rgba(255, 255, 255, 0.2);
      border-radius: 15px;
      padding: 15px;
      transition: all 0.3s ease;
      backdrop-filter: blur(10px);
    }

    .sports-btn:hover {
      background: rgba(0, 255, 0, 0.1);
      border-color: #00ff00;
      transform: translateY(-2px);
      box-shadow: 0 5px 15px rgba(0, 255, 0, 0.3);
    }

    .sports-btn img {
      width: 50px;
      height: 50px;
      object-fit: contain;
    }

    .sports-btn a {
      text-decoration: none;
    }

    .open-bets {
      background: rgba(255, 255, 255, 0.05);
      backdrop-filter: blur(15px);
      border: 1px solid rgba(255, 255, 255, 0.1);
      padding: 20px;
      border-radius: 15px;
      max-width: 400px;
      margin: 0 auto;
    }

    .open-bets h3 {
      color: #00ff00;
      margin-bottom: 15px;
      text-align: center;
    }

    .open-bets ul {
      list-style: none;
    }

    .open-bets li {
      padding: 10px;
      background: rgba(255, 255, 255, 0.05);
      margin-bottom: 8px;
      border-radius: 8px;
      border-left: 3px solid #00ff00;
    }

    /* Modern Open Bets Styles */
    .open-bets-modern {
      max-width: 1400px;
      margin: 40px auto;
      padding: 30px;
      background: rgba(255, 255, 255, 0.03);
      backdrop-filter: blur(15px);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 20px;
    }

    .open-bets-modern h3 {
      color: #00ff00;
      text-align: center;
      margin-bottom: 10px;
      font-size: 2rem;
    }

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

    .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-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-game {
      display: flex;
      flex-direction: column;
      gap: 8px;
    }

    .game-matchup {
      font-size: 1.1rem;
      font-weight: 600;
      color: #ffffff;
    }

    .game-details {
      display: flex;
      flex-direction: column;
      gap: 6px;
      font-size: 0.85rem;
    }

    .game-datetime {
      color: #00ff00;
      font-weight: 500;
    }

    .game-status {
      padding: 4px 10px;
      border-radius: 12px;
      font-size: 0.75rem;
      font-weight: 600;
      text-transform: uppercase;
      display: inline-block;
      width: fit-content;
    }

    .game-status.scheduled {
      background: rgba(0, 150, 255, 0.2);
      color: #0096ff;
      border: 1px solid rgba(0, 150, 255, 0.4);
    }

    .game-status.in_progress {
      background: rgba(255, 0, 0, 0.2);
      color: #ff0000;
      border: 1px solid rgba(255, 0, 0, 0.4);
    }

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

    .message-user-btn {
      background: rgba(0, 150, 255, 0.2);
      color: #0096ff;
      border: 1px solid rgba(0, 150, 255, 0.4);
      padding: 4px 10px;
      border-radius: 8px;
      font-size: 0.75rem;
      cursor: pointer;
      transition: all 0.3s ease;
      font-weight: 600;
    }

    .message-user-btn:hover {
      background: rgba(0, 150, 255, 0.3);
      border-color: #0096ff;
      transform: scale(1.05);
    }

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

    .bet-amount {
      color: #00ff00;
      font-size: 1.1rem;
      font-weight: 600;
    }

    .bet-odds {
      color: #ffcc00;
      font-size: 1rem;
      font-weight: 500;
    }

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

    .join-btn {
      background: linear-gradient(135deg, #00ff00 0%, #00cc88 100%);
      color: #0a0a0a;
      border: none;
      padding: 12px 24px;
      border-radius: 25px;
      font-size: 1rem;
      font-weight: 700;
      cursor: pointer;
      transition: all 0.3s ease;
      box-shadow: 0 4px 15px rgba(0, 255, 0, 0.3);
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }

    .join-btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(0, 255, 0, 0.5);
      background: linear-gradient(135deg, #00ff00 0%, #00dd99 100%);
    }

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

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

    @media (max-width: 768px) {
      #ncaa-game-containers {
        grid-template-columns: 1fr;
      }

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

      .teams {
        flex-direction: row;
        gap: 20px;
        justify-content: space-between;
        align-items: center;
      }

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

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

      .game-info {
        grid-template-columns: 1fr;
      }
    }

    /* Betting Odds Section Styles */
    .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;
      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;
    }

    /* 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;
    }

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

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

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

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

    @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-btn {
        font-size: 0.75rem;
        padding: 5px 10px;
      }
    }

    /* 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); }
    }

    /* Live indicator dot */
    .game-status.live::before {
      content: "🔴 ";
      animation: blink 1s infinite;
    }

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

    /* Quarter display for live games */
    .quarter-info {
      font-size: 1rem;
      color: #ff0000;
      font-weight: bold;
      margin: 5px 0;
    }

    /* 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;
    }

    /* 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;
    }

    /* NCAA Football Betting Modal Styles - Card-Based Design */
    .modal-overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(10, 14, 39, 0.95);
      backdrop-filter: blur(10px);
      z-index: 1000;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .modal-container {
      background: linear-gradient(135deg, rgba(26, 30, 58, 0.98) 0%, rgba(10, 14, 39, 0.98) 100%);
      border: 1px solid rgba(0, 255, 136, 0.2);
      border-radius: 24px;
      max-width: 600px;
      width: 95%;
      max-height: 90vh;
      overflow-y: auto;
      color: white;
      box-shadow: 0 25px 80px rgba(0, 0, 0, 0.6);
    }

    .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(0, 255, 136, 0.05);
    }

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

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

    .modal-close:hover {
      background: rgba(255, 100, 100, 0.2);
      color: #ff6666;
    }

    .modal-content {
      padding: 24px;
    }

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

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

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

    .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(3, 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: 0.9rem;
      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;
    }

    /* 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);
    }

    /* 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;
      display: block;
      margin: 0 auto;
    }

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

    .form-select {
      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;
      cursor: pointer;
      transition: all 0.3s ease;
      width: 100%;
    }

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

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

    /* Mobile Responsive for Modal */
    @media (max-width: 768px) {
      .modal-container {
        max-width: 100%;
        width: 100%;
        height: 100%;
        max-height: 100%;
        border-radius: 0;
      }

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

      .bet-type-cards {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
      }

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

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

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

      .team-cards-container {
        gap: 8px;
      }

      .team-card {
        padding: 15px 10px;
      }

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

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

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

      .vs-badge {
        width: 32px;
        height: 32px;
        font-size: 0.75rem;
      }

      .ou-cards-container {
        gap: 8px;
      }

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

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

      .amount-btn {
        padding: 10px 16px;
        font-size: 0.9rem;
        min-width: 60px;
      }
    }

    @media (max-width: 480px) {
      .team-cards-container {
        gap: 6px;
      }

      .team-card {
        padding: 12px 8px;
      }

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

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

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

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

      /* Header mobile optimization */

      /* Navigation mobile optimization */

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

      .main-content h2 {
        font-size: 1.6rem;
        margin-bottom: 20px;
      }

      /* Controls mobile optimization */
      .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: 8px 12px;
        min-width: 120px;
      }

      /* Game containers mobile optimization */
      #ncaa-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;
        margin-bottom: 12px;
      }

      .quarter-info {
        font-size: 0.9rem;
        margin: 5px 0 10px 0;
      }

      /* Teams section mobile optimization */
      .teams {
        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 mobile optimization */
      .game-info {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        margin-bottom: 15px;
        padding-top: 10px;
      }

      .info-item {
        gap: 3px;
      }

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

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

      /* Stats section mobile optimization */
      .stats-toggle-btn {
        padding: 10px 15px;
        font-size: 0.9rem;
      }

      .stats-content {
        padding: 12px;
      }

      .team-records h4,
      .team-stats-section h4,
      .leaders-section h4 {
        font-size: 0.9rem;
        margin-bottom: 8px;
      }

      .record,
      .stat-item,
      .leader-item {
        padding: 6px 8px;
        font-size: 0.8rem;
      }

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

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

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

      /* Create bet button mobile optimization */
      .create-bet-btn {
        padding: 12px 20px;
        font-size: 0.9rem;
        margin-top: 15px;
      }

      /* Loading and error states mobile */
      .loading {
        padding: 30px 15px;
        font-size: 1rem;
      }

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

      .no-games {
        padding: 30px 15px;
        font-size: 1rem;
      }

      .no-games h3 {
        font-size: 1.2rem;
        margin-bottom: 10px;
      }

      .no-games p {
        font-size: 0.9rem;
        margin-bottom: 8px;
      }

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

      .sports-btn {
        min-height: 80px;
        padding: 10px;
        border-radius: 12px;
      }

      .sports-btn img {
        max-width: 40px;
        max-height: 40px;
      }

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

      .open-bets h3 {
        font-size: 1.2rem;
        margin-bottom: 12px;
      }

      .open-bets li {
        padding: 8px;
        font-size: 0.9rem;
      }

      /* Back button mobile optimization */
      .back-button {
        margin-top: 30px;
        text-align: center;
      }

      .back-button a {
        font-size: 1rem;
        padding: 12px 25px;
      }

      /* 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;
      }

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

      .betting-form-container {
        gap: 15px;
      }

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

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

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

    /* Extra small screens (iPhone SE, etc.) */
    @media (max-width: 480px) {

      .main-content h2 {
        font-size: 1.4rem;
      }

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

      .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-info {
        grid-template-columns: 1fr;
        gap: 8px;
      }

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

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

      .sports-btn {
        min-height: 70px;
        padding: 8px;
      }

      .sports-btn img {
        max-width: 35px;
        max-height: 35px;
      }

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

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

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

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

      .teams {
        flex-direction: row;
        gap: 20px;
      }

      .vs-divider {
        transform: none;
        margin: 0 15px;
      }
    }

    /* Touch target optimization for mobile */
    @media (hover: none) and (pointer: coarse) {
      .sports-btn,
      .create-bet-btn,
      .stats-toggle-btn,
      nav a,
      select {
        min-height: 44px;
        min-width: 44px;
      }

      .form-select,
      .form-input {
        min-height: 44px;
      }
    }
