@charset "utf-8";

  /* Base Card Styles */
  .member-card {
    width: 320px;
    padding: 24px;
    border-radius: 20px;
    font-family: 'Inter', -apple-system, sans-serif;
    color: #ffffff;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    background: linear-gradient(135deg, #1a1a1a 0%, #333333 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
  }

  /* Gold Tier Specific Styling */
  .member-card.gold-tier {
    background: linear-gradient(135deg, #bf953f, #fcf6ba, #b38728, #fbf5b7, #aa771c);
    color: #1a1a1a; /* Dark text for light gold background */
  }

  /* Header Section */
  .card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
  }

  .member-since {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
  }

  /* Body Section */
  .welcome-text {
    font-size: 0.9rem;
    opacity: 0.9;
  }

  .member-name {
    margin: 4px 0 0 0;
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: -0.5px;
  }

  /* Footer & Badge */
  .card-footer {
    margin-top: 40px;
  }

  .membership-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(0, 0, 0, 0.1);
    padding: 6px 12px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    border: 1px solid rgba(0, 0, 0, 0.05);
  }

  .badge-dot {
    width: 8px;
    height: 8px;
    background: #1a1a1a;
    border-radius: 50%;
    margin-right: 8px;
  }

  .modal-social {
    margin-top: 16px;
    display: grid;
    gap: 10px;
  }

  .modal-social-divider {
    position: relative;
    text-align: center;
  }

  .modal-social-divider::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    background: #d9ddcf;
  }

  .modal-social-divider span {
    position: relative;
    display: inline-block;
    padding: 0 12px;
    background: #ffffff;
    color: #6d7561;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    line-height: 1;
  }

  .modal-social-btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 46px;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.2;
    text-decoration: none;
    box-sizing: border-box;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
    transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
  }

  .modal-social-btn:hover {
    text-decoration: none;
  }

  .modal-social-icon {
    position: absolute;
    left: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    font-size: 16px;
    font-weight: 700;
    line-height: 1;
  }

  .modal-social-btn-facebook {
    background: #1877f2;
    border: 1px solid #1877f2;
    color: #ffffff;
  }

  .modal-social-btn-facebook:hover {
    background: #1666d8;
    border-color: #1666d8;
    color: #ffffff;
  }

  .modal-social-btn-google {
    background: #ffffff;
    border: 1px solid #d8ddce;
    color: #374129;
  }

  .modal-social-btn-google:hover {
    background: #f8f8f6;
    border-color: #cfd5c4;
    color: #374129;
  }

  .modal-social-btn-google .modal-social-icon {
    color: #4285f4;
  }


