:root {
  --bg-outer: #16181b;
  --bg-panel: #1e2024;
  --bg-list: #1b1d20;
  --line: #2a2c30;
  --accent: #ee9a1b;
  --muted: #b0b5bb;
  --banner: #2a2c30;
}

html,
body {
  background: var(--bg-outer);
}

.panel {
  background: var(--bg-panel);
  border: 1px solid var(--line);
}

.list-dark {
  background: var(--bg-list);
  border-color: var(--line);
}

.list-dark .list-group-item {
  background: var(--bg-list);
  color: #f0f0f0;
  border-color: var(--line);
}

.list-dark .list-group-item:hover {
  background: #22252a;
}

.title-bar {
  background: var(--bg-panel);
  border: 1px solid var(--line);
  color: #f0f0f0;
}

/* Banner placeholder */
.banner-box {
  background: var(--banner);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  font-weight: 700;
  min-height: 270px;
  overflow: hidden;
}

.banner-box img {
  max-width: 100%;
  height: auto;
  border-radius: 0.5rem;
}

.banner-box + .banner-box {
  margin-top: 1rem;
}

/* Betslip */
.betslip {
  min-height: 300px;
  display: flex;
  flex-direction: column;
}

.betslip-content {
  flex-grow: 1;
}

.betslip-footer {
  margin-top: auto;
}

.betslip .mini-ticket {
  background: #202225;
  border: 1px solid var(--line);
  border-radius: 0.5rem;
  padding: 0.75rem;
  position: relative;
}

.betslip .mini-ticket .odd {
  color: var(--accent);
  font-weight: 700;
  display: flex;
  align-items: center;
  height: 100%;
}

.betslip .mini-ticket .remove-btn {
  position: absolute;
  top: 5px;
  right: 5px;
  background: transparent;
  border: none;
  color: #888;
  font-size: 1.2rem;
  line-height: 1;
  cursor: pointer;
}

.betslip .mini-ticket .remove-btn:hover {
  color: #fff;
}

.info-mute {
  color: var(--muted);
  font-size: 0.85rem;
}

/* Scroll */
.scroll-y {
  max-height: 520px;
  overflow-y: auto;
}

/* Accent Buttons */
.btn-accent {
  background: var(--accent);
  color: #000;
  font-weight: 700;
}

.btn-accent:hover {
  background: #d68715;
  color: #000;
}

.btn-outline-accent {
  border: 1px solid var(--accent);
  color: var(--accent);
}

.btn-outline-accent:hover {
  background: var(--accent);
  color: #000;
}

/* Tutar Input Styling */
.stake-input-group {
  background: var(--bg-list);
  border: 2px solid var(--line);
  border-radius: 0.25rem;
  overflow: hidden;
  transition: all 0.3s ease;
  position: relative;
}

.stake-input-group:focus-within {
  border-color: var(--accent);
  box-shadow: 0 0 0 0.2rem rgba(238, 154, 27, 0.25);
  transform: translateY(-1px);
}

.stake-input-group .input-group-text {
  background: transparent;
  border: none;
  color: var(--accent);
  font-weight: 700;
  font-size: 1rem;
  padding: 0.375rem 0.75rem;
  display: flex;
  align-items: center;
}

.stake-input-group .form-control {
  background: transparent;
  border: none;
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  padding: 0.375rem 0.75rem;
  text-align: center;
}

.stake-input-group .form-control:focus {
  background: transparent;
  border: none;
  box-shadow: none;
  color: #fff;
}

.stake-input-group .form-control::placeholder {
  color: var(--muted);
  opacity: 0.7;
}

