body {
    background: linear-gradient(to right, #1c1c1c, #2c3e50);
    font-family: 'Poppins', sans-serif;
    color: #f4f6f7;
    overflow-x: hidden;
  }

  .logo {
    width: 180px;
    margin: 30px auto 20px auto;
    display: block;
    animation: fadeInZoom 1.5s ease;
  }

  @keyframes fadeInZoom {
    from {
      transform: scale(0.8);
      opacity: 0;
    }
    to {
      transform: scale(1);
      opacity: 1;
    }
  }

  .marquee {
    background: linear-gradient(135deg, #f39c12, #e67e22);
    color: #fff;
    padding: 12px 20px;
    border-radius: 12px;
    font-size: 1.2rem;
    font-weight: 600;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.4);
    animation: pulseGlow 2s infinite alternate;
  }

  @keyframes pulseGlow {
    0% {
      box-shadow: 0 0 8px rgba(255, 215, 0, 0.3);
    }
    100% {
      box-shadow: 0 0 20px rgba(255, 215, 0, 0.6);
    }
  }

  .headline {
    text-align: center;
    font-size: 2rem;
    color: #f1c40f;
    margin-top: 30px;
    font-weight: 700;
    animation: slideUp 1.5s ease-in-out;
  }

  @keyframes slideUp {
    from {
      transform: translateY(30px);
      opacity: 0;
    }
    to {
      transform: translateY(0);
      opacity: 1;
    }
  }

  .ad-block {
    background: linear-gradient(to right, #8e44ad, #9b59b6);
    padding: 18px;
    color: white;
    font-weight: bold;
    text-align: center;
    margin: 20px 0;
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(155, 89, 182, 0.4);
    transition: transform 0.4s ease;
  }

  .ad-block:hover {
    transform: scale(1.02);
  }

  .animated-heading {
    text-align: center;
    font-size: 2.2rem;
    color: #e74c3c;
    margin-top: 40px;
    font-weight: bold;
    animation: glowPulse 2s ease-in-out infinite;
  }

  @keyframes glowPulse {
    0% {
      text-shadow: 0 0 5px #e74c3c;
    }
    100% {
      text-shadow: 0 0 20px #e74c3c, 0 0 30px #e67e22;
    }
  }

  table {
    margin-top: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.3);
  }

  th {
    background: linear-gradient(to right, #2980b9, #3498db);
    color: white;
    text-align: center;
  }

  td {
    text-align: center;
    vertical-align: middle;
    color: #ecf0f1;
  }

  footer {
    margin-top: 60px;
    background: #111;
    color: #bdc3c7;
    padding: 30px 15px;
    border-top: 2px solid #f39c12;
  }

  footer p {
    margin: 5px 0;
    font-size: 0.95rem;
  }

  /* Scrollbar styling (premium touch) */
  ::-webkit-scrollbar {
    width: 8px;
  }

  ::-webkit-scrollbar-track {
    background: #1c1c1c;
  }

  ::-webkit-scrollbar-thumb {
    background: #f39c12;
    border-radius: 5px;
  }