/* Updated props.css with modern card design and keeping green for money values */

:root {
  --outrun-pink: #ff1493;
  --outrun-green: #00ff00;
  --outrun-dark: #000000;
  --outrun-dark-lighter: #2a2a4e;
  --outrun-text: #ffffff;
  --outrun-text-secondary: #b8b8d0;
}

/* Base Styles */
body {
  font-family: 'Bruno Ace', cursive;
  margin: 0;
  padding: 0;
  min-height: 100vh;
  /* Updated background with dark blue/purple base */
  background: linear-gradient(135deg, #0f0f1a 0%, #1a1a2e 100%);
  color: var(--outrun-text);
  position: relative;
}

/* Add subtle animated pattern */
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    radial-gradient(circle at 25% 25%, rgba(255, 20, 147, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 75% 75%, rgba(255, 20, 147, 0.025) 0%, transparent 50%);
  z-index: 0;
  pointer-events: none;
}

.container-main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1rem;
  position: relative;
  z-index: 1;
}

/* Header Styling */
.header-container {
  text-align: center;
  margin-bottom: 3rem;
}

.outrun-title {
  font-family: 'Teko', sans-serif;
  color: var(--outrun-pink);
  font-size: 3.5rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 0.5rem;
  text-shadow: 0 0 15px var(--outrun-pink);
}

.subheader {
  font-family: 'Teko', sans-serif;
  color: #ffffff;
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto;
}

/* Panel Styling - Modernized with card design updates */
.content-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.outrun-panel {
  background: linear-gradient(145deg, rgba(18, 18, 30, 0.95) 0%, rgba(30, 30, 60, 0.85) 100%);
  border-radius: 16px;
  padding: 1.75rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 20, 147, 0.1);
  transition: all 0.3s ease;
}

.outrun-panel:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
  border-color: rgba(255, 20, 147, 0.3);
}

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

.panel-title {
  font-family: 'Teko', sans-serif;
  color: white;
  font-size: 1.8rem;
  font-weight: 700;
  text-transform: uppercase;
  margin: 0;
  letter-spacing: 0.05em;
  position: relative;
  display: inline-block;
}

.panel-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 40px;
  height: 3px;
  background: var(--outrun-pink);
  box-shadow: 0 0 8px var(--outrun-pink);
}

.week-badge {
  background-color: rgba(255, 20, 147, 0.2);
  font-family: 'Teko', sans-serif;
  color: white;
  font-weight: bold;
  padding: 0.5rem 1.25rem;
  border-radius: 8px;
  border: 1px solid rgba(255, 20, 147, 0.4);
  box-shadow: 0 0 15px rgba(255, 20, 147, 0.2);
}

.panel-description {
  font-family: 'Teko', sans-serif;
  color: #bbb;
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

/* Table Styling */
.table-container {
  overflow-x: auto;
  margin-bottom: 1rem;
  position: relative;
}

.data-table {
  width: 100%;
  border-collapse: collapse;
}

.data-table thead th {
  font-family: 'Teko', sans-serif;
  padding: 0.75rem;
  font-weight: 600;
  text-align: left;
  color: var(--outrun-text-secondary);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 1.1rem;
}

.data-table tbody tr {
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: background-color 0.2s;
}

.data-table tbody tr:hover {
  background-color: rgba(255, 20, 147, 0.05);
}

.data-table tbody td {
  padding: 0.75rem;
  vertical-align: middle;
  font-family: 'Teko', sans-serif;
  font-size: 1.1rem;
}

.odds-source {
  font-family: 'Teko', sans-serif;
  font-size: 0.5rem;
  color: #888;
  text-align: right;
  margin-top: 0.5rem;
  margin-right: 0.5rem;
  font-style: italic;
}

.player-name {
  font-weight: 700;
}

.position-cell {
  color: #aaa;
}

.side-cell {
  font-weight: 700;
  text-transform: uppercase;
}

/* Keep green for money values */
.ev-cell {
  color: var(--outrun-green);
  font-weight: 700;
  text-shadow: 0 0 5px rgba(0, 255, 0, 0.3);
}

.confidence-cell {
  color: var(--outrun-text);
}

.over-value {
  color: var(--outrun-green);
}

.under-value {
  color: #ff5050;
}

/* Stats Grid */
.stats-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.stat-box {
  background: linear-gradient(160deg, rgba(26, 26, 46, 0.9) 0%, rgba(40, 40, 70, 0.7) 100%);
  padding: 1.25rem;
  border-radius: 12px;
  margin-bottom: 1rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 20, 147, 0.1);
  transition: all 0.3s ease;
}

