    body {
      margin: 0;
      font-family: 'Segoe UI', sans-serif;
      background: linear-gradient(to bottom, #dcdcdc, #000000);
      color: #fff;
    }

    header {
      background-color: #222;
      color: white;
      padding: 1rem 2rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    header h1 {
      margin: 0;
      font-size: 1.8rem;
    }

    nav a {
      color: white;
      text-decoration: none;
      margin-left: 1.5rem;
      font-weight: bold;
    }

    h2 {
      color: red;
    }

    p {
      color: black;
    }

    .hero {
      background-color: rgba(255, 255, 255, 0.1);
      text-align: center;
      padding: 5rem 2rem;
    }

    .hero h2 {
      font-size: 2.5rem;
      margin-bottom: 1rem;
    }

    .hero p {
      font-size: 1.2rem;
      max-width: 600px;
      margin: 0 auto;
    }

    .section {
      padding: 4rem 2rem;
      max-width: 1200px;
      margin: auto;
    }

    .discover-section {
      display: flex;
      flex-wrap: wrap;
      gap: 2rem;
      align-items: flex-start;
      justify-content: center;
    }

    .discover-text {
      flex: 1 1 500px;
      background-color: rgba(255, 255, 255, 0.05);
      padding: 1.5rem;
      border-radius: 10px;
    }

    .discover-text h2 {
      font-size: 1.8rem;
      margin-bottom: 1rem;
      color: red;
      display: flex;
      align-items: center;
      gap: 0.8rem;
    }

    .discover-text img.logo {
      width: 32px;
      height: 32px;
      vertical-align: middle;
    }

    .discover-text p {
      font-size: 1.1rem;
      line-height: 1.6;
    }

    .discover-img {
      flex: 1 1 400px;
      text-align: center;
    }

    .discover-img img {
      max-width: 100%;
      height: auto;
      border-radius: 10px;
      box-shadow: 0 4px 10px rgba(0,0,0,0.5);
    }

    .news-grid {
      display: flex;
      flex-wrap: wrap;
      gap: 2rem;
      justify-content: center;
    }

    .news-card {
      background-color: #111;
      border-radius: 10px;
      overflow: hidden;
      width: 100%;
      max-width: 350px;
      box-shadow: 0 0 10px rgba(0,0,0,0.5);
      transition: transform 0.3s ease;
    }

    .news-card:hover {
      transform: translateY(-5px);
    }

    .news-card img {
      width: 100%;
      height: auto;
      display: block;
    }

    .news-content {
      padding: 1rem;
    }

    .news-content .tags {
      margin-bottom: 0.5rem;
    }

    .news-content .tags span {
      background-color: #0077ff;
      color: white;
      font-size: 0.75rem;
      padding: 0.3rem 0.6rem;
      border-radius: 5px;
      margin-right: 0.5rem;
    }

    .news-content h3 {
      margin: 0.5rem 0;
      font-size: 1.2rem;
    }

    .news-content p {
      font-size: 0.9rem;
      color: #ccc;
    }

    footer {
      background-color: #222;
      color: #ccc;
      text-align: center;
      padding: 2rem;
      margin-top: 4rem;
    }

    @media (max-width: 600px) {
      header h1 {
        font-size: 1.4rem;
      }
      nav a {
        margin-left: 1rem;
      }
      .discover-section {
        flex-direction: column;
      }
    }
  .dropdown {
    display: inline-block;
    position: relative;
  }

  .dropdown-content {
    display: none;
    position: absolute;
    background-color: #1e1e1e;
    min-width: 160px;
    z-index: 1;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
  }

  .dropdown-content a {
    display: block;
    padding: 10px;
    color: white;
    text-decoration: none;
  }

  .dropdown-content a:hover {
    background-color: #333;
  }

  .box {
    max-width: 520px;
    background: #1f2937;
    border: 1px solid #334155;
    border-radius: 16px;
    padding: 20px;
  }

  .status {
    display: inline-block;
    padding: 8px 12px;
    border-radius: 999px;
    font-weight: bold;
    margin-bottom: 14px;
  }

  .row {
    margin: 10px 0;
  }
  
  .label {
    color: #000000;
  }