:root {
    --primary-blue: #003da5;
    --secondary-blue: #005bea;
    --primary-red: #ce1126;
    --secondary-red: #e63946;
    --accent-yellow: #ffd700;
    --dark-gray: #212529;
    --light-gray: #f8f9fa;
  }
  
  body {
    font-family: 'Roboto', sans-serif;
    color: #333;
    background-color: #f4f4f4;
  }
  
  h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
  }
  
  .navbar {
    background-color: var(--primary-blue);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 0.5rem 1rem;
  }
  
  .navbar-brand {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: white;
  }
  
  .navbar-brand span {
    color: var(--accent-yellow);
  }
  
  .nav-link {
    font-weight: 500;
    color: white !important;
    margin: 0 5px;
    position: relative;
    padding: 10px 15px !important;
  }
  
  .nav-link:hover {
    color: var(--accent-yellow) !important;
  }
  
  .active-link {
    color: var(--accent-yellow) !important;
    font-weight: bold;
  }
  
  .dropdown-menu {
    border: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-radius: 0.5rem;
  }
  
  .dropdown-item:hover {
    background-color: var(--primary-blue);
    color: white;
  }
  
  .hero-section {
    background: linear-gradient(rgba(0, 61, 165, 0.7), rgba(206, 17, 38, 0.7)), url('/api/placeholder/1200/600') no-repeat center center;
    background-size: cover;
    height: 500px;
    display: flex;
    align-items: center;
    color: white;
    position: relative;
  }
  
  .hero-content {
    z-index: 1;
    max-width: 800px;
  }
  
  .hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  }
  
  .hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
  }
  
  .btn-primary {
    background-color: var(--primary-red);
    border-color: var(--primary-red);
    padding: 10px 25px;
    font-weight: 500;
    border-radius: 30px;
    transition: all 0.3s ease;
  }
  
  .btn-primary:hover {
    background-color: var(--secondary-red);
    border-color: var(--secondary-red);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(230, 57, 70, 0.4);
  }
  
  .section-title {
    position: relative;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    color: var(--primary-blue);
  }
  
  .section-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 70px;
    height: 3px;
    background-color: var(--primary-red);
  }
  
  .news-card {
    border: none;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
  }
  
  .news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  }
  
  .news-card-img {
    height: 200px;
    object-fit: cover;
  }
  
  .news-card .card-body {
    padding: 1.5rem;
  }
  
  .news-card .card-title {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--dark-gray);
    font-weight: 700;
  }
  
  .news-card .card-text {
    color: #6c757d;
    margin-bottom: 1rem;
  }
  
  .news-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #adb5bd;
    font-size: 0.85rem;
  }
  
  .news-category {
    color: white;
    background-color: var(--primary-red);
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 0.75rem;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.5px;
  }
  
  .news-category.football {
    background-color: var(--primary-blue);
  }
  
  .news-category.basketball {
    background-color: var(--secondary-red);
  }
  
  .news-category.handball {
    background-color: #28a745;
  }
  
  .fixture-card {
    border: none;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 20px;
    overflow: hidden;
  }
  
  .fixture-header {
    background-color: var(--primary-blue);
    color: white;
    padding: 15px 20px;
    font-weight: 500;
  }
  
  .fixture-body {
    padding: 20px;
  }
  
  .match {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #e9ecef;
  }
  
  .match:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
  }
  
  .team {
    display: flex;
    align-items: center;
    flex: 1;
  }
  
  .team.home {
    justify-content: flex-end;
    text-align: right;
  }
  
  .team.away {
    justify-content: flex-start;
    text-align: left;
  }
  
  .team-logo {
    width: 30px;
    height: 30px;
    margin: 0 10px;
  }
  
  .score {
    font-weight: 700;
    padding: 5px 10px;
    background-color: #f8f9fa;
    border-radius: 5px;
    margin: 0 10px;
  }
  
  .interview-card {
    display: flex;
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
  }
  
  .interview-img {
    flex: 0 0 200px;
    background-size: cover;
    background-position: center;
  }
  
  .interview-content {
    padding: 20px;
    flex: 1;
  }
  
  .interview-title {
    color: var(--primary-blue);
    margin-bottom: 10px;
  }
  
  .interview-meta {
    color: #6c757d;
    font-size: 0.85rem;
    margin-bottom: 10px;
  }
  
  .table-standings {
    width: 100%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border-radius: 10px;
    overflow: hidden;
  }
  
  .table-standings th {
    background-color: var(--primary-blue);
    color: white;
    padding: 12px 15px;
    text-align: center;
  }
  
  .table-standings td {
    padding: 12px 15px;
    text-align: center;
  }
  
  .table-standings tr:nth-child(even) {
    background-color: #f2f2f2;
  }
  
  .table-standings tr:hover {
    background-color: #e9ecef;
  }
  
  .sidebar-title {
    color: var(--primary-blue);
    padding-bottom: 10px;
    margin-bottom: 20px;
    border-bottom: 2px solid var(--primary-red);
    font-size: 1.25rem;
  }

  /* Sidebar Widget Styles */
  .sidebar-widget {
    background: white;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  }

  .sidebar-widget .widget-title {
    color: var(--primary-blue);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-red);
    display: flex;
    align-items: center;
  }

  .sidebar-widget .widget-title i {
    color: var(--primary-red);
  }

  .sidebar-widget ul li {
    transition: background-color 0.2s ease;
  }

  .sidebar-widget ul li:hover {
    background-color: #f8f9fa;
    margin-left: -10px;
    margin-right: -10px;
    padding-left: 10px;
    padding-right: 10px;
    border-radius: 6px;
  }

  .sidebar-widget .badge {
    font-weight: 600;
  }

  .sidebar-widget .btn-outline-primary {
    border-radius: 20px;
    font-size: 0.85rem;
    padding: 5px 12px;
    transition: all 0.3s ease;
  }

  .sidebar-widget .btn-outline-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 3px 8px rgba(0, 61, 165, 0.2);
  }
  
  .popular-news {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #e9ecef;
  }
  
  .popular-news:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
  }
  
  .popular-news a {
    color: var(--dark-gray);
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
  }
  
  .popular-news a:hover {
    color: var(--primary-red);
  }
  
  .social-icons {
    display: flex;
    gap: 10px;
  }
  
  .social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--primary-blue);
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
  }
  
  .social-icon:hover {
    background-color: var(--primary-red);
    transform: translateY(-3px);
  }
  
  .footer {
    background-color: var(--dark-gray);
    color: white;
    padding: 50px 0 20px;
  }
  
  .footer-title {
    color: white;
    margin-bottom: 20px;
    font-size: 1.2rem;
  }
  
  .footer-links {
    list-style: none;
    padding-left: 0;
  }
  
  .footer-links li {
    margin-bottom: 10px;
  }
  
  .footer-links a {
    color: #adb5bd;
    text-decoration: none;
    transition: all 0.3s ease;
  }
  
  .footer-links a:hover {
    color: var(--accent-yellow);
  }
  
  .copyright {
    background-color: #1a1d20;
    padding: 15px 0;
    color: #6c757d;
    text-align: center;
  }
  
  /* Responsive adjustments */
  @media (max-width: 991px) {
    .hero-section {
      height: 400px;
    }
    
    .hero-title {
      font-size: 2.5rem;
    }
    
    .interview-img {
      flex: 0 0 150px;
    }
  }
  
  @media (max-width: 767px) {
    .hero-section {
      height: 350px;
    }
    
    .hero-title {
      font-size: 2rem;
    }
    
    .hero-subtitle {
      font-size: 1.2rem;
    }
    
    .interview-card {
      flex-direction: column;
    }
    
    .interview-img {
      flex: 0 0 200px;
      height: 200px;
    }
  }
  
  /* Animation classes */
  .animated-card {
    transition: all 0.3s ease;
  }
  
  .animated-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  }
  
  /* Feature tag */
  .feature-tag {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--accent-yellow);
    color: var(--dark-gray);
    padding: 5px 10px;
    border-radius: 5px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.5px;
  }
  
  /* Breaking news ticker */
  .breaking-news {
    background-color: var(--primary-red);
    color: white;
    padding: 4px 0;
    overflow: hidden;
  }
  
  .breaking-news-label {
    background-color: var(--accent-yellow);
    color: var(--dark-gray);
    padding: 2px 8px; /* Réduit */
    margin-right: 15px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.75rem; /* Réduit de 0.8rem */
    letter-spacing: 0.5px;
    border-radius: 4px;
  }
  
  .ticker-wrap {
    width: 100%;
    overflow: hidden;
    height: 1.5rem;
  }

  .ticker {
    display: flex;
    align-items: center;
    width: fit-content;
    animation: ticker-scroll linear infinite;
  }

  .ticker:hover {
    animation-play-state: paused;
  }

  .ticker-item {
    flex-shrink: 0;
    padding: 0 3rem;
    color: white;
    text-decoration: none;
    font-size: 0.85rem;
    white-space: nowrap;
  }

  @keyframes ticker-scroll {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(-50%);
    }
  }
  

  /* Navigation sticky améliorée */
