/* ===== CRIMSON PULSE REGISTER THEME ===== */

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  color: #ffffff;
  background: #120304;
  font-family: Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

a {
  color: inherit;
}

.cp-register-page {
  min-height: 100vh;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 12%, rgba(255, 53, 53, 0.24), transparent 28%),
    radial-gradient(circle at 88% 18%, rgba(255, 179, 71, 0.18), transparent 30%),
    radial-gradient(circle at 50% 110%, rgba(255, 53, 53, 0.14), transparent 36%),
    linear-gradient(135deg, #150405 0%, #280609 48%, #0b0102 100%);
}

.cp-container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== HEADER ===== */

.cp-header {
  position: relative;
  z-index: 50;
  width: 100%;
  padding: 18px 18px 0;
}

.cp-header-inner {
  width: 100%;
  max-width: 1240px;
  min-height: 76px;
  margin: 0 auto;
  padding: 14px 16px 14px 20px;
  display: grid;
  grid-template-columns: auto auto 1fr auto;
  gap: 18px;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(255, 53, 53, 0.13), rgba(255, 255, 255, 0.055)),
    rgba(8, 0, 1, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-left: 4px solid #ff3535;
  border-radius: 18px;
  box-shadow:
    0 24px 70px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.cp-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #ffffff;
  text-decoration: none;
  min-width: 0;
}

.cp-brand-logo {
  display: block;
  width: auto;
  max-width: 230px;
  max-height: 54px;
  object-fit: contain;
  filter: drop-shadow(0 12px 28px rgba(255, 56, 56, 0.32));
}

.cp-brand-icon {
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  border-radius: 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background:
    radial-gradient(circle at 28% 22%, rgba(255, 255, 255, 0.36), transparent 30%),
    linear-gradient(135deg, #ff3535, #ff7043, #ffb347);
  box-shadow: 0 14px 34px rgba(255, 56, 56, 0.32);
}

.cp-brand-icon i {
  font-size: 24px;
}

.cp-brand-text {
  color: #ffffff;
  font-size: 23px;
  line-height: 1;
  font-weight: 950;
  letter-spacing: -1px;
  white-space: nowrap;
}

.cp-header-status {
  min-height: 38px;
  padding: 0 14px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: rgba(255, 255, 255, 0.72);
  background: rgba(0, 0, 0, 0.24);
  border: 1px solid rgba(255, 255, 255, 0.09);
  font-size: 12px;
  font-weight: 900;
  white-space: nowrap;
}

.cp-status-dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: #ffb347;
  box-shadow: 0 0 0 5px rgba(255, 179, 71, 0.12);
}

.cp-header-links {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 8px;
}

.cp-header-links a {
  min-height: 42px;
  padding: 0 13px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: rgba(255, 255, 255, 0.74);
  background: transparent;
  border: 1px solid transparent;
  font-size: 13px;
  font-weight: 850;
  text-decoration: none;
  transition: all 0.22s ease;
}

.cp-header-links a i {
  color: #ffb19d;
  font-size: 17px;
}

.cp-header-links a:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.085);
  border-color: rgba(255, 255, 255, 0.12);
  transform: translateY(-2px);
}

.cp-header-links a:hover i {
  color: #ffffff;
}

.cp-header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.cp-login-chip,
.cp-join-chip {
  min-height: 44px;
  padding: 0 16px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 950;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.22s ease;
}

.cp-login-chip {
  color: #ffd9d9;
  background: rgba(255, 255, 255, 0.075);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.cp-login-chip:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.13);
  transform: translateY(-2px);
}

.cp-join-chip {
  color: #ffffff;
  background: linear-gradient(135deg, #ff3535 0%, #ff7043 55%, #ffb347 100%);
  border: 1px solid transparent;
  box-shadow: 0 15px 34px rgba(255, 56, 56, 0.3);
}

.cp-join-chip:hover {
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 20px 44px rgba(255, 56, 56, 0.4);
}

/* ===== MAIN ===== */

.cp-register-main {
  position: relative;
  padding: 68px 0 92px;
}

.cp-register-main::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.86), transparent);
  pointer-events: none;
}

.cp-bg-orb {
  position: absolute;
  z-index: 0;
  border-radius: 999px;
  pointer-events: none;
  filter: blur(2px);
  animation: cpFloat 10s ease-in-out infinite;
}

.cp-bg-orb-one {
  width: 270px;
  height: 270px;
  left: -90px;
  top: 110px;
  background: rgba(255, 53, 53, 0.18);
}

