
    :root {
      --primary-color: #6e00ff;  /* Violet électrique */
      --secondary-color: #00f0ff; /* Cyan néon */
      --dark-color: #0f0f1a;     /* Noir profond */
      --light-color: #f0f0ff;    /* Blanc bleuté */
      --accent-color: #ff00aa;   /* Rose néon */
      --text-color: #e0e0ff;    /* Texte clair */
    }

    .logo {
      max-width: 100%;
      height: auto;
      display: block;
      height: 78px;
    }

    img {
      max-width: 100%;
      height: auto;
      display: block;
    }

    .container {
      padding-left: 15px;
      padding-right: 15px;
      margin-left: auto;
      margin-right: auto;
      max-width: 1140px;
    }

    html {
      scroll-behavior: smooth;
      scroll-padding-top: 80px;
    }

    .nav-links a {
      text-decoration: none;
    }

    body {
      word-wrap: break-word;
      background-color: var(--dark-color);
      color: var(--text-color);
      font-family: 'Rajdhani', 'Segoe UI', sans-serif;
      line-height: 1.7;
      overflow-x: hidden;
      padding-top: 80px;
      scroll-behavior: smooth;
    }

    /* Effet de lumière néon */
    @keyframes neonGlow {
      0%, 100% { text-shadow: 0 0 5px#d8034c, 0 0 10px#d8034c, 0 0 20px#d8034c; }
      50% { text-shadow: 0 0 10px var(--primary-color), 0 0 20px var(--primary-color), 0 0 30px var(--primary-color); }
    }

    /* Header */
    header {
      background: rgba(15, 15, 26, 0.9);
      backdrop-filter: blur(10px);
      border-bottom: 1px solid rgba(110, 0, 255, 0.3);
      box-shadow: 0 0 20px rgba(110, 0, 255, 0.2);
      transition: all 0.3s ease;
    }
    
    header.scrolled {
      background: rgba(15, 15, 26, 0.98);
      box-shadow: 0 5px 20px rgba(110, 0, 255, 0.3);
    }

    /* Navigation */
    .nav-links {
      display: flex;
      align-items: center;
    }
    
    .nav-links a {
      position: relative;
      padding: 5px 0;
      margin: 0 15px;
      color: var(--text-color);
      text-decoration: none;
      transition: all 0.3s;
    }
    
    .nav-links a::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 0;
      height: 2px;
      background: linear-gradient(90deg, var(--primary-color),#d8034c);
      transition: width 0.3s;
    }
    
    .nav-links a:hover {
      color:#d8034c;
    }
    
    .nav-links a:hover::after {
      width: 100%;
    }

    /* Hamburger Menu */
    .hamburger {
      display: none;
      background: transparent;
      border: none;
      cursor: pointer;
      padding: 10px;
      z-index: 1000;
    }
    
    .hamburger-inner {
      width: 30px;
      height: 20px;
      position: relative;
    }
    
    .bar {
      position: absolute;
      height: 3px;
      width: 100%;
      background:#d8034c;
      border-radius: 2px;
      transition: all 0.4s cubic-bezier(0.77, 0.2, 0.05, 1);
    }
    
    .bar-top { top: 0; }
    .bar-mid { top: 50%; transform: translateY(-50%); }
    .bar-bottom { bottom: 0; }
    
    .hamburger.active .bar-top {
      transform: translateY(8px) rotate(45deg);
      background: var(--accent-color);
    }
    
    .hamburger.active .bar-mid {
      opacity: 0;
    }
    
    .hamburger.active .bar-bottom {
      transform: translateY(-8px) rotate(-45deg);
      background: var(--accent-color);
    }

    /* Mobile Menu */
    @media (max-width: 768px) {
      .hamburger {
        display: block;
      }
      
      .nav-links {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: rgba(15, 15, 26, 0.98);
        backdrop-filter: blur(15px);
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding-top: 2rem;
        transition: all 0.6s cubic-bezier(0.86, 0, 0.07, 1);
        z-index: 999;
        border-top: 1px solid rgba(110, 0, 255, 0.3);
      }
      
      .nav-links.active {
        left: 0;
        box-shadow: 0 0 30px rgba(110, 0, 255, 0.3);
      }
      
      .nav-links a {
        margin: 1.5rem 0;
        font-size: 1.3rem;
        padding: 10px 25px;
      }
      
      .nav-links a::before {
        content: ">";
        position: absolute;
        left: 0;
        color: var(--accent-color);
        opacity: 0;
        transition: all 0.3s;
      }
      
      .nav-links a:hover::before {
        opacity: 1;
        left: -10px;
      }
    }

    /* Hero Section */
    .hero {
      background: linear-gradient(135deg, rgba(15, 15, 26, 0.9), rgba(40, 0, 80, 0.7)), 
                  url('/img/banner-billard.jpg') center/cover no-repeat;
      height: 100vh;
      display: flex;
      align-items: center;
      position: relative;
      overflow: hidden;
    }

    .hero::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: radial-gradient(circle at 50% 50%, 
                  transparent 0%, 
                  rgba(110, 0, 255, 0.1) 40%, 
                  transparent 70%);
      animation: pulse 8s infinite alternate;
    }

    @keyframes pulse {
      0% { transform: scale(0.8); opacity: 0.5; }
      100% { transform: scale(1.2); opacity: 0.8; }
    }

    .hero h1 {
      font-size: 4rem;
      font-weight: 700;
      background: linear-gradient(45deg, var(--text-color), #cf0046);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
      margin-bottom: 1.5rem;
      text-shadow: 0 0 10px rgba(0, 240, 255, 0.3);
    }

    /* Bouton cyberpunk */
    .btn-neon {
      display: inline-block;
      padding: 12px 30px;
      background: transparent;
      color:#d8034c;
      border: 2px solid#d8034c;
      border-radius: 0;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 2px;
      position: relative;
      overflow: hidden;
      transition: all 0.3s;
      box-shadow: 0 0 10px rgba(0, 240, 255, 0.3);
    }

    .btn-neon:hover {
      color: var(--dark-color);
      background:#d8034c;
      box-shadow: 0 0 20px#d8034c, 
                  0 0 40px#d8034c;
      transform: translateY(-3px);
    }

    .btn-neon::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, 
                  transparent, 
                  rgba(0, 240, 255, 0.4), 
                  transparent);
      transition: 0.5s;
    }

    .btn-neon:hover::before {
      left: 100%;
    }

    /* Cartes de services */
    .service-card {
      background: rgba(30, 30, 60, 0.5);
      border: 1px solid rgba(110, 0, 255, 0.3);
      border-radius: 10px;
      overflow: hidden;
      transition: all 0.3s;
      backdrop-filter: blur(5px);
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }

    .service-card:hover {
      transform: translateY(-10px);
      border-color:#d8034c;
      box-shadow: 0 10px 25px rgba(0, 240, 255, 0.2);
    }

    .service-img {
      height: 200px;
      width: 100%;
      overflow: hidden;
      position: relative;
    }

    .service-img::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 5px;
      background: linear-gradient(90deg, var(--primary-color),#d8034c);
    }

    .service-content {
      padding: 1.5rem;
    }

    .service-content h3 {
      color:#d8034c;
      margin-bottom: 1rem;
      font-size: 1.5rem;
    }

    /* Icônes stylisées */
    .icon-box {
      width: 60px;
      height: 60px;
      background: rgba(110, 0, 255, 0.2);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 1rem;
      border: 2px solid var(--primary-color);
      transition: all 0.3s;
    }

    .icon-box i {
      font-size: 1.5rem;
      color:#d8034c;
    }

    /* Section Contact */
    .contact-form .form-control {
      background: rgba(30, 30, 60, 0.5);
      border: 1px solid rgba(110, 0, 255, 0.3);
      color: var(--text-color);
      border-radius: 0;
    }

    .contact-form .form-control:focus {
      background: rgba(30, 30, 60, 0.8);
      border-color:#d8034c;
      box-shadow: 0 0 10px rgba(0, 240, 255, 0.3);
      color: var(--text-color);
    }

    /* Footer avec effet de vague */
    footer {
      position: relative;
      overflow: hidden;
      padding: 3rem 0 1rem;
    }

    footer::before {
      content: '';
      position: absolute;
      top: -50px;
      left: 0;
      width: 100%;
      height: 50px;
      background-size: cover;
    }

    .social-icons a {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 40px;
      height: 40px;
      background: rgba(110, 0, 255, 0.2);
      border-radius: 50%;
      margin: 0 10px;
      color:#d8034c;
      transition: all 0.3s;
      border: 1px solid var(--primary-color);
    }

    .social-icons a:hover {
      background: var(--primary-color);
      color: white;
      transform: translateY(-5px);
      box-shadow: 0 5px 15px rgba(110, 0, 255, 0.4);
    }

    /* Styles spécifiques billard */
    .price {
      color:#d8034c;
      font-weight: bold;
    }

    .service-card ul {
      padding-left: 20px;
    }

    .service-card ul li {
      margin-bottom: 8px;
      position: relative;
    }

    .service-card ul li:before {
      content: "•";
      color:#d8034c;
      position: absolute;
      left: -15px;
    }

    .table-features {
      display: flex;
      justify-content: space-between;
      margin-top: 15px;
    }

    .table-feature {
      text-align: center;
      flex: 1;
    }

    .table-feature i {
      font-size: 1.5rem;
      color:#d8034c;
      margin-bottom: 5px;
    }

    /* Animation des éléments */
    [data-aos="neon-glow"] {
      animation: neonGlow 3s infinite alternate;
    }

    /* Responsive Design */
    @media (max-width: 992px) {
      .hero h1 {
        font-size: 3rem;
      }
    }

    @media (max-width: 768px) {
      .hero h1 {
        font-size: 2.5rem;
      }
      
      .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(15, 15, 26, 0.95);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: all 0.5s ease;
        z-index: 99;
      }

      .nav-links.active {
        left: 0;
      }

      .nav-links li {
        margin: 1.5rem 0;
      }

      .hamburger {
        display: block;
        z-index: 100;
      }
    }

    @media (max-width: 576px) {
      .hero h1 {
        font-size: 2rem;
      }
      
      .btn-neon {
        padding: 10px 20px;
        font-size: 0.9rem;
      }
    }
  