* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  :root {
    --dark-bg: #1a1a1a;
    --darker-bg: #0f0f0f;
    --sand-color: #d4a574;
    --accent-blue: #64b5f6;
    --text-light: #ffffff;
    --text-muted: #a0a0a0;
  }

  body {
    font-family: "Orbitron", sans-serif;
    background: var(--dark-bg);
    color: var(--text-light);
    overflow-x: hidden;
    scroll-behavior: smooth;
  }

  /* Header avec animation */
  header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(26, 26, 26, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
    padding: 1rem 0;
  }

  nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
  }

  .logo {
    display: flex;
    align-items: center;
    gap: 1rem;
  }

  .logo img {
    width: 45px;
    height: 50px;
    transition: transform 0.3s ease;
  }

  .logo:hover img {
    transform: rotate(360deg) scale(1.1);
  }

  .logo-text {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--sand-color);
  }

  .nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
  }

  .nav-links a {
    color: var(--text-light);
    text-decoration: none;
    position: relative;
    transition: color 0.3s ease;
  }

  .nav-links a:hover {
    color: var(--sand-color);
  }

  .nav-links a::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--sand-color);
    transition: width 0.3s ease;
  }

  .nav-links a:hover::after {
    width: 100%;
  }

  /* Section Hero */
  .hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(
      135deg,
      var(--darker-bg) 0%,
      #2a1810 25%,
      var(--dark-bg) 50%,
      #1a2a3a 75%,
      var(--darker-bg) 100%
    );
    position: relative;
    overflow: hidden;
  }

  .hero-content {
    text-align: center;
    z-index: 2;
    max-width: 800px;
    animation: fadeInUp 1s ease-out;
  }

  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(50px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .hero-logo {
    width: 200px;
    height: 200px;
    margin: 0 auto 2rem;
    animation: float 3s ease-in-out infinite;
  }

  @keyframes float {
    0%,
    100% {
      transform: translateY(0px);
    }
    50% {
      transform: translateY(-20px);
    }
  }

  .hero h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    background: linear-gradient(
      45deg,
      var(--sand-color),
      var(--accent-blue)
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  .hero p {
    font-size: 1.5rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
  }

  .cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background: linear-gradient(
      45deg,
      var(--sand-color),
      var(--accent-blue)
    );
    color: white;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
  }

  .cta-button::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
      90deg,
      transparent,
      rgba(255, 255, 255, 0.2),
      transparent
    );
    transition: left 0.5s;
  }

  .cta-button:hover::before {
    left: 100%;
  }

  .cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 165, 116, 0.3);
  }

  /* Sections */
  section {
    padding: 5rem 0;
    max-width: 1200px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
  }

  section.visible {
    opacity: 1;
    transform: translateY(0);
  }

  .section-title {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--sand-color);
    position: relative;
  }

  .section-title::after {
    content: "";
    display: block;
    width: 100px;
    height: 4px;
    background: linear-gradient(
      45deg,
      var(--sand-color),
      var(--accent-blue)
    );
    margin: 1rem auto;
    border-radius: 2px;
  }

  .apropos-content {
    text-align: left;
    color: var(--text-muted);
    margin: 50px 50px;
    width: 45%;
    display: inline;
  }

  .apropos-content p {
    margin-bottom: 1.5rem;
    text-align: justify;
    font-size: 1.2rem;
  }

  /* Cards */
  .cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 0 2rem;
  }

  .card {
    background: var(--darker-bg);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid rgba(212, 165, 116, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
  }

  .card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
      135deg,
      rgba(212, 165, 116, 0.1) 0%,
      rgba(100, 181, 246, 0.1) 100%
    );
    opacity: 0;
    transition: opacity 0.3s ease;
  }

  .card:hover::before {
    opacity: 1;
  }

  .card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: var(--sand-color);
  }

  .card-content {
    position: relative;
    z-index: 2;
  }

  .card h3 {
    color: var(--sand-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
  }

  .card p {
    color: var(--text-muted);
    line-height: 1.6;
  }

  /* Gaming elements */
  .gaming-icons {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 3rem 0;
  }

  .gaming-icon {
    width: 80px;
    height: 80px;
    background: var(--darker-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    border: 2px solid var(--sand-color);
    transition: all 0.3s ease;
    animation: pulse 2s ease-in-out infinite;
  }

  .gaming-icon:hover {
    transform: scale(1.2) rotate(10deg);
    background: var(--sand-color);
    color: var(--dark-bg);
  }

  @keyframes pulse {
    0%,
    100% {
      box-shadow: 0 0 0 0 rgba(212, 165, 116, 0.4);
    }
    50% {
      box-shadow: 0 0 0 20px rgba(212, 165, 116, 0);
    }
  }

  /* Footer */
  footer {
    background: var(--darker-bg);
    padding: 3rem 0;
    text-align: center;
    border-top: 1px solid rgba(212, 165, 116, 0.2);
  }

  .footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
  }

  .social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 2rem 0;
  }

  .social-link {
    display: inline-block;
    width: 50px;
    height: 50px;
    background: var(--sand-color);
    color: var(--dark-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
  }

  .social-link:hover {
    transform: translateY(-5px) rotate(360deg);
    background: var(--accent-blue);
  }


  .hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
  }

  .bar {
    width: 25px;
    height: 3px;
    background-color: #00bfff;
    margin: 4px 0;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }

  .nav-menu{
    display: flex;
    gap: 60px;
    align-items: center;
    justify-content: space-between;
  }

  .nav-menu{
    display: none;
  }


 

  /* Responsive */
  @media (max-width: 768px) {
    .hero h1 {
      font-size: 2.5rem;
    }

    .nav-links {
      display: none;
    }

    .cards-grid {
      grid-template-columns: 1fr;
    }

    .gaming-icons {
      flex-wrap: wrap;
    }

    .hamburger {
      display: flex;
      flex-direction: column;
      cursor: pointer;
    }

    .hamburger.active .bar:nth-child(2) {
      opacity: 0;
    }
    .hamburger.active .bar:nth-child(1) {
      transform: translateY(11px) rotate(45deg);
    }
    .hamburger.active .bar:nth-child(3) {
      transform: translateY(-11px) rotate(-45deg);
    }

    .nav-menu{
        display: flex;
        position: fixed;
        left: -100%;
        top: 70px;
        gap: 0;
        flex-direction: column;
        background-color: #0f0f0f;
        width: 100%;
        text-align: center;
        transition: 0.3s;
    }

    .nav-item{
        margin: 16px 0;
    }

    .nav-menu.active {
      left: 0;
    }

    .nav-item a {
      color: var(--text-light);
      text-decoration: none;
      position: relative;
      transition: color 0.3s ease;
    }
  
    .nav-item a:hover {
      color: var(--sand-color);
    }

    .nav-item a::after {
      content: "";
      position: absolute;
      bottom: -5px;
      left: 0;
      width: 0;
      height: 2px;
      background: var(--sand-color);
      transition: width 0.3s ease;
    }
  
    .nav-item a:hover::after {
      width: 100%;
    }

  }