.cp-bg-orb-two {
  width: 320px;
  height: 320px;
  right: -120px;
  bottom: 80px;
  background: rgba(255, 179, 71, 0.14);
  animation-delay: 1.5s;
}

.cp-bg-orb-three {
  width: 190px;
  height: 190px;
  left: 38%;
  bottom: 10px;
  background: rgba(255, 112, 67, 0.11);
  animation-delay: 3s;
}

.cp-register-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(520px, 1fr);
  gap: 48px;
  align-items: center;
}

/* ===== LEFT COPY ===== */

.cp-register-copy {
  max-width: 620px;
}

.cp-eyebrow {
  width: fit-content;
  margin-bottom: 22px;
  padding: 10px 16px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #ffd9d9;
  background: rgba(255, 82, 82, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 14px;
  font-weight: 950;
}

.cp-eyebrow i {
  color: #ffb347;
  font-size: 18px;
}

.cp-register-copy h1 {
  max-width: 680px;
  margin: 0 0 22px;
  color: #ffffff;
  font-size: clamp(42px, 5.4vw, 70px);
  line-height: 1;
  font-weight: 950;
  letter-spacing: -3px;
}

.cp-register-copy p {
  max-width: 610px;
  margin: 0 0 30px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
  line-height: 1.75;
}

.cp-benefits {
  display: grid;
  gap: 13px;
  max-width: 540px;
}

.cp-benefit {
  padding: 18px;
  border-radius: 22px;
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 14px;
  align-items: center;
  background: rgba(255, 255, 255, 0.085);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.22);
}

