:root {
      --bwf-purple-clear: rgba(77, 70, 141, 0.7);
    }

    body {
      margin: 0;
      font-family: 'Almarai', sans-serif;
      overflow: hidden;
    }

    .hero-container {
      position: relative;
      height: 100vh;
      width: 100%;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      color: white;
      text-align: center;
    }

    #bg-video {
      position: absolute;
      top: 50%;
      left: 50%;
      min-width: 100%;
      min-height: 100%;
      z-index: -1;
      transform: translate(-50%, -50%);
      object-fit: cover;
    }

    .overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(135deg, rgba(77, 70, 141, 0.8) 0%, rgba(59, 121, 123, 0.6) 100%);
      z-index: 0;
    }

    .hero-content {
      z-index: 1;
      padding: 20px;
      max-width: 800px;
    }

    .hero-content h1 {
      font-size: clamp(2.5rem, 8vw, 4.5rem);
      margin-bottom: 30px;
      font-weight: 800;
      line-height: 1.3;
      text-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
      letter-spacing: -1px;
    }

    .apply-btn {
      min-width: 220px;
      min-height: 56px;
    }

    .apply-btn {
      background-color: var(--bwf-yellow);
      color: var(--bwf-purple);
      padding: 18px 50px;
      font-size: 1.2rem;
      border-radius: 50px;
      border: none;
      font-weight: bold;
      cursor: pointer;
      transition: all 0.3s ease;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    }

    .apply-btn:hover {
      transform: scale(1.05);
      background-color: white;
    }

    .footer-access {
      position: absolute;
      bottom: 30px;
      z-index: 1;
      width: 100%;
      text-align: center;
    }

    .judge-link {
      color: rgba(255, 255, 255, 0.5);
      text-decoration: none;
      font-size: 0.8rem;
      transition: color 0.3s;
      letter-spacing: 1px;
      text-transform: uppercase;
    }

    .judge-link:hover {
      color: white;
      text-decoration: underline;
    }

    .hero-content {
      padding: 20px;
    }

    @media (max-width: 480px) {
      .hero-content h1 {
        font-size: 2rem;
        line-height: 1.4;
      }

      .footer-access {
        bottom: 15px;
      }
    }

    @media (max-width: 768px) {
      #bg-video {
        display: none;
      }

      .hero-container {
        background: linear-gradient(135deg, rgba(77, 70, 141, 0.9), rgba(59, 121, 123, 0.85));
      }
    }