.stake-max-btn {
  background: linear-gradient(135deg, var(--accent), #d68715);
  border: none;
  color: #000;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.375rem 0.75rem;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.stake-max-btn:hover {
  background: linear-gradient(135deg, #d68715, var(--accent));
  color: #000;
  transform: scale(1.05);
}

.stake-max-btn:active {
  transform: scale(0.98);
}

/* Flash highlight on betslip change */
@keyframes flashAccent {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(238, 154, 27, 0);
    background-color: transparent;
  }

  20%,
  60% {
    box-shadow: 0 0 0 4px rgba(238, 154, 27, 0.35),
      0 0 18px 4px rgba(238, 154, 27, 0.45);
    background-color: rgba(238, 154, 27, 0.1);
  }

  40%,
  80% {
    box-shadow: 0 0 0 2px rgba(238, 154, 27, 0.25),
      0 0 10px 2px rgba(238, 154, 27, 0.35);
    background-color: rgba(238, 154, 27, 0.06);
  }
}

.highlight-flash {
  animation: flashAccent 2s ease-in-out;
}

/* Accent Tabs styling */
.accent-tabs .nav-link {
  color: var(--muted);
  border: none;
  position: relative;
  font-weight: 600;
  padding: 0.5rem 1rem;
}

.accent-tabs .nav-link:hover {
  color: var(--accent);
}

.accent-tabs .nav-link.active {
  color: #000;
  background: var(--accent);
  border-radius: 0.35rem;
}

.accent-tabs .nav-link.active::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 8px solid var(--accent);
}

/* Fixed width for side columns */
@media (min-width: 992px) {
  .col-fixed-300 {
    flex: 0 0 300px;
    max-width: 300px;
  }
}

.nav-tabs {
  border-bottom: none;
}

/* Bahislerim Sekmesi Stilleri */
.bet-card {
  background: var(--bg-list);
  border: 1px solid var(--line);
  border-radius: 0.5rem;
  padding: 0.75rem;
  margin-bottom: 0.75rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

@media (min-width: 768px) {
  .bet-card {
    padding: 1rem;
    margin-bottom: 1rem;
  }

  .bet-card:hover {
    background: #22252a;
    border-color: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(238, 154, 27, 0.1);
  }
}

.bet-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: var(--accent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

@media (min-width: 768px) {
  .bet-card::before {
    width: 4px;
  }

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

.bet-status {
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
  padding: 0.2rem 0.5rem;
  border-radius: 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

@media (min-width: 768px) {
  .bet-status {
    gap: 0.25rem;
    padding: 0.25rem 0.75rem;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
  }
}

.bet-status.status-beklemede {
  background: rgba(255, 193, 7, 0.15);
  color: #ffc107;
  border: 1px solid rgba(255, 193, 7, 0.3);
}

.bet-status.status-kazandi {
  background: rgba(40, 167, 69, 0.15);
  color: #28a745;
  border: 1px solid rgba(40, 167, 69, 0.3);
}

.bet-status.status-kaybetti {
  background: rgba(220, 53, 69, 0.15);
  color: #dc3545;
  border: 1px solid rgba(220, 53, 69, 0.3);
}

.bet-status.status-iptal {
  background: rgba(108, 117, 125, 0.15);
  color: #6c757d;
  border: 1px solid rgba(108, 117, 125, 0.3);
}

.bet-info-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
}

.bet-info-label {
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 500;
}

.bet-info-value {
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
}

.bet-info-value.highlight {
  color: var(--accent);
  font-size: 1.1rem;
}

.bet-header {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

@media (min-width: 768px) {
  .bet-header {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
  }
}

.bet-header-left {
  flex: 1;
}

.bet-header-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-top: -0.25rem;
}

@media (min-width: 768px) {
  .bet-header-right {
    flex-direction: column;
    align-items: flex-end;
    gap: 0.5rem;
    margin-top: 0;
  }
}

.bet-event-name {
  font-size: 0.9rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.35rem;
  line-height: 1.2;
}

@media (min-width: 768px) {
  .bet-event-name {
    margin-bottom: 0.25rem;
    line-height: 1.3;
  }
}

.bet-info-row-mobile {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  flex-wrap: nowrap;
}

@media (min-width: 768px) {
  .bet-info-row-mobile {
    gap: 1rem;
  }
}

.bet-coupon-code {
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
  background: rgba(238, 154, 27, 0.1);
  color: var(--accent);
  padding: 0.15rem 0.4rem;
  border-radius: 0.25rem;
  font-size: 0.7rem;
  font-weight: 600;
  font-family: monospace;
  letter-spacing: 0.3px;
  white-space: nowrap;
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .bet-coupon-code {
    gap: 0.5rem;
    padding: 0.25rem 0.75rem;
    font-size: 0.85rem;
    letter-spacing: 1px;
  }
}

.bet-date {
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
  color: var(--muted);
  font-size: 0.7rem;
  white-space: nowrap;
  margin-left: auto;
}

@media (min-width: 768px) {
  .bet-date {
    gap: 0.5rem;
    font-size: 0.85rem;
  }
}

.bet-details-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--line);
}

@media (min-width: 768px) {
  .bet-details-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
    padding-top: 1rem;
  }
}