.stat-box:hover {
  border-color: rgba(255, 20, 147, 0.3);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
}

.stat-title {
  font-family: 'Teko', sans-serif;
  color: white;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  letter-spacing: 0.03em;
  position: relative;
  display: inline-block;
}

.stat-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 30px;
  height: 2px;
  background: var(--outrun-pink);
  box-shadow: 0 0 6px var(--outrun-pink);
}

.stat-subtext {
  font-family: 'Teko', sans-serif;
  font-size: 0.9rem;
  color: #aaa;
  margin-bottom: 0.75rem;
  font-style: italic;
}

.stat-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.5rem;
  font-family: 'Teko', sans-serif;
  font-size: 1.1rem;
}

.portfolio-value {
  color: #ffffff;
  font-weight: bold;
  font-size: 1.2rem;
}

.profit-value {
  color: var(--outrun-green);
  font-weight: bold;
  text-shadow: 0 0 5px rgba(0, 255, 0, 0.3);
}

/* Top Props Styling */
.top-props-container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.top-prop-card {
  background: linear-gradient(160deg, rgba(26, 26, 46, 0.9) 0%, rgba(40, 40, 70, 0.7) 100%);
  padding: 1.25rem;
  border-radius: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 20, 147, 0.1);
  transition: all 0.3s ease;
}

.top-prop-card:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 20, 147, 0.3);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.top-prop-player {
  font-family: 'Teko', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  margin: 0 0 0.25rem 0;
}

.top-prop-details {
  font-family: 'Teko', sans-serif;
  color: #aaa;
  margin: 0;
  font-size: 1rem;
}

.top-prop-value {
  text-align: right;
}

.top-prop-ev {
  font-family: 'Teko', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--outrun-green);
  text-shadow: 0 0 5px rgba(0, 255, 0, 0.3);
}

.top-prop-side {
  font-family: 'Teko', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
}

/* Parlay Styling */
.parlay-panel {
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.parlays-container {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .parlays-container {
    grid-template-columns: repeat(3, 1fr);
  }
}

.parlay-card {
  background: linear-gradient(160deg, rgba(26, 26, 46, 0.9) 0%, rgba(40, 40, 70, 0.7) 100%);
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 20, 147, 0.1);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.parlay-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 20, 147, 0.3);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.parlay-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 0.75rem;
}

.parlay-title {
  font-family: 'Teko', sans-serif;
  color: white;
  font-size: 1.4rem;
  margin: 0;
  letter-spacing: 0.03em;
}

.parlay-payout {
  text-align: right;
}

.parlay-bet {
  font-family: 'Teko', sans-serif;
  color: #aaa;
  font-size: 0.9rem;
}

.parlay-return {
  font-family: 'Teko', sans-serif;
  color: var(--outrun-green);
  font-weight: bold;
  font-size: 1.3rem;
  text-shadow: 0 0 5px rgba(0, 255, 0, 0.3);
}

.parlay-legs {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem 0;
  flex-grow: 1;
}

.parlay-leg {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  font-family: 'Teko', sans-serif;
}

.leg-player {
  font-weight: bold;
  font-size: 1.1rem;
}

.leg-prop {
  color: #bbb;
  font-size: 1rem;
  text-align: center;
}

.leg-value {
  text-align: right;
  font-weight: bold;
  font-size: 1rem;
}

.parlay-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.parlay-odds {
  font-family: 'Teko', sans-serif;
  font-size: 1.2rem;
  font-weight: bold;
  color: white;
}

.parlay-profit {
  font-family: 'Teko', sans-serif;
  font-size: 1.1rem;
  color: var(--outrun-green);
  text-shadow: 0 0 5px rgba(0, 255, 0, 0.3);
}

.parlay-disclaimer {
  font-family: 'Teko', sans-serif;
  font-size: 0.9rem;
  color: #888;
  text-align: center;
  font-style: italic;
  max-width: 700px;
  margin: 0 auto;
}

/* Week Navigation */
.week-nav-container {
  text-align: center;
  margin: 2rem 0;
}

