      * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
      }

      body {
        font-family: "Inter", sans-serif;
        background: #0a0a0f;
        color: #ffffff;
        overflow-x: hidden;
        min-height: 100vh;
      }

      #starfield {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: -2;
      }

      .blur-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        backdrop-filter: blur(2px);
        background: rgba(10, 10, 15, 0.3);
        z-index: -1;
      }

      .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 2rem;
      }

      .hero {
        min-height: 20vh;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        position: relative;
      }

      .logo {
        font-size: 4rem;
        font-weight: 700;
        margin-bottom: 1rem;
        background: linear-gradient(135deg, #ff6b35, #f7931e, #ffd700);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        text-shadow: 0 0 30px rgba(255, 107, 53, 0.3);
      }

      .slogan {
        font-size: 1.5rem;
        font-weight: 300;
        margin-bottom: 3rem;
        color: #e2e8f0;
        opacity: 0.9;
      }

      .cta-buttons {
        display: flex;
        gap: 1.5rem;
        margin-bottom: 2rem;
        flex-wrap: wrap;
        justify-content: center;
      }

      .btn {
        padding: 1rem 2rem;
        border: none;
        border-radius: 0.5rem;
        font-size: 1rem;
        font-weight: 500;
        cursor: pointer;
        transition: all 0.3s ease;
        text-decoration: none;
        display: inline-block;
        position: relative;
        overflow: hidden;
      }

      .btn-secondary {
        background: rgba(255, 255, 255, 0.1);
        color: #ffffff;
        border: 1px solid rgba(255, 255, 255, 0.2);
      }

      .btn-secondary:hover {
        background: rgba(255, 255, 255, 0.15);
        box-shadow: 0 10px 25px rgba(255, 255, 255, 0.1);
        transform: translateY(-2px);
      }

      .news-section {
        padding: 3rem 0;
        background: rgba(255, 107, 53, 0.05);
        border-top: 1px solid rgba(255, 107, 53, 0.1);
        border-bottom: 1px solid rgba(255, 107, 53, 0.1);
      }

      .news-container {
        max-width: 800px;
        margin: 0 auto;
        text-align: center;
      }

      .news-title {
        font-size: 2rem;
        font-weight: 600;
        margin-bottom: 2rem;
        background: linear-gradient(135deg, #ff6b35, #f7931e);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
      }

      .news-item {
        background: rgba(255, 255, 255, 0.05);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 107, 53, 0.2);
        border-radius: 1rem;
        padding: 2rem;
        margin-bottom: 1rem;
        text-align: left;
        transition: all 0.3s ease;
      }

      .news-content {
        color: #cbd5e0;
        line-height: 1.6;
      }

      .news-content p {
        margin-bottom: 1.5rem;
      }

      .news-content h3 {
        color: #ffffff;
        font-size: 1.2rem;
        font-weight: 600;
        margin: 2rem 0 1rem 0;
        background: linear-gradient(135deg, #ff6b35, #f7931e);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
      }

      .news-content hr {
        border: none;
        height: 1px;
        background: linear-gradient(
          90deg,
          transparent,
          rgba(255, 107, 53, 0.3),
          transparent
        );
        margin: 2rem 0;
      }

      .styled-list {
        list-style: none;
        padding-left: 0;
        margin: 1rem 0;
      }

      .styled-list li {
        position: relative;
        padding-left: 1.5rem;
        margin-bottom: 0.5rem;
      }

      .styled-list li::before {
        content: "•";
        color: #f7931e;
        font-weight: bold;
        position: absolute;
        left: 0;
      }

      .news-content a {
        color: #f7931e;
        text-decoration: none;
        transition: color 0.3s ease;
      }

      .news-content a:hover {
        color: #ff6b35;
      }

      .footer {
        padding: 3rem 0 2rem;
        text-align: center;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        background: rgba(0, 0, 0, 0.3);
      }

      .footer-links {
        display: flex;
        justify-content: center;
        gap: 2rem;
        margin-bottom: 1rem;
        flex-wrap: wrap;
      }

      .footer-link {
        color: #cbd5e0;
        text-decoration: none;
        font-size: 0.9rem;
        transition: color 0.3s ease;
      }

      .footer-link:hover {
        color: #f7931e;
      }

      .footer-text {
        color: #64748b;
        font-size: 0.8rem;
        margin-bottom: 0.5rem;
      }

      @media (max-width: 768px) {
        .logo {
          font-size: 3rem;
        }

        .slogan {
          font-size: 1.2rem;
        }

        .btn {
          width: 100%;
          max-width: 300px;
        }

        .news-title {
          font-size: 1.5rem;
        }

        .news-item {
          padding: 1.5rem;
        }
      }