.bet-detail-item {
  text-align: center;
  padding: 0.25rem;
}

@media (min-width: 768px) {
  .bet-detail-item {
    padding: 0;
  }
}

.bet-detail-label {
  color: var(--muted);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  margin-bottom: 0.15rem;
  line-height: 1;
}

@media (min-width: 768px) {
  .bet-detail-label {
    font-size: 0.75rem;
    letter-spacing: 0.5px;
    margin-bottom: 0.25rem;
  }
}

.bet-detail-value {
  color: #fff;
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.2;
}

@media (min-width: 768px) {
  .bet-detail-value {
    font-size: 1.1rem;
  }
}

.bet-detail-value.accent {
  color: var(--accent);
}

.bet-detail-value.success {
  color: #28a745;
}

.bet-detail-value.danger {
  color: #dc3545;
}

/* Empty state styling */
.empty-bets {
  text-align: center;
  padding: 3rem 1rem;
  color: var(--muted);
}

.empty-bets-icon {
  font-size: 4rem;
  margin-bottom: 1rem;
  opacity: 0.3;
}

.empty-bets-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #fff;
}

.empty-bets-text {
  font-size: 0.95rem;
}

/* Filter buttons */
.bet-filters {
  display: flex;
  gap: 0.25rem;
  flex-wrap: nowrap;
  overflow-x: auto;
  padding-bottom: 0.25rem;
  margin-bottom: 0.3rem;
  -webkit-overflow-scrolling: touch;
}

@media (min-width: 768px) {
  .bet-filters {
    gap: 0.5rem;
    margin-bottom: 0.3rem;
    flex-wrap: wrap;
    overflow-x: visible;
  }
}

.bet-filter-btn {
  padding: 0.4rem 0.6rem;
  background: var(--bg-list);
  border: 1px solid var(--line);
  color: var(--muted);
  border-radius: 0.25rem;
  font-size: 0.75rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

@media (min-width: 768px) {
  .bet-filter-btn {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
  }
}

.bet-filter-btn i {
  font-size: 0.7rem;
}

@media (min-width: 768px) {
  .bet-filter-btn i {
    font-size: 0.85rem;
  }
}

.bet-filter-btn:hover {
  background: var(--bg-panel);
  color: #fff;
  border-color: var(--accent);
}

.bet-filter-btn.active {
  background: var(--accent);
  color: #000;
  border-color: var(--accent);
}

/* Loading animation */
@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.5;
  }
}

.loading-skeleton {
  background: var(--bg-list);
  border-radius: 0.5rem;
  height: 150px;
  margin-bottom: 1rem;
  animation: pulse 1.5s ease-in-out infinite;
}

/* Pagination Styles */
.pagination {
  --bs-pagination-bg: var(--bg-list);
  --bs-pagination-border-color: var(--line);
  --bs-pagination-hover-bg: var(--bg-panel);
  --bs-pagination-hover-border-color: var(--accent);
  --bs-pagination-focus-bg: var(--bg-panel);
  --bs-pagination-active-bg: var(--accent);
  --bs-pagination-active-border-color: var(--accent);
  --bs-pagination-disabled-bg: var(--bg-list);
  --bs-pagination-disabled-border-color: var(--line);
}

.pagination .page-link {
  color: var(--muted);
  background-color: var(--bg-list);
  border: 1px solid var(--line);
  padding: 0.375rem 0.75rem;
  transition: all 0.3s ease;
}

.pagination .page-link:hover {
  color: #fff;
  background-color: var(--bg-panel);
  border-color: var(--accent);
}

.pagination .page-item.active .page-link {
  color: #000;
  background-color: var(--accent);
  border-color: var(--accent);
  font-weight: 600;
}

.pagination .page-item.disabled .page-link {
  color: #666;
  background-color: var(--bg-list);
  border-color: var(--line);
  opacity: 0.5;
}