.week-nav-title {
  font-family: 'Teko', sans-serif;
  color: var(--outrun-pink);
  font-size: 1.2rem;
  margin-bottom: 1rem;
  letter-spacing: 0.05em;
  text-shadow: 0 0 5px rgba(255, 20, 147, 0.5);
}

.week-nav-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
}

.week-nav-button {
  font-family: 'Teko', sans-serif;
  padding: 0.5rem 0.75rem;
  background-color: rgba(26, 26, 46, 0.8);
  color: white;
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.3s;
  border: 1px solid rgba(255, 20, 147, 0.1);
}

.week-nav-button:hover {
  background-color: rgba(255, 20, 147, 0.2);
  box-shadow: 0 0 10px rgba(255, 20, 147, 0.2);
  border-color: rgba(255, 20, 147, 0.3);
}

.week-nav-button.active {
  background: linear-gradient(135deg, rgba(0, 255, 0, 0.2) 0%, rgba(0, 255, 0, 0.1) 100%);
  color: white;
  font-weight: 700;
  box-shadow: 0 0 10px rgba(0, 255, 0, 0.2);
  border: 1px solid rgba(0, 255, 0, 0.3);
}

/* CTA Button */
.cta-container {
  text-align: center;
  margin-top: 2rem;
}

.cta-button {
  font-family: 'Teko', sans-serif;
  display: inline-block;
  background: linear-gradient(135deg, rgba(0, 255, 0, 0.8) 0%, rgba(0, 200, 0, 0.8) 100%);
  color: black;
  font-weight: 700;
  font-size: 1.1rem;
  padding: 0.75rem 2.5rem;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 0 20px rgba(0, 255, 0, 0.3);
  border: none;
  letter-spacing: 0.05em;
}

.cta-button:hover {
  transform: scale(1.05);
  box-shadow: 0 0 30px rgba(0, 255, 0, 0.5);
}

/* Modal styling */
.prop-detail-modal {
  font-family: 'Bruno Ace', cursive;
}

.modal-title, .modal-subtitle {
  font-family: 'Teko', sans-serif;
}

.modal-content {
  background: linear-gradient(145deg, rgba(18, 18, 30, 0.95) 0%, rgba(30, 30, 60, 0.85) 100%);
  border: 1px solid rgba(255, 20, 147, 0.2) !important;
  border-radius: 16px;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
}

.data-label {
  font-family: 'Teko', sans-serif;
}

.data-value {
  font-family: 'Teko', sans-serif;
}

.history-table th, .history-table td {
  font-family: 'Teko', sans-serif;
}

/* Responsive Enhancements */
@media (min-width: 992px) {
  .props-main-panel {
    margin-bottom: 2rem;
  }

  .outrun-title {
    font-size: 4rem;
  }
}

/* Mobile optimizations */
@media (max-width: 480px) {
  .container-main {
    padding: 1rem 0.5rem;
  }

  .outrun-title {
    font-size: 2.5rem;
  }

  .panel-title {
    font-size: 1.5rem;
  }

  .panel-title::after {
    width: 30px;
    height: 2px;
  }

  .outrun-panel, .stat-box, .top-prop-card, .parlay-card {
    padding: 1rem;
  }

  /* Adjust table for mobile */
  .data-table thead th,
  .data-table tbody td {
    padding: 0.5rem 0.25rem;
    font-size: 0.9rem;
  }

  /* Stack parlay leg content on very small screens */
  .parlay-leg {
    grid-template-columns: 1fr;
    text-align: left;
    gap: 0.25rem;
  }

  .leg-prop, .leg-value {
    text-align: left;
  }

}

/* Hide less important columns on very small screens */
@media (max-width: 480px) {
  .data-table .position-cell,
  .data-table .confidence-cell {
    display: none;
  }

  .odds-source {
    font-size: 0.5rem;
    padding-right: 0.5rem;
  }
}

.cta-container {
  text-align: center;
  margin-top: 2rem;
  margin-bottom: 3rem; /* Add bottom margin */
}

/* Add extra bottom padding to the main container */
.container-main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1rem 3rem; /* Increase bottom padding */
  position: relative;
  z-index: 1;
}

/* Add these styles to your props.css file */

/* Home icon styling */
.home-icon-container {
  display: flex;
  justify-content: center;
  margin-bottom: 1rem;
}

