/* ══ REGISTER CLUB BLOCK ══ */
.register { background: var(--bg-dark); padding: 60px 0; }

.reg-club {
  display: grid;
  grid-template-columns: 38% 1fr;
  border-radius: 28px;
  overflow: hidden;
  background: linear-gradient(120deg, #14023a 0%, #2d0776 38%, #7c3aed 72%, #6c47ff 100%);
  box-shadow: 0 28px 80px rgba(108,71,255,0.32);
  position: relative;
  min-height: 280px;
  align-items: center;
}

/* ── Visual column ── */
.reg-club__visual {
  position: relative;
  height: 100%;
  min-height: 320px;
  overflow: hidden;
  pointer-events: none;
  background: radial-gradient(circle at 20% 20%, rgba(167, 105, 255, 0.45), transparent 18%),
              radial-gradient(circle at 80% 40%, rgba(99, 102, 241, 0.34), transparent 20%),
              linear-gradient(135deg, #090416 0%, #24063b 30%, #5b2ca8 55%, #180425 100%);
  box-shadow: inset 0 0 120px rgba(124, 58, 237, 0.24), 0 0 90px rgba(99, 102, 241, 0.18);
}
.reg-club__visual-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at top left, rgba(255, 255, 255, 0.08), transparent 30%),
              radial-gradient(circle at bottom right, rgba(168, 85, 247, 0.16), transparent 22%);
}

/* SVG doodles */
.reg-doodle { position: absolute; pointer-events: none; overflow: visible; }
.reg-doodle--red  { left: 52px; top: 54%; width: 58px; }
.reg-doodle--loop { right: 12px; top: 14%; width: 56px; }

/* ── Content column ── */
.reg-club__content { padding: 44px 44px 44px 16px; }

.reg-club__title {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3vw, 2.55rem);
  font-weight: 900;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin: 0 0 14px;
}

.reg-club__sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.72);
  margin: 0 0 26px;
}

/* CTA wrap */
.reg-club__cta-wrap {
  position: relative;
  display: inline-flex;
  width: 100%;
  max-width: 420px;
  margin-bottom: 18px;
}

.reg-club__btn {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  background: #fff;
  border-radius: 14px;
  padding: 18px 52px 16px 28px;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 8px 30px rgba(0,0,0,0.22);
  border: none;
  cursor: pointer;
}
.reg-club__btn:hover { transform: translateY(-2px); box-shadow: 0 14px 44px rgba(0,0,0,0.30); }

.reg-club__btn-main {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 900;
  color: var(--accent);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.reg-club__btn-sub { font-size: 0.8rem; color: #888; }

.reg-club__badge {
  position: absolute;
  right: -18px;
  top: -16px;
  background: #dc2626;
  color: #fff;
  font-weight: 900;
  font-size: 0.80rem;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(220,38,38,0.45);
  transform: rotate(12deg);
  letter-spacing: 0.01em;
  flex-shrink: 0;
}

/* Note row */
.reg-club__note {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 12px;
  padding: 14px 18px;
  max-width: 420px;
}
.reg-club__note-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(251,146,60,0.22);
  border: 1.5px solid rgba(251,146,60,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
  margin-top: 1px;
}
.reg-club__note p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.78);
  line-height: 1.5;
  margin: 0;
}

/* ── Responsive ── */
@media (max-width: 960px) {
  .reg-club { grid-template-columns: 34% 1fr; }
  .reg-club__content { padding: 32px 28px 32px 10px; }
  .reg-club__char { left: -20px; height: 108%; }
}
@media (max-width: 700px) {
  .reg-club {
    grid-template-columns: 1fr;
    border-radius: 20px;
  }
  .reg-club__visual { min-height: 200px; }
  .reg-club__char {
    position: relative;
    inset: auto;
    height: 200px;
    max-height: 200px;
    left: 50%;
    transform: translateX(-50%);
  }
  .reg-club__content { padding: 0 22px 28px; }
  .reg-club__cta-wrap, .reg-club__note { max-width: 100%; }
  .reg-doodle--red { left: 12px; }
  .reg-doodle--loop { right: 8px; top: 8%; }
}
@media (max-width: 480px) {
  .register { padding: 36px 0; }
  .reg-club__title { font-size: 1.5rem; }
  .reg-club__btn-main { font-size: 0.9rem; }
  .reg-club__btn { padding: 16px 44px 14px 20px; }
}