/* Filter count badges */
.filter-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 16px;
  height: 16px;
  padding: 0 4px;
  margin-left: 2px;
  background: rgba(238, 154, 27, 0.2);
  color: var(--accent);
  border-radius: 8px;
  font-size: 0.65rem;
  font-weight: 700;
}

@media (min-width: 768px) {
  .filter-count {
    min-width: 20px;
    height: 20px;
    padding: 0 6px;
    margin-left: 4px;
    border-radius: 10px;
    font-size: 0.75rem;
  }
}

.bet-filter-btn.active .filter-count {
  background: rgba(0, 0, 0, 0.3);
  color: #000;
}

/* Refresh indicator */
.refresh-indicator {
  color: var(--accent);
  font-size: 1.1rem;
}

/* Refresh countdown */
.refresh-countdown {
  color: var(--accent);
  font-size: 0.9rem;
  min-width: 40px;
  text-align: center;
}

.refresh-countdown small {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

/* Auto refresh switch */
.form-check-input:checked {
  background-color: var(--accent);
  border-color: var(--accent);
}

.form-check-input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 0.25rem rgba(238, 154, 27, 0.25);
}

/* Smooth transitions for list updates */
.bet-card {
  animation: fadeIn 0.3s ease-in;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Pagination info text */
.pagination-info {
  font-size: 0.9rem;
}

.fa,
.fa-brands,
.fa-duotone,
.fa-light,
.fa-regular,
.fa-solid,
.fa-thin,
.fab,
.fad,
.fal,
.far,
.fas,
.fat {
  line-height: 0;
}

/* Maçın Hikayesi Stilleri */
.match-story-card {
  background: var(--bg-panel);
  border: 2px solid var(--line);
  border-radius: 0.75rem;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}

.match-story-card:hover {
  border-color: var(--accent);
  box-shadow: 0 4px 20px rgba(238, 154, 27, 0.15);
}

.match-header {
  text-align: center;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line);
}

.match-teams {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  margin-bottom: 0.75rem;
}

.team-name {
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
}

.vs-separator {
  color: var(--accent);
  font-weight: 700;
  font-size: 1rem;
}

.match-info {
  display: flex;
  justify-content: center;
  gap: 2rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.match-info-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.prediction-section {
  margin-bottom: 0.9rem;
}

.prediction-question {
  color: #fff;
  font-weight: 600;
  margin-bottom: 0.2rem;
  font-size: 0.7rem;
}

.prediction-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  gap: 0.5rem;
}

.prediction-option {
  background: var(--bg-list);
  border: 2px solid var(--line);
  border-radius: 0.5rem;
  padding: 0.2rem;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  color: var(--muted);
  font-weight: 500;
  position: relative;
  overflow: hidden;
}

.prediction-option:hover {
  background: #22252a;
  border-color: var(--accent);
  color: #fff;
  transform: translateY(-2px);
}

.prediction-option.selected {
  background: var(--accent);
  border-color: var(--accent);
  color: #000;
  font-weight: 700;
}

.prediction-option.disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}

.prediction-option.selected::after {
  content: "✓";
  position: absolute;
  right: 0.5rem;
  font-size: 1rem;
  color: #000;
}

.match-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}

.btn-save-predictions {
  background: var(--accent);
  color: #000;
  border: none;
  padding: 0.75rem 2rem;
  border-radius: 0.5rem;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-save-predictions:hover {
  background: #d68715;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(238, 154, 27, 0.3);
}

.btn-save-predictions:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

.match-completed-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(40, 167, 69, 0.15);
  color: #28a745;
  border: 1px solid rgba(40, 167, 69, 0.3);
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  font-size: 0.85rem;
  font-weight: 600;
  margin-top: 0.5rem;
}

.empty-matches {
  text-align: center;
  padding: 3rem 1rem;
  color: var(--muted);
}

.empty-matches-icon {
  font-size: 4rem;
  margin-bottom: 1rem;
  opacity: 0.3;
}

.empty-matches-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #fff;
}

.empty-matches-text {
  font-size: 0.95rem;
}

@media (max-width: 768px) {
  .match-teams {
    flex-direction: column;
    gap: 0.5rem;
  }

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

  .match-info {
    flex-direction: column;
    gap: 0.5rem;
    align-items: center;
  }

  .prediction-options {
    grid-template-columns: 1fr 1fr;
  }
}
.alert-success {
  color: #0f5132;
  background-color: #0f513221;
  border-color: #ee9a1b;
  font-weight: bold;
  font-size: 0.8rem
}