.home-icon {
  width: 60px;
  height: 60px;
  filter: drop-shadow(0 0 8px rgba(255, 20, 147, 0.8));
  transition: all 0.3s ease;
}

.home-icon:hover {
  transform: scale(1.1);
  filter: drop-shadow(0 0 15px rgba(255, 20, 147, 1));
}

/* Adjust layout for mobile */
@media (max-width: 480px) {
  .home-icon {
    width: 50px;
    height: 50px;
  }

  .home-icon-container {
    margin-bottom: 0.5rem;
  }
}

/* Enhance mobile-specific spacing */
@media (max-width: 480px) {
  .cta-container {
    margin-bottom: 5rem; /* Even more bottom margin on mobile */
  }

  .container-main {
    padding: 0;
    padding-top: 2rem;
    padding-bottom: 4rem; /* More bottom padding on mobile */
  }

  /* Make the CTA button easier to tap on mobile */
  .cta-button {
    padding: 0.85rem 2.5rem; /* Slightly larger touch target */
    margin-bottom: 1rem; /* Space below the button itself */
  }
}

*   ARBITRAGE SECTION */
/* Additional styles for the arbitrage dashboard - add to your props.css */

/* How-to steps styling */
.how-to-steps {
    padding-left: 1.5rem;
    margin-top: 1.5rem;
}

.how-to-steps li {
    margin-bottom: 1rem;
    font-family: 'Teko', sans-serif;
    font-size: 1.1rem;
    color: #fff;
}

.how-to-steps li strong {
    color: var(--outrun-pink);
}

/* Example calculation box */
.arb-example {
    background: linear-gradient(160deg, rgba(26, 26, 46, 0.9) 0%, rgba(40, 40, 70, 0.7) 100%);
    padding: 1.25rem;
    border-radius: 12px;
    margin-top: 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 20, 147, 0.1);
    transition: all 0.3s ease;
}

.arb-example:hover {
    border-color: rgba(255, 20, 147, 0.3);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
}

.arb-example h3 {
    font-family: 'Teko', sans-serif;
    color: white;
    font-size: 1.3rem;
    margin-top: 0;
    margin-bottom: 0.75rem;
    position: relative;
    display: inline-block;
}

.arb-example h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 30px;
    height: 2px;
    background: var(--outrun-pink);
    box-shadow: 0 0 6px var(--outrun-pink);
}

.arb-example p {
    font-family: 'Teko', sans-serif;
    font-size: 1rem;
    color: #ccc;
    margin-bottom: 1rem;
}

/* Calculation rows */
.example-calculation {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 1rem;
}

.calc-row {
    display: flex;
    justify-content: space-between;
    font-family: 'Teko', sans-serif;
    font-size: 1.1rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.calc-row:last-child {
    border-bottom: none;
    font-weight: bold;
}

/* Second button for CTAs */
.second-button {
    margin-left: 1rem;
    background: linear-gradient(135deg, rgba(255, 20, 147, 0.8) 0%, rgba(200, 10, 100, 0.8) 100%);
}

.second-button:hover {
    transform: scale(1.05);
    background: linear-gradient(135deg, rgba(255, 20, 147, 0.9) 0%, rgba(200, 10, 100, 0.9) 100%);
    box-shadow: 0 0 30px rgba(255, 20, 147, 0.5);
}

/* Make responsive */
@media (max-width: 768px) {
    .second-button {
        margin-left: 0;
        margin-top: 1rem;
    }

    .how-to-steps {
        padding-left: 1rem;
    }

    .how-to-steps li {
        font-size: 1rem;
    }
}

/* Highlighting for the arbitrage table */
#arbitrage-table .ev-cell {
    font-weight: 700;
}

/* Empty state messaging */
.no-opportunities-message {
    text-align: center;
    padding: 2rem;
    color: #888;
    font-style: italic;
    font-family: 'Teko', sans-serif;
    font-size: 1.2rem;
}

.premium-badge {
    position: absolute;
    top: 0px;
    right: 150px; /* Position on the left instead of right */
    background-color: var(--outrun-green);
    color: black;
    font-family: 'Teko', sans-serif;
    font-weight: bold;
    padding: 0.4rem 1rem;
    border-radius: 30px;
    font-size: 0.9rem;
    text-transform: uppercase;
    box-shadow: 0 0 15px rgba(0, 255, 0, 0.4);
    z-index: 10;
    border: 1px solid rgba(0, 0, 0, 0.2);
}

