body {
      margin: 0;
      font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
      background: #000;
      color: #fff;
      overflow-x: hidden;
    }

    /* Navbar */
    nav {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px;
      background: rgba(0, 0, 0, 0.9);
      position: fixed;
      width: 100%;
      top: 0;
      z-index: 10;
      animation: fadeDown 1s ease;
    }
    nav h1 {
      font-size: 1.2rem;
      font-weight: 600;
      color: #e74c3c;
      margin: 0;
    }

    nav a {
      color: #fff;
      font-size: 0.95rem;
      transition: color 0.3s;
      margin-right: 50px;
    }
    nav a:hover {
      color: #e74c3c;
    }

    /* Hero */
    .hero {
      height: 100vh;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      background: url('/hero-img.jpg') no-repeat center/cover;
      position: relative;
    }
    .hero::after {
      content: "";
      position: absolute;
      inset: 0;
      background: rgba(0, 0, 0, 0.6);
    }
    .hero-content {
      z-index: 1;
      max-width: 800px;
      opacity: 0;
      transform: translateY(30px);
      animation: fadeUp 1.5s ease forwards;
    }
    .hero h2 {
      font-size: 3.5rem;
      font-weight: 700;
      margin-bottom: 20px;
    }
    .hero p {
      font-size: 1.3rem;
      color: #ddd;
      margin-bottom: 40px;
    }
    .btn {
      background: #e74c3c;
      color: #fff;
      text-decoration: none;
      padding: 14px 40px;
      border-radius: 50px;
      font-weight: bold;
      font-size: 1.1rem;
      transition: transform 0.3s, background 0.3s;
    }
    .btn a:hover {
      background: #c0392b;
      transform: scale(1.05);
    }
    /*
    .little {
      max-width: 400px;
      width: 35%;
      z-index: 9999;
      position: absolute;
      right: 10px;
      bottom: 10px;
      color: white;
      font-size: 20px;
    }
      */

    /* Sections fade-in on scroll */
    .reveal {
      opacity: 0;
      transform: translateY(50px);
      transition: all 1s ease;
    }
    .reveal.active {
      opacity: 1;
      transform: translateY(0);
    }

    /* About */
    .about {
      padding: 100px 20px;
      text-align: center;
      background: #111;
    }
    .about h2 {
      font-size: 2.5rem;
      margin-bottom: 20px;
    }
    .about p {
      max-width: 800px;
      margin: 0 auto;
      color: #ccc;
      font-size: 1.2rem;
    }

    /* Features */
    .features {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 40px;
      padding: 100px 50px;
      background: #000;
      text-align: left;
    }
    .feature {
      padding: 40px;
      background: #111;
      border-radius: 20px;
      transition: transform 0.4s, box-shadow 0.4s;
    }
    .feature:hover {
      transform: translateY(-10px) scale(1.03);
      box-shadow: 0 10px 30px rgba(0,0,0,0.6);
    }
    .feature h3 {
      font-size: 1.5rem;
      margin-bottom: 15px;
    }
    .feature p {
      color: #aaa;
      font-size: 1.1rem;
    }

    /* Footer */
    footer {
      background: #111;
      text-align: center;
      padding: 40px;
      color: #666;
      font-size: 0.9rem;
    }

    .player-widget {
    margin-top: 30px;
    background: rgba(0,0,0,0.6);
    padding: 20px 40px;
    border-radius: 20px;
    display: inline-block;
    backdrop-filter: blur(5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.5);
    color: white;
    text-align: center;
    animation: fadeUp 1.5s ease forwards;
  }
  .player-widget .title {
    font-size: 1rem;
    color: #bbb;
    margin: 0;
  }
  .player-widget .count {
    font-size: 2rem;
    font-weight: bold;
    color: #e74c3c;
    margin: 5px 0 0;
  }

    /* Animations */
    @keyframes fadeUp {
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }
    @keyframes fadeDown {
      from {
        opacity: 0;
        transform: translateY(-20px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @media (max-width: 500px) {
      .fck {
        display: none;
      }
    }