/* Özel Oran Bilgilendirme Bölümü */
.special-odds-info {
  background: var(--bg-panel);
  border: 2px solid var(--line);
  border-radius: 1rem;
  padding: 2rem;
  margin: 1rem 0;
}

.info-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 2px solid var(--line);
}

.info-header i {
  font-size: 2.5rem;
  color: var(--accent);
  animation: pulse 2s infinite;
}

.info-header h4 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.info-content {
  color: #f0f0f0;
}

.info-section {
  margin-bottom: 2rem;
}

.info-section h5 {
  color: #fff;
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.info-section h5 i {
  color: var(--accent);
  font-size: 1.1rem;
}

.info-section p {
  color: var(--muted);
  line-height: 1.8;
  font-size: 1rem;
  text-align: justify;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.info-card {
  background: var(--bg-list);
  border: 1px solid var(--line);
  border-radius: 0.75rem;
  padding: 1.5rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.info-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), #d68715);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(238, 154, 27, 0.15);
  border-color: var(--accent);
}

.info-card:hover::before {
  opacity: 1;
}

.info-card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: rgba(238, 154, 27, 0.1);
  border-radius: 50%;
  margin-bottom: 1rem;
}

.info-card-icon i {
  font-size: 1.5rem;
  color: var(--accent);
}

.info-card-content h6 {
  color: #fff;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.info-card-content p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

.reference-list {
  list-style: none;
  padding: 0;
  margin-top: 0.75rem;
}

.reference-list li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--line);
}

.reference-list li:last-child {
  border-bottom: none;
}

.reference-list a {
  color: var(--accent);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}

.reference-list a:hover {
  color: #d68715;
  transform: translateX(5px);
}

.reference-list a i {
  font-size: 0.85rem;
}

.info-features {
  background: rgba(238, 154, 27, 0.05);
  border: 1px solid rgba(238, 154, 27, 0.2);
  border-radius: 0.75rem;
  padding: 1.5rem;
  margin: 2rem 0;
}

.info-features h5 {
  color: var(--accent);
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.features-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  background: var(--bg-panel);
  border-radius: 0.5rem;
  transition: all 0.3s ease;
}

.feature-item:hover {
  background: var(--bg-list);
  transform: translateX(5px);
}

.feature-item i {
  color: #28a745;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.feature-item span {
  color: #f0f0f0;
  font-size: 0.95rem;
  line-height: 1.4;
}

.info-footer {
  margin-top: 2rem;
}

.info-footer .alert {
  background: rgba(23, 162, 184, 0.1);
  border: 1px solid rgba(23, 162, 184, 0.3);
  color: #17a2b8;
  padding: 1rem 1.25rem;
  border-radius: 0.5rem;
}

.info-footer .alert i {
  font-size: 1.2rem;
  margin-right: 0.75rem;
}

.info-footer .alert strong {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.info-footer .alert p {
  margin: 0;
  color: #b0b5bb;
  line-height: 1.6;
}

/* Responsive düzenlemeler */
@media (max-width: 768px) {
  .special-odds-info {
    padding: 1.5rem 1rem;
  }

  .info-header {
    flex-direction: column;
    gap: 0.75rem;
  }

  .info-header i {
    font-size: 2rem;
  }

  .info-header h4 {
    font-size: 1.5rem;
  }

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

  .info-card {
    padding: 1.25rem;
  }

  .features-list {
    grid-template-columns: 1fr;
  }

  .feature-item {
    padding: 0.5rem;
  }
}

/* Animasyonlar */
@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.special-odds-info {
  animation: slideInUp 0.6s ease-out;
}

.info-card {
  animation: slideInUp 0.8s ease-out;
  animation-fill-mode: both;
}

.info-card:nth-child(1) { animation-delay: 0.1s; }
.info-card:nth-child(2) { animation-delay: 0.2s; }
.info-card:nth-child(3) { animation-delay: 0.3s; }
.info-card:nth-child(4) { animation-delay: 0.4s; }
.info-card:nth-child(5) { animation-delay: 0.5s; }
.info-card:nth-child(6) { animation-delay: 0.6s; }

/* No Events Banner - Açık Etkinlik Bulunmuyor */
.no-events-banner {
  background: linear-gradient(135deg, rgba(238, 154, 27, 0.05) 0%, rgba(238, 154, 27, 0.02) 100%);
  border: 2px solid rgba(238, 154, 27, 0.2);
  border-radius: 1rem;
  padding: 3rem 2rem;
  margin: 2rem 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.no-events-banner::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(238, 154, 27, 0.1) 0%, transparent 70%);
  animation: rotateGlow 20s linear infinite;
}

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

