
  /* General Layout */
  body { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; }
  .tab-content { display: none; }
  .tab-content.active { display: block; animation: fadeIn 0.3s; }
  .tab-btn.active { border-bottom: 2px solid #2563eb; color: #2563eb; }
  
  @keyframes fadeIn {
    from { opacity: 0; transform: translateY(5px); }
    to { opacity: 1; transform: translateY(0); }
  }

  /* LOGO STYLES */
  .polyhooks-brand {
      font-size: 28px; /* Logo Size */
      display: inline-flex;
      align-items: center;
      text-decoration: none;
      gap: 0.4em;
      cursor: pointer;
      user-select: none;
  }
  .polyhooks-icon {
      height: 1.5em;
      width: 1.5em;
      flex-shrink: 0;
      transition: transform 0.3s ease;
  }
  .polyhooks-text {
      display: flex;
      align-items: baseline;
      line-height: 1;
  }
  .text-poly {
      font-weight: 800;
      color: #0f172a; 
      letter-spacing: -0.02em;
  }
  .text-hooks {
      font-weight: 800;
      background: linear-gradient(135deg, #2563eb 0%, #0891b2 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      color: #2563eb; 
  }
  .text-tld {
      font-weight: 500;
      color: #94a3b8;
      font-size: 0.55em;
      margin-left: 2px;
      text-transform: lowercase;
  }
  .polyhooks-brand:hover .polyhooks-icon {
      transform: rotate(-10deg) translateY(-2px);
  }
  @media (prefers-color-scheme: dark) {
      .text-poly { color: #1e293b; } /* Adjusted for white bg context */
  }

  /* Coming Soon Banner */
  .coming-soon {
    position: fixed;
    bottom: 220px;
    left: 50%;
    transform: translateX(-50%);
    padding: 12px 24px;
    background: linear-gradient(135deg, #2563eb 0%, #0891b2 100%);
    color: white;
    border-radius: 9999px;
    box-shadow: 0 5px 15px rgba(37, 99, 235, 0.3);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 500;
    animation: fadeInBanner 0.5s 0.5s ease-out forwards;
    opacity: 0;
    z-index: 100;
  }

  .coming-soon::before {
    content: '✨';
    display: inline-block;
    animation: sparkle-animation 1.5s infinite ease-in-out;
  }

  @keyframes sparkle-animation {
    0%, 100% { transform: scale(1) rotate(0deg); opacity: 0.8; }
    50% { transform: scale(1.2) rotate(10deg); opacity: 1; }
  }

  @keyframes fadeInBanner {
    from { opacity: 0; transform: translate(-50%, 10px); }
    to { opacity: 1; transform: translate(-50%, 0); }
  }
