body {
  padding-top: 80px;
  /*background: #f8fafc;*/
  background: #f2f2f2;
  font-family: 'Inter', sans-serif;

}
/* ===== GLOBAL FONT ===== */
* {
  font-family: 'Inter', sans-serif;
}

.hero {
  min-height: 90vh;
  background: radial-gradient(circle at center, #eafaf1, #ffffff);
}

.text-gradient {
  background: linear-gradient(90deg, #198754, #f1c40f);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stats {
  margin-top: -60px;
}
.resume{
    font-size:11px;
}

.stat-card {
  background: #fff;
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.stat-card i {
  font-size: 30px;
  color: #198754;
}

.services {
  padding: 80px 0;
}

.service-card {
  background: #fff;
  border-radius: 18px;
  padding: 35px;
  height: 100%;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  transition: transform .3s;
}

.service-card:hover {
  transform: translateY(-8px);
}

.service-card i {
  font-size: 32px;
  color: #198754;
  margin-bottom: 15px;
}

/* ANIMATION */
.fade-in {
  animation: fadeInUp 0.8s ease-in-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* CARD */
.prediction-card {
  border-radius: 18px;
  font-size: 16px;
}
.tete{
  font-size: 30px;
}
.image{
  height: 40px;
}

/* DARK MODE */
body.dark {
  background: #0f172a;
  color: #e5e7eb;
  font-size: 24px;

}

body.dark .navbar,
body.dark .card {
  background: #020617 !important;
}

body.dark .table {
  color: #e5e7eb;
}

body.dark .table thead {
  background: #020617;
}

body.dark .btn-outline-secondary {
  color: #e5e7eb;
  border-color: #64748b;
}

.btn {
  position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.btn:hover {
  transform: scale(1.06);
  box-shadow: 0 0 0 4px rgba(25, 135, 84, 0.15),
              0 12px 30px rgba(0, 0, 0, 0.18);
}
.btna-jour{
  background-color: #54db; /* bleu */
    color: white;
    padding: 10px 20px;
    cursor: pointer
}

/* League header */
.league-header {
    background: #e9e9e9;
    padding: 10px;
    font-weight: bold;
    margin-top: 15px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.flag {
    width: 20px;
}

/* Match card */
.match-card {
    background: white;
    padding: 15px;
    margin-top: 8px;
    border-radius: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.team {
    width: 35%;
    display: flex;
    align-items: center;
    gap: 6px;
}

.team img {
    width: 22px;
}

.score {
    text-align: center;
    width: 30%;
}

.score strong {
    font-size: 18px;
}

.status {
    font-size: 12px;
    color: green;
}

.time {
    font-size: 14px;
    color: gray;
}

/* Responsive */
@media (min-width: 768px) {
    .container-fluid {
        max-width: 700px;
        margin: auto;
    }
}
/* DATE NAVIGATION */

.date-nav{
    display:flex;
    gap:10px;
    overflow-x:auto;
    padding:10px;
    background:#fff;
    margin-bottom:10px;
}

.date-item{
    padding:8px 14px;
    background:#f1f1f1;
    border-radius:20px;
    text-decoration:none;
    color:#333;
    font-weight:500;
    white-space:nowrap;
}

.date-item:hover{
    background:#e3e3e3;
}

.active-date{
    background:#28a745;
    color:#fff;
}
.no-match{
    text-align:center;
    padding:40px;
    font-size:18px;
    color:#777;
    background:#fff;
    border-radius:8px;
}