#main-navbar {
  transition: all 0.3s ease;
}

#main-navbar.scrolled {
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

#main-navbar.scrolled .navbar-brand {
  transform: scale(0.9);
  transform-origin: left center;
}

  /* Styles améliorés pour la section commentaires */
  .comments-section {
    margin: 40px 0;
    background-color: #f8f9fa;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
  }
  
  .comments-header {
    background-color: #0066cc;
    color: white;
    padding: 15px 25px;
    border-radius: 12px 12px 0 0;
  }
  
  .comments-header h3 {
    margin: 0;
    font-size: 1.4rem;
    font-weight: 600;
    display: flex;
    align-items: center;
  }
  
  .comments-intro {
    margin: 5px 0 0;
    opacity: 0.9;
    font-size: 0.95rem;
  }
  
  .comments-container {
    padding: 25px;
  }
  
  .comments-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #e9ecef;
  }
  
  .comments-count {
    font-weight: 600;
    color: #495057;
  }
  
  #commentsCount {
    font-size: 1.2rem;
    color: #0066cc;
  }
  
  .comments-sort {
    display: flex;
    align-items: center;
  }
  
  .comments-sort label {
    margin-right: 10px;
    color: #6c757d;
    font-size: 0.9rem;
  }
  
  .comments-wrapper {
    min-height: 200px;
    background-color: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
  }
  
  /* Style pour les commentaires Facebook iframe */
  .fb-comments {
    width: 100%;
  }
  
  .fb-comments iframe {
    border-radius: 8px;
    overflow: hidden;
  }
  
  .fb_iframe_widget_fluid_desktop iframe {
    min-width: 100% !important;
  }
  
  .comments-policy {
    margin-top: 15px;
    padding: 10px 15px;
    background-color: #e9ecef;
    border-radius: 8px;
    font-size: 0.85rem;
    color: #495057;
  }
  
  /* Animation pour améliorer l'expérience utilisateur */
  @keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
  }
  
  .comments-section {
    animation: fadeIn 0.6s ease-out;
  }
  
  /* Responsive design */
  @media (max-width: 768px) {
    .comments-options {
      flex-direction: column;
      align-items: flex-start;
      gap: 10px;
    }
    
    .comments-container {
      padding: 15px;
    }
  }

  /* Modifiez la couleur de l'icône du menu hamburger */
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

/* Assurez-vous que la bordure du bouton est également blanche */
.navbar-toggler {
  border-color: rgba(255, 255, 255, 0.5) !important;
}

/* Lorsque le bouton est en focus (cliqué), gardez le contour blanc */
.navbar-toggler:focus {
  box-shadow: 0 0 0 0.25rem rgba(255, 255, 255, 0.25) !important;
}