/* General Styles */
  body {
    margin: 0;
    padding: 0;
    background-color: #fafafa;
    font-family: 'Inter', sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
  }

  .container {
    width: 375px;
    display: grid;
    grid-template-rows: auto auto auto auto;
    grid-gap: 20px;
    padding: 20px;
  }

  /* Card Styling */
  .card {
    background: #ffffff;
    border-radius: 15px;
    padding: 20px;
    border: 1px solid #ddd;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.05);
  }

  /* Profile Card */
  .profile-card {
    display: grid;
    grid-template-rows: auto auto auto;
    grid-gap: 15px;
    text-align: center;
  }

  .profile-top {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
  }

  .profile-top img {
    width: 60px;
    height: 60px;
    border-radius: 30px;
    background: #eee;
    object-fit: cover;
  }

  .info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
  }

  .info h1 {
    margin: 0;
    font-size: 1.2rem;
    font-weight: bold;
    color: #000;
  }

  .info span {
    font-size: 0.9rem;
    color: #666;
  }

  .profile-divider {
    border: none;
    border-bottom: 1px solid #000;
  }

  .bio {
    font-size: 0.9rem;
    color: #333;
    line-height: 1.4;
    text-align: left;
  }

  /* CTA Link and Button */
  .cta-link {
    display: inline-block;
    text-decoration: none;
  }

  .cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #000;
    color: #fff;
    border: none;
    text-align: center;
    padding: 12px 20px;
    font-size: 1rem;
    border-radius: 6px;
    cursor: pointer;
    width: 100%;
  }

  .cta i {
    font-size: 20px;
    margin-right: 8px;
  }

  .cta:hover {
    background-color: #333;
  }

  /* Link Card */
  .link-card {
    display: grid;
    grid-template-columns: 40px 1fr;
    align-items: center;
    text-decoration: none;
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid #ddd;
    padding: 12px 16px;
    color: #333;
    font-size: 0.95rem;
    gap: 12px;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.05);
  }

  .link-card:hover {
    border-color: #ccc;
  }

  .link-card .icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: #f5f5f5;
    border-radius: 8px;
    color: #666;
  }

  .link-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
  }

  .link-content .title {
    font-size: 1rem;
    color: #333;
  }

  .link-content .description {
    font-size: 0.85rem;
    color: #666;
  }

  /* Ghost Signup Form */
  .newsletter-card h2 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
    text-align: center;
    margin-top: -5px;
  }

  #ghost-signup-form-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
    justify-content: center;
    align-items: center;
  }