.no-events-animation {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 200px;
  height: 200px;
  pointer-events: none;
}

.pulse-circle {
  position: absolute;
  width: 100%;
  height: 100%;
  border: 2px solid rgba(238, 154, 27, 0.3);
  border-radius: 50%;
  animation: pulseExpand 3s ease-out infinite;
}

.pulse-circle:nth-child(1) {
  animation-delay: 0s;
}

.pulse-circle:nth-child(2) {
  animation-delay: 1s;
}

.pulse-circle:nth-child(3) {
  animation-delay: 2s;
}

@keyframes pulseExpand {
  0% {
    transform: scale(0);
    opacity: 1;
  }
  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}

.no-events-icon {
  position: relative;
  z-index: 2;
  margin-bottom: 1.5rem;
}

.no-events-icon i {
  font-size: 4rem;
  color: var(--accent);
  animation: hourglass 2s ease-in-out infinite;
}

@keyframes hourglass {
  0%, 100% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(180deg);
  }
}

.no-events-content {
  position: relative;
  z-index: 2;
}

.no-events-content h5 {
  color: #fff;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  background: linear-gradient(90deg, var(--accent), #d68715);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.no-events-content p {
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.countdown-placeholder {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(238, 154, 27, 0.1);
  border: 1px solid rgba(238, 154, 27, 0.3);
  border-radius: 2rem;
  padding: 0.75rem 1.5rem;
  margin-top: 1rem;
  transition: all 0.3s ease;
}

.countdown-placeholder:hover {
  background: rgba(238, 154, 27, 0.15);
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(238, 154, 27, 0.2);
}

.countdown-placeholder i {
  color: var(--accent);
  font-size: 1.2rem;
  animation: clockTick 1s steps(12) infinite;
}

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

.countdown-placeholder span {
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
}

/* Responsive düzenlemeler */
@media (max-width: 768px) {
  .no-events-banner {
    padding: 2rem 1rem;
  }

  .no-events-animation {
    width: 150px;
    height: 150px;
  }

  .no-events-icon i {
    font-size: 3rem;
  }

  .no-events-content h5 {
    font-size: 1.4rem;
  }

  .no-events-content p {
    font-size: 1rem;
  }

  .countdown-placeholder {
    padding: 0.6rem 1.2rem;
  }

  .countdown-placeholder span {
    font-size: 0.85rem;
  }
}

/* Dark mode uyumlu animasyonlar */
@media (prefers-color-scheme: dark) {
  .no-events-banner {
    background: linear-gradient(135deg, rgba(238, 154, 27, 0.08) 0%, rgba(238, 154, 27, 0.03) 100%);
  }
}

/* Custom Scrollbar Styles */
/* Webkit browsers (Chrome, Safari, Edge) */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-panel);
  border-radius: 10px;
  margin: 5px;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--accent), #d68715);
  border-radius: 10px;
  border: 2px solid var(--bg-panel);
  transition: all 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #d68715, var(--accent));
  border-width: 1px;
  box-shadow: 0 0 10px rgba(238, 154, 27, 0.3);
}

::-webkit-scrollbar-thumb:active {
  background: var(--accent);
  box-shadow: 0 0 15px rgba(238, 154, 27, 0.5);
}

/* Scrollbar corner */
::-webkit-scrollbar-corner {
  background: var(--bg-panel);
}

/* Firefox */
* {
  scrollbar-width: thin;
  scrollbar-color: var(--accent) var(--bg-panel);
}

/* Özel scroll alanları için ince scrollbar */
.scroll-y::-webkit-scrollbar,
.info-content::-webkit-scrollbar,
.bet-filters::-webkit-scrollbar,
#myBetsList::-webkit-scrollbar,
.special-odds-info::-webkit-scrollbar {
  width: 6px;
}