/* Update panel header to support badge positioning */
.panel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    position: relative; /* Add this */
}

/* Enhanced mobile optimizations */
@media (max-width: 480px) {
  /* Fix container centering */
  .container-main {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  .content-grid {
    padding: 0 0.5rem;
  }

  /* Hide confidence column completely */
  .data-table th:nth-child(8),
  .data-table td:nth-child(8) {
    display: none !important;
  }

  /* Make sure position column is hidden too */
  .data-table th:nth-child(2),
  .data-table td:nth-child(2) {
    display: none !important;
  }

  .data-table thead th,
  .data-table tbody td {
    padding: 0.4rem 0.2rem;
    font-size: 0.9rem;
  }

  .table-container {
    margin: 0 -0.5rem;
    padding: 0 0.5rem;
    width: calc(100% + 1rem);
    max-width: 100vw;
  }

  .table-container::-webkit-scrollbar {
    height: 4px;
  }

  .outrun-panel {
    padding: 1rem 0.75rem;
  }

  /* Week Navigation */
  .week-nav-container {
    margin-top: 0rem;
    margin-bottom: 5rem;
  }
}

/* Mobile optimization for parlays - column layout */
@media (max-width: 480px) {
  /* Container fixes */
  .content-grid {
    padding: 0 0.5rem;
  }

  /* Hide confidence column */
  .data-table th:nth-child(8),
  .data-table td:nth-child(8) {
    display: none !important;
  }

  /* Table adjustments */
  .data-table thead th,
  .data-table tbody td {
    padding: 0.4rem 0.2rem;
    font-size: 0.85rem;
  }

  /* Change parlay legs from rows to columns */
  .parlay-legs {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 0.5rem;
    padding-bottom: 0.5rem;
    margin-bottom: 0.5rem;
  }

  .parlay-leg {
    display: flex;
    flex-direction: column;
    border-bottom: none;
    border-right: 1px solid rgba(255, 255, 255, 0.07);
    padding: 0;
    min-width: 80px;
    flex: 1;
  }

  .parlay-leg:last-child {
    border-right: none;
  }

  .leg-player, .leg-prop, .leg-value {
    text-align: center;
    white-space: nowrap;
    font-size: 0.75rem;
    margin-bottom: 0.25rem;
  }

  /* More compact cards */
  .parlay-card {
    padding: 1rem 0.75rem;
  }

  .parlay-header {
    margin-bottom: 0.5rem;
    padding-bottom: 0.5rem;
  }

  .parlay-footer {
    padding-top: 0.5rem;
  }

  /* Better horizontal scrolling experience */
  .parlay-legs::-webkit-scrollbar {
    height: 3px;
  }

  .parlay-legs::-webkit-scrollbar-thumb {
    background-color: rgba(255, 20, 147, 0.4);
    border-radius: 3px;
  }

  .parlay-title {
      font-size: 1rem;
    }
}

.bookmaker-link {
    color: var(--outrun-pink);
    text-decoration: none;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
    font-weight: bold;
    text-shadow: 0 0 3px rgba(255, 20, 147, 0.3);
}

.bookmaker-link:hover {
    color: #fff;
    background: linear-gradient(135deg, var(--outrun-pink) 0%, rgba(255, 20, 147, 0.8) 100%);
    border-bottom: 1px solid var(--outrun-pink);
    text-shadow: 0 0 8px rgba(255, 20, 147, 0.6);
    padding: 0.2rem 0.4rem;
    border-radius: 4px;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(255, 20, 147, 0.3);
}

/* Make sure regular bookmaker text is distinguishable */
.bookmaker {
    color: #aaa;
    font-size: 0.8rem;
}

/* Mobile responsive adjustments */
@media (max-width: 768px) {
    .bookmaker-link:hover {
        transform: none; /* Disable transform on mobile to prevent layout issues */
        padding: 0.1rem 0.3rem;
    }
}

.card-bookmaker .bookmaker-link {
    color: var(--outrun-pink);
    text-decoration: none;
    font-weight: bold;
    text-shadow: 0 0 3px rgba(255, 20, 147, 0.3);
    transition: all 0.3s ease;
}

.card-bookmaker .bookmaker-link:hover {
    color: #fff;
    text-shadow: 0 0 8px rgba(255, 20, 147, 0.6);
}