/* ================================
   Base / Layout
   ================================ */

.creatorpro-logo {
  width: 72px;
  height: auto;
  max-width: none;
  display: block;
  margin: 0 auto 1.5rem;
}


*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  height: 100%;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text",
    -webkit-system-font, "Segoe UI", sans-serif;
  background: radial-gradient(circle at top left, #1b2638 0, #050811 55%, #000 100%);
  color: #f7f8ff;
  -webkit-font-smoothing: antialiased;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 16px 28px;
}

/* ================================
   Card with cover background
   ================================ */

.card {
  position: relative;
  width: 100%;
  max-width: 1160px;
  border-radius: 32px;
  padding: 36px 40px 32px;
  overflow: hidden;
  background: radial-gradient(circle at top left, #141a26 0, #070a11 45%, #050710 100%);
  box-shadow:
    0 28px 60px rgba(0, 0, 0, 0.85),
    0 0 0 1px rgba(255, 255, 255, 0.02);
}

.card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("images/cover.jpg");
  background-size: cover;
  background-position: center;
  opacity: 0.33;
  transform: scale(1.03);
  z-index: 0;
}

.card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      120deg,
      rgba(4, 6, 12, 0.96) 0%,
      rgba(4, 6, 12, 0.88) 40%,
      rgba(4, 6, 12, 0.6) 72%,
      rgba(4, 6, 12, 0.75) 100%
    );
  z-index: 0;
}

.card > * {
  position: relative;
  z-index: 1;
}

/* ================================
   Profile
   ================================ */

.profile {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-bottom: 26px;
}

.profile-avatar {
  width: 168px;
  height: 168px;
  border-radius: 50%;
  object-fit: cover;
  padding: 8px;
  background: radial-gradient(circle at 30% 0%, #ffe7a3, #f0a93c 40%, #f08c3c 70%, #784315 100%);
  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.85),
    0 0 0 1px rgba(0, 0, 0, 0.7);
}

.profile-text {
  max-width: 520px;
}

.headline {
  font-size: 34px;
  font-weight: 700;
}

.tagline {
  font-size: 15px;
  color: #d5ddff;
}

.subline {
  font-size: 14px;
  color: #c6d0ff;
}

.brand {
  color: #ffd470;
  font-weight: 600;
}

.profile-cta {
  margin-top: 18px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 26px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}

.btn-primary {
  background: linear-gradient(135deg, #ffcf64, #f7a93a);
  color: #3d2500;
  box-shadow:
    0 12px 28px rgba(0, 0, 0, 0.85),
    0 0 0 1px rgba(255, 255, 255, 0.05);
  transition: transform 0.18s ease;
}

.btn-primary:hover {
  transform: translateY(-1px) scale(1.02);
}

/* ================================
   Content / Groups
   ================================ */

.section-title {
  font-size: 22px;
  font-weight: 650;
  margin-bottom: 10px;
}

.section-copy {
  font-size: 14px;
  color: #d4dcff;
  max-width: 640px;
  margin-bottom: 20px;
}

.groups {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}

.group-card {
  padding: 14px 18px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(13, 20, 35, 0.9), rgba(5, 8, 16, 0.92));
  border: 1px solid rgba(255, 211, 126, 0.4);
  text-decoration: none;
  color: #fff;
  transition: transform 0.16s ease;
}

.group-card:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 207, 100, 0.9);
}

.group-label {
  font-size: 11px;
  letter-spacing: 0.15em;
  color: #fdd994;
}

.group-name {
  font-size: 15px;
  font-weight: 600;
}

.group-note {
  font-size: 13px;
  color: #cfd7ff;
}

/* ================================
   Support / Buy Me a Coffee
   ================================ */

.support {
  margin-top: 26px;
}

.support-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 14px;
}

.support-card {
  padding: 16px 18px 18px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(13,20,35,.92), rgba(5,8,16,.94));
  border: 1px solid rgba(255,211,126,.35);
  text-align: center;
  text-decoration: none;
  color: inherit;
  transition: transform .16s ease;
}

.support-card:hover {
  transform: translateY(-2px);
  border-color: rgba(255,207,100,.85);
}

.support-label {
  font-size: 11px;
  letter-spacing: .14em;
  color: #fdd994;
}

.support-name {
  font-size: 16px;
  font-weight: 600;
  margin: 8px 0;
}

.support-qr {
  width: 120px;
  height: 120px;
  margin: 8px auto;
  padding: 6px;
  background: #fff;
  border-radius: 12px;
}

.support-note {
  font-size: 13px;
  color: #cfd7ff;
}

/* ================================
   Responsive
   ================================ */

@media (max-width: 900px) {
  .profile {
    flex-direction: column;
    align-items: flex-start;
  }

  .profile-avatar {
    width: 132px;
    height: 132px;
  }
}

@media (max-width: 540px) {
  .card {
    padding: 22px 16px 18px;
  }

  .support-qr {
    width: 100px;
    height: 100px;
  }
}
.feature-list {
  margin: 1rem 0 0;
  padding-left: 1.2rem;
}

.feature-list li {
  margin: 0.5rem 0;
}

.email-form {
  margin-top: 1rem;
  display: grid;
  gap: 0.9rem;
}

.field-label {
  display: block;
  font-size: 0.9rem;
  opacity: 0.85;
  margin-bottom: 0.25rem;
}

.field input {
  width: 100%;
  padding: 0.85rem 0.9rem;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(0,0,0,0.25);
  color: inherit;
}

.checkbox {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  font-size: 0.95rem;
  opacity: 0.95;
}

.notice {
  padding: 1rem;
  border-radius: 14px;
  margin-top: 1rem;
}

.notice-success {
  border: 1px solid rgba(90, 255, 180, 0.25);
  background: rgba(0, 255, 140, 0.07);
}

.notice-error {
  border: 1px solid rgba(255, 80, 80, 0.25);
  background: rgba(255, 80, 80, 0.08);
}

.offer-box {
  margin-top: 0.8rem;
  padding: 1rem;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(0,0,0,0.25);
}

.offer-label {
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  opacity: 0.8;
}

.offer-code {
  font-size: 1.8rem;
  font-weight: 800;
  margin-top: 0.25rem;
}

.offer-note {
  margin-top: 0.3rem;
  opacity: 0.9;
}

.image-grid img {
  height: 50vh;
  object-fit: cover;
  cursor: pointer;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.lightbox img {
  max-width: 95%;
  max-height: 95%;
  border-radius: 12px;
}

.consent {
  opacity: 0.75;
  line-height: 1.35;
}