.scroll-y::-webkit-scrollbar-thumb,
.info-content::-webkit-scrollbar-thumb,
.bet-filters::-webkit-scrollbar-thumb,
#myBetsList::-webkit-scrollbar-thumb,
.special-odds-info::-webkit-scrollbar-thumb {
  background: rgba(238, 154, 27, 0.6);
  border: 1px solid var(--bg-panel);
}

.scroll-y::-webkit-scrollbar-thumb:hover,
.info-content::-webkit-scrollbar-thumb:hover,
.bet-filters::-webkit-scrollbar-thumb:hover,
#myBetsList::-webkit-scrollbar-thumb:hover,
.special-odds-info::-webkit-scrollbar-thumb:hover {
  background: rgba(85, 51, 0, 0.8);
}

/* Horizontal scrollbar için özel stil */
.bet-filters::-webkit-scrollbar {
  height: 4px;
}

.bet-filters::-webkit-scrollbar-track {
  background: transparent;
  margin: 0 10px;
}

/* Modal scrollbar */
.modal-body::-webkit-scrollbar {
  width: 6px;
}

.modal-body::-webkit-scrollbar-track {
  background: var(--bg-list);
}

.modal-body::-webkit-scrollbar-thumb {
  background: rgba(238, 154, 27, 0.5);
  border-radius: 6px;
}

/* Textarea ve input scrollbar */
textarea::-webkit-scrollbar,
input[type="text"]::-webkit-scrollbar,
input[type="number"]::-webkit-scrollbar {
  width: 4px;
  height: 4px;
}

textarea::-webkit-scrollbar-thumb,
input[type="text"]::-webkit-scrollbar-thumb,
input[type="number"]::-webkit-scrollbar-thumb {
  background: rgba(238, 154, 27, 0.4);
  border-radius: 4px;
}

/* Scrollbar animasyonu */
@keyframes scrollPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(238, 154, 27, 0.4);
  }
  70% {
    box-shadow: 0 0 0 5px rgba(238, 154, 27, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(238, 154, 27, 0);
  }
}

/* Scroll göstergesi aktif olduğunda */
*:hover::-webkit-scrollbar-thumb {
  animation: scrollPulse 1.5s infinite;
}

/* Mobil cihazlar için scrollbar gizleme (dokunmatik ekranlar) */
@media (hover: none) and (pointer: coarse) {
  ::-webkit-scrollbar {
    width: 0px;
    height: 0px;
  }
  
  * {
    scrollbar-width: none;
  }
  
  /* iOS için momentum scrolling */
  .scroll-y,
  .info-content,
  .bet-filters,
  #myBetsList {
    -webkit-overflow-scrolling: touch;
  }
}

/* Smooth scroll behavior */
html {
  scroll-behavior: smooth;
}

/* Scroll container'lar için genel stil */
.scrollable {
  overflow-y: auto;
  overflow-x: hidden;
  position: relative;
}

.scrollable-horizontal {
  overflow-x: auto;
  overflow-y: hidden;
  position: relative;
}

/* Scroll fade effect - üst ve alt gradient */
.scroll-fade::before,
.scroll-fade::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 30px;
  pointer-events: none;
  z-index: 10;
}

.scroll-fade::before {
  top: 0;
  background: linear-gradient(to bottom, var(--bg-panel), transparent);
}

.scroll-fade::after {
  bottom: 0;
  background: linear-gradient(to top, var(--bg-panel), transparent);
}

/* Custom scroll indicators */
.scroll-indicator {
  position: absolute;
  right: 2px;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 40px;
  background: rgba(238, 154, 27, 0.2);
  border-radius: 2px;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.scrollable:hover .scroll-indicator {
  opacity: 1;
}

/* Scroll to top button için stil hazırlığı */
.scroll-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1000;
  box-shadow: 0 4px 12px rgba(238, 154, 27, 0.3);
}

.scroll-to-top.show {
  opacity: 1;
  visibility: visible;
}

.scroll-to-top:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(238, 154, 27, 0.4);
}

.scroll-to-top i {
  color: #000;
  font-size: 1.2rem;
}

.match-predictions{
    font-size:0.7rem !important;
}

/*