body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #0B0F2A;
    color: white;
  }
  
  /* HERO */
  .hero {
    background: url("images/Banner kick.png") center/cover no-repeat;
    height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .overlay {
    background: rgba(0,0,0,0.6);
    padding: 40px;
    border-radius: 12px;
    text-align: center;
  }
  
  .hero h1 {
    font-size: 4rem;
  }
  
  .hero p {
    color: #00CFFF;
  }
  
  /* BUTTONS */
  .buttons a {
    display: inline-block;
    margin: 10px;
    padding: 12px 20px;
    background: #6C3BFF;
    color: white;
    text-decoration: none;
    border-radius: 8px;
  }
  
  .buttons a:hover {
    background: #FF4D8D;
  }
  
  /* FEATURES */
  .features {
    display: flex;
    justify-content: space-around;
    padding: 60px 20px;
  }
  
  .card {
    background: #11163A;
    padding: 20px;
    border-radius: 12px;
    width: 30%;
    text-align: center;
  }
  
  .card h3 {
    color: #6C3BFF;
  }
  
  /* STREAM */
  .stream {
    text-align: center;
    padding: 60px;
  }
  
  /* SHOP */
  .shop {
    text-align: center;
    padding: 60px;
  }
  
  /* FOOTER */
  footer {
    text-align: center;
    padding: 20px;
    background: #11163A;
  }