.cp-benefit i {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: linear-gradient(135deg, #ff3535, #ff7043, #ffb347);
  box-shadow: 0 12px 28px rgba(255, 56, 56, 0.28);
  font-size: 22px;
}

.cp-benefit strong {
  display: block;
  margin-bottom: 4px;
  color: #ffffff;
  font-size: 18px;
  line-height: 1.15;
  font-weight: 950;
}

.cp-benefit span {
  display: block;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  line-height: 1.45;
  font-weight: 800;
}

/* ===== FORM CARD ===== */

.cp-register-card {
  position: relative;
  justify-self: end;
  width: 100%;
  max-width: 650px;
  overflow: hidden;
  padding: 30px;
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.095);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow:
    0 38px 96px rgba(0, 0, 0, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.cp-card-glow {
  position: absolute;
  top: -110px;
  right: -110px;
  width: 250px;
  height: 250px;
  border-radius: 999px;
  background:
    radial-gradient(circle, rgba(255, 179, 71, 0.26), transparent 62%),
    radial-gradient(circle, rgba(255, 53, 53, 0.22), transparent 70%);
  pointer-events: none;
}

.cp-form-head,
.cp-alert,
.cp-form {
  position: relative;
  z-index: 2;
}

.cp-form-head {
  margin-bottom: 24px;
  display: flex;
  gap: 15px;
  align-items: flex-start;
}

.cp-form-icon {
  width: 54px;
  height: 54px;
  flex: 0 0 54px;
  border-radius: 19px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: linear-gradient(135deg, #ff3535, #ff7043, #ffb347);
  box-shadow: 0 18px 38px rgba(255, 56, 56, 0.34);
}

.cp-form-icon i {
  font-size: 26px;
}

.cp-form-head h2 {
  margin: 0 0 7px;
  color: #ffffff;
  font-size: 34px;
  line-height: 1;
  font-weight: 950;
  letter-spacing: -1.1px;
}

.cp-form-head p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 15px;
  line-height: 1.55;
}

/* ===== ALERTS ===== */

.cp-alert {
  margin-bottom: 18px;
  padding: 15px;
  border-radius: 20px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.cp-alert-icon {
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.cp-alert-icon i {
  font-size: 20px;
}

.cp-alert-body {
  flex: 1;
  min-width: 0;
}

.cp-alert-body p {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
}

.cp-alert-body ul {
  margin: 0;
  padding-left: 18px;
}

.cp-alert-body li {
  margin: 3px 0;
  font-size: 14px;
  line-height: 1.45;
}

.cp-alert-error {
  color: #ffd6d6;
  background: rgba(239, 68, 68, 0.14);
  border: 1px solid rgba(239, 68, 68, 0.26);
}

.cp-alert-error .cp-alert-icon {
  color: #ffffff;
  background: #ef4444;
}

.cp-alert-success {
  color: #d8ffe5;
  background: rgba(34, 197, 94, 0.13);
  border: 1px solid rgba(34, 197, 94, 0.24);
}

.cp-alert-success .cp-alert-icon {
  color: #ffffff;
  background: #22c55e;
}

/* ===== FORM ===== */

.cp-form {
  display: grid;
  gap: 15px;
}

.cp-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.cp-field {
  display: grid;
  gap: 8px;
}

.cp-field label {
  color: #ffffff;
  font-size: 13px;
  font-weight: 950;
}

.cp-input-wrap {
  min-height: 54px;
  padding: 0 15px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(0, 0, 0, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.13);
  transition: all 0.22s ease;
}

.cp-input-wrap:focus-within {
  background: rgba(0, 0, 0, 0.32);
  border-color: rgba(255, 112, 67, 0.64);
  box-shadow: 0 0 0 4px rgba(255, 82, 82, 0.13);
}

.cp-input-wrap i {
  color: #ffb19d;
  font-size: 19px;
}

.cp-input-wrap input {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  color: #ffffff;
  background: transparent;
  font-size: 15px;
  font-weight: 800;
}

.cp-input-wrap input::placeholder {
  color: rgba(255, 255, 255, 0.42);
  font-weight: 750;
}

.cp-recaptcha-box {
  width: 100%;
  overflow: hidden;
  padding: 12px;
  border-radius: 18px;
  background: rgba(0, 0, 0, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.13);
}

.cp-error-text {
  color: #ffb4b4;
  font-size: 13px;
  font-weight: 800;
}

.cp-agreement {
  padding: 15px;
  border-radius: 18px;
  display: flex;
  align-items: flex-start;
  gap: 11px;
  color: rgba(255, 255, 255, 0.76);
  background:
    radial-gradient(circle at 10% 0%, rgba(255, 179, 71, 0.12), transparent 36%),
    rgba(0, 0, 0, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.55;
}

.cp-agreement i {
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  border-radius: 13px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: rgba(255, 82, 82, 0.2);
  font-size: 18px;
}

.cp-agreement a {
  color: #ffb19d;
  font-weight: 950;
  text-decoration: none;
}

.cp-agreement a:hover {
  color: #ffffff;
}

.cp-submit-btn {
  width: 100%;
  min-height: 58px;
  margin-top: 2px;
  border: 0;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  color: #ffffff;
  background: linear-gradient(135deg, #ff3535 0%, #ff7043 55%, #ffb347 100%);
  box-shadow: 0 20px 48px rgba(255, 56, 56, 0.34);
  cursor: pointer;
  font-size: 15px;
  font-weight: 950;
  transition: all 0.23s ease;
}

.cp-submit-btn i {
  font-size: 19px;
}

.cp-submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 26px 58px rgba(255, 56, 56, 0.44);
}

.cp-form-footer {
  margin-top: 2px;
  padding: 16px;
  border-radius: 18px;
  display: flex;
  justify-content: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.68);
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 14px;
  font-weight: 800;
  text-align: center;
}

.cp-form-footer a {
  color: #ffffff;
  font-weight: 950;
  text-decoration: none;
}

.cp-form-footer a:hover {
  color: #ffb347;
}

/* ===== BANNERS ===== */

.cp-banners {
  position: relative;
  z-index: 3;
  margin-top: 46px;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  justify-content: center;
}

.cp-banner-box {
  width: 100%;
  max-width: 520px;
  padding: 18px;
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.075);
  border: 1px solid rgba(255, 255, 255, 0.13);
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.24);
}

.cp-banner-adaptive {
  width: 468px;
  max-width: 100%;
  height: 60px;
  max-height: 60px;
  overflow: hidden;
  line-height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #190305;
  border-radius: 6px;
}

.cp-banner-adaptive a,
.cp-banner-adaptive img,
.cp-banner-adaptive iframe,
.cp-banner-adaptive object,
.cp-banner-adaptive embed {
  display: block;
  width: 468px;
  max-width: 100%;
  height: 60px;
  max-height: 60px;
  margin: 0;
  padding: 0;
  border: 0;
}

.cp-banner-adaptive img {
  object-fit: fill;
}

.cp-banner-adaptive iframe {
  overflow: hidden;
}

/* ===== FOOTER ===== */

.cp-footer {
  position: relative;
  z-index: 3;
  padding: 0 0 28px;
}

.cp-footer-wrap {
  padding: 20px;
  border-radius: 24px;
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 22px;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(255, 53, 53, 0.12), rgba(255, 255, 255, 0.045)),
    rgba(8, 0, 1, 0.68);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-left: 4px solid #ff3535;
  box-shadow: 0 22px 58px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.cp-footer-brand {
  min-width: 0;
}

.cp-footer-logo {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #ffffff;
  font-size: 17px;
  font-weight: 950;
  letter-spacing: -0.4px;
  text-decoration: none;
}

.cp-footer-uploaded-logo {
  display: block;
  width: auto;
  max-width: 220px;
  max-height: 44px;
  object-fit: contain;
  filter: drop-shadow(0 10px 22px rgba(255, 56, 56, 0.28));
}

.cp-footer-mark {
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background:
    radial-gradient(circle at 28% 22%, rgba(255, 255, 255, 0.38), transparent 30%),
    linear-gradient(135deg, #ff3535, #ff7043, #ffb347);
  box-shadow: 0 12px 26px rgba(255, 56, 56, 0.24);
}

.cp-footer-mark i {
  font-size: 20px;
}

.cp-footer-links {
  display: flex;
  align-items: center;
  gap: 10px;
}

.cp-footer-links a {
  min-height: 38px;
  padding: 0 13px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.72);
  background: rgba(0, 0, 0, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.22s ease;
}

.cp-footer-links a:hover {
  color: #ffffff;
  background: linear-gradient(135deg, #ff3535, #ff7043);
  transform: translateY(-2px);
}

.cp-footer-powered {
  min-height: 42px;
  padding: 0 15px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.62);
  background: rgba(0, 0, 0, 0.22);
  font-size: 13px;
  font-weight: 850;
  white-space: nowrap;
}

.cp-footer-powered a {
  color: #ffb19d;
  font-weight: 950;
  text-decoration: none;
}

.cp-footer-powered a:hover {
  color: #ffffff;
}

/* ===== REFERRER TOAST ===== */

.cp-referrer-toast {
  position: fixed;
  top: 22px;
  right: 22px;
  z-index: 1000;
  width: min(330px, calc(100% - 32px));
  padding: 14px 48px 14px 14px;
  border-radius: 22px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(255, 53, 53, 0.2), rgba(255, 179, 71, 0.1)),
    rgba(12, 1, 2, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.cp-referrer-toast-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 28px;
  height: 28px;
  border: 0;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.09);
  cursor: pointer;
}

.cp-referrer-toast-close:hover {
  background: rgba(255, 255, 255, 0.16);
}

.cp-referrer-avatar {
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  padding: 3px;
  border-radius: 16px;
  background: linear-gradient(135deg, #ff3535, #ff7043, #ffb347);
}

.cp-referrer-avatar img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 13px;
  object-fit: cover;
}

.cp-referrer-content {
  flex: 1;
  min-width: 0;
}

.cp-referrer-content span {
  display: block;
  margin-bottom: 3px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 12px;
  font-weight: 800;
}

.cp-referrer-content strong {
  display: block;
  color: #ffffff;
  font-size: 16px;
  font-weight: 950;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* ===== ANIMATIONS ===== */

@keyframes cpFloat {
  0%,
  100% {
    transform: translateY(0) translateX(0);
  }

  50% {
    transform: translateY(-22px) translateX(14px);
  }
}

/* ===== RESPONSIVE ===== */

@media (max-width: 1120px) {
  .cp-header-inner {
    grid-template-columns: 1fr auto;
  }

  .cp-header-status {
    display: none;
  }

  .cp-header-links {
    order: 3;
    grid-column: 1 / -1;
    justify-content: center;
    padding-top: 4px;
  }

  .cp-register-layout {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .cp-register-copy {
    max-width: 820px;
    margin: 0 auto;
    text-align: center;
  }

  .cp-eyebrow {
    margin-left: auto;
    margin-right: auto;
  }

  .cp-register-copy p {
    margin-left: auto;
    margin-right: auto;
  }

  .cp-benefits {
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
  }

  .cp-register-card {
    max-width: 680px;
    justify-self: center;
  }
}

@media (max-width: 760px) {
  .cp-header {
    padding: 10px 10px 0;
  }

  .cp-header-inner {
    grid-template-columns: 1fr;
    justify-items: center;
    padding: 16px;
    border-radius: 18px;
  }

  .cp-brand {
    justify-content: center;
  }

  .cp-brand-logo {
    max-width: 210px;
    max-height: 48px;
  }

  .cp-brand-text {
    font-size: 20px;
  }

  .cp-header-links {
    width: 100%;
    flex-wrap: wrap;
    justify-content: center;
    order: unset;
    grid-column: auto;
  }

  .cp-header-links a {
    flex: 1 1 auto;
    min-width: 92px;
    justify-content: center;
    background: rgba(255, 255, 255, 0.055);
    border-color: rgba(255, 255, 255, 0.08);
  }

  .cp-header-actions {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .cp-login-chip,
  .cp-join-chip {
    width: 100%;
  }

  .cp-register-main {
    padding: 48px 0 64px;
  }

  .cp-register-copy h1 {
    font-size: clamp(36px, 12vw, 54px);
    letter-spacing: -2px;
  }

  .cp-register-copy p {
    font-size: 16px;
  }

  .cp-register-card {
    max-width: 100%;
    padding: 24px;
    border-radius: 28px;
  }

  .cp-form-head {
    display: grid;
    text-align: center;
    justify-items: center;
  }

  .cp-form-head h2 {
    font-size: 30px;
  }

  .cp-form-grid {
    grid-template-columns: 1fr;
  }

  .cp-agreement {
    text-align: left;
  }

  .cp-banners {
    margin-top: 34px;
  }

  .cp-banner-box {
    max-width: 100%;
    padding: 14px;
    border-radius: 20px;
  }

  .cp-footer-wrap {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .cp-footer-logo {
    margin-left: auto;
    margin-right: auto;
  }

  .cp-footer-links {
    flex-wrap: wrap;
    justify-content: center;
  }

  .cp-referrer-toast {
    top: 12px;
    right: 12px;
    left: 12px;
    width: auto;
  }
}

@media (max-width: 430px) {
  .cp-container {
    padding: 0 14px;
  }

  .cp-brand {
    width: 100%;
  }

  .cp-brand-logo {
    max-width: 190px;
    max-height: 44px;
  }

  .cp-brand-text {
    white-space: normal;
  }

  .cp-header-links a {
    min-width: calc(50% - 6px);
  }

  .cp-header-actions {
    grid-template-columns: 1fr;
  }

  .cp-register-card {
    padding: 20px;
  }

  .cp-benefit {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .cp-benefit i {
    margin: 0 auto;
  }

  .cp-input-wrap {
    min-height: 54px;
    border-radius: 16px;
  }

  .cp-submit-btn {
    min-height: 56px;
    border-radius: 16px;
  }

  .cp-form-footer {
    display: grid;
  }

  .cp-banner-adaptive {
    transform: scale(0.72);
    transform-origin: center;
  }

  .cp-banner-box {
    height: 78px;
  }

  .cp-footer-wrap {
    padding: 18px;
    border-radius: 20px;
  }

  .cp-footer-uploaded-logo {
    max-width: 190px;
    max-height: 42px;
  }

  .cp-footer-links {
    display: grid;
    width: 100%;
  }

  .cp-footer-links a,
  .cp-footer-powered {
    width: 100%;
    justify-content: center;
  }
}

/* ===== REQUEST VERIFICATION VIEW EXTRA STYLES ===== */

.cp-verification-layout {
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 520px);
  align-items: center;
}

.cp-verification-copy {
  max-width: 640px;
}

.cp-verification-card {
  max-width: 520px;
}

.cp-verification-steps {
  max-width: 560px;
}

.cp-verification-note {
  padding: 15px;
  border-radius: 18px;
  display: flex;
  align-items: flex-start;
  gap: 11px;
  color: rgba(255, 255, 255, 0.76);
  background:
    radial-gradient(circle at 10% 0%, rgba(255, 179, 71, 0.12), transparent 36%),
    rgba(0, 0, 0, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.55;
}

.cp-verification-note i {
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  border-radius: 13px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: rgba(255, 82, 82, 0.2);
  font-size: 18px;
}

.cp-verification-note span {
  display: block;
}

@media (max-width: 1120px) {
  .cp-verification-layout {
    grid-template-columns: 1fr;
  }

  .cp-verification-copy {
    max-width: 820px;
  }

  .cp-verification-card {
    max-width: 560px;
    justify-self: center;
  }

  .cp-verification-steps {
    max-width: 680px;
  }
}

@media (max-width: 760px) {
  .cp-verification-card {
    max-width: 100%;
  }

  .cp-verification-note {
    text-align: left;
  }
}