* {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: Arial, sans-serif;
    }
    body {
      background-color: #0f1115;
      color: white;
    }
    .hero strong {
        color: #1db954;
    }
    .section-divider {
      height: 1px;
      background: #ffffff44;
      margin: 40px auto;
      width: 80%;
      border-radius: 1px;
    }
    .hero {
      background: url('./img/main-background.jpg') center/cover no-repeat;
      height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 20px;
    }
    .hero h1 {
      font-size: 3em;
      background: rgba(0, 0, 0, 0.6);
      padding: 20px;
      border-radius: 10px;
    }
    .stats {
      padding: 40px;
      background-color: #1a1d23;
    }
    .stats h2 {
      text-align: center;
      margin-bottom: 30px;
      font-size: 2em;
    }
    .stats-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 20px;
      max-width: 1200px;
      margin: 0 auto;
      justify-items: center;
    }
    .stat-box {
      background-color: #22252b;
      padding: 20px;
      border-radius: 10px;
      text-align: center;
      width: 100%;
      max-width: 300px;
    }
    .stat-box strong {
      display: block;
      margin-bottom: 10px;
      color: #1db954;
    }
    .faceit {
      padding: 40px;
      text-align: center;
      background-color: #1a1d23;
    }
    .faceit img {
      width: 36%;
      margin-bottom: 20px;
    }
    .faceit-videos {
      display: flex;
      flex-direction: row;
      justify-content: center;
      gap: 20px;
      flex-wrap: wrap;
    }
    .spotify-section {
      background-color: #1a1d23;
      padding: 60px 20px;
      text-align: center;
    }
    .spotify-section h2 {
      font-size: 2em;
      margin-bottom: 30px;
    }
    .card-container {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 20px;
    }
    .platform-card {
      background-color: #22252b;
      padding: 30px;
      border-radius: 15px;
      width: 150px;
      box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
      display: flex;
      flex-direction: column;
      align-items: center;
    }
    .platform-card img {
      width: 60px;
      margin-bottom: 15px;
    }
    .platform-card button {
      background-color: #1db954;
      color: white;
      border: none;
      padding: 10px 15px;
      border-radius: 20px;
      cursor: pointer;
      font-size: 0.9em;
    }
    .platform-card button a {
      text-decoration: none;
      color: white;
    }
    footer {
      background-color: #111;
      color: #aaa;
      text-align: center;
      padding: 20px;
    }