    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
    
    body {
      font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
      background: #0a0a0a;
      color: #fff;
      min-height: 100vh;
      display: flex;
      flex-direction: column;
    }
    
    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 2rem;
      width: 100%;
    }
    
    /* Hero Section */
    .hero {
      flex: 1;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 60px 2rem;
      text-align: center;
      background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    }
    
    .hero-content {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 2rem;
    }
    
    .logo {
      max-width: 300px;
      width: 100%;
      height: auto;
      filter: drop-shadow(0 0 30px rgba(184, 134, 11, 0.3));
      animation: float 3s ease-in-out infinite;
    }
    
    @keyframes float {
      0%, 100% {
        transform: translateY(0px);
      }
      50% {
        transform: translateY(-15px);
      }
    }
    
    h1 {
      font-size: 3rem;
      font-weight: 700;
      margin-bottom: 0.5rem;
      letter-spacing: -1px;
    }
    
    .phi {
      color: #FFD700;
    }
    
    .tagline {
      font-size: 1.2rem;
      color: #ccc;
      margin-bottom: 2rem;
      font-weight: 300;
      letter-spacing: 0.5px;
    }
    
    .cta-buttons {
      display: flex;
      gap: 1.5rem;
      flex-wrap: wrap;
      justify-content: center;
      margin-bottom: 1rem;
    }
    
    .btn {
      padding: 14px 40px;
      border-radius: 50px;
      font-size: 1rem;
      font-weight: 600;
      text-decoration: none;
      border: 2px solid;
      cursor: pointer;
      transition: all 0.3s ease;
      display: inline-block;
      text-transform: uppercase;
      letter-spacing: 1px;
      font-size: 0.9rem;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }
    
    .btn-primary {
      background: #FFD700;
      color: #0a0a0a;
      border-color: #FFD700;
    }
    
    .btn-primary:hover {
      background: #FFC700;
      border-color: #FFC700;
      transform: translateY(-3px);
      box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);
    }
    
    .btn-secondary {
      background: transparent;
      color: #FFD700;
      border-color: #FFD700;
    }
    
    .btn-secondary:hover {
      background: #FFD700;
      color: #0a0a0a;
      transform: translateY(-3px);
      box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
    }
    
    /* Footer */
    footer {
      background: #000;
      padding: 2rem;
      text-align: center;
    }
    
    footer p {
      color: #666;
      font-size: 0.9rem;
    }
    
    footer a {
      color: #FFD700;
      text-decoration: none;
      transition: color 0.3s ease;
      margin: 0 0.5rem;
    }
    
    footer a:hover {
      color: #FFC700;
    }
    
    /* Header */
    header {
      background: #0a0a0a;
      padding: 1rem 2rem;
      position: sticky;
      top: 0;
      z-index: 1000;
    }
    
    header .container {
      display: flex;
      justify-content: flex-end;
      align-items: center;
      gap: 1rem;
      max-width: 1200px;
      margin: 0 auto;
    }
    
    header .btn {
      padding: 10px 24px;
      font-size: 0.85rem;
    }
    
    /* Responsive */
    @media (max-width: 768px) {
      header .container {
        gap: 0.5rem;
        flex-wrap: nowrap;
      }
      
      header .btn {
        padding: 8px 12px;
        font-size: 0.65rem;
        letter-spacing: 0.3px;
        flex: 1;
        min-width: auto;
      }
      
      h1 {
        font-size: 2rem;
      }
      
      .tagline {
        font-size: 1rem;
      }
      
      .logo {
        max-width: 250px;
      }
      
      .cta-buttons {
        gap: 0.8rem;
        width: 100%;
      }
      
      .btn {
        padding: 12px 24px;
        font-size: 0.75rem;
        letter-spacing: 0.4px;
      }
    }
    
    @media (max-width: 480px) {
      header .container {
        gap: 0.3rem;
      }
      
      header .btn {
        padding: 7px 10px;
        font-size: 0.6rem;
        letter-spacing: 0.2px;
      }
      
      h1 {
        font-size: 1.5rem;
      }
      
      .hero {
        padding: 40px 1rem;
      }
      
      .cta-buttons {
        gap: 0.5rem;
        width: 100%;
      }
      
      .btn {
        padding: 10px 16px;
        font-size: 0.65rem;
        letter-spacing: 0.2px;
      }
    }