:root {
  --background: 217 33% 17%;
  --foreground: 210 20% 98%;
  --card: 215 28% 14%;
  --card-foreground: 210 20% 98%;
  --primary: 1 76% 55%;
  --primary-foreground: 0 0% 100%;
  --muted: 222 47% 11%;
  --muted-foreground: 215 16% 65%;
  --border: 215 20% 28%;
  --input: 215 20% 28%;
  --ring: 1 76% 55%;
  --radius: 0.75rem;

  --cl-bg-base: #111827;
  --cl-bg-surface: #1f2937;
  --cl-bg-elevated: #253041;
  --cl-dark: #f3f4f6;
  --cl-accent: #e53734;
  --cl-accent-hover: #ff4d4a;
  --cl-surface: #1f2937;
  --cl-muted: #9ca3af;
  --cl-border: hsl(var(--border));
  --cl-radius: var(--radius);
  --cl-shadow: 0 4px 24px -4px rgb(0 0 0 / 0.45);
  --cl-font: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;

  --cl-card-bg: #ffffff;
  --cl-card-bg-muted: #f9fafb;
  --cl-card-bg-accent: #fef2f2;
  --cl-card-text: #111827;
  --cl-card-text-muted: #6b7280;
  --cl-card-border: #e5e7eb;
  --cl-card-shadow: 0 8px 32px -8px rgba(0, 0, 0, 0.18), 0 2px 8px rgba(0, 0, 0, 0.06);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

html,
body {
  margin: 0;
  padding: 0;
  background: var(--cl-bg-base);
  color: hsl(var(--foreground));
  font-family: var(--cl-font);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.challenge-landing-page {
  background: var(--cl-bg-base);
}

.cl-page {
  min-height: 100vh;
  background:
    radial-gradient(ellipse 80% 50% at 50% -20%, rgba(229, 55, 52, 0.12), transparent),
    radial-gradient(ellipse 60% 40% at 100% 50%, rgba(59, 130, 246, 0.06), transparent),
    radial-gradient(ellipse 50% 30% at 0% 80%, rgba(229, 55, 52, 0.05), transparent),
    var(--cl-bg-base);
}

@keyframes clFadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes clFadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes clScaleIn {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes clHeaderSlideDown {
  from { opacity: 0; transform: translateY(-100%); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes clFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

@keyframes clPulseGlow {
  0%, 100% { opacity: 0.4; transform: scale(1); }
  50% { opacity: 0.7; transform: scale(1.05); }
}

.cl-animate-fade-in {
  animation: clFadeIn 0.55s ease-out both;
}

.cl-animate-fade-in-up {
  animation: clFadeInUp 0.6s ease-out both;
}

.cl-animate-scale-in {
  animation: clScaleIn 0.65s cubic-bezier(0.16, 1, 0.3, 1) both;
}

/* Site header */
.cl-site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  animation: clHeaderSlideDown 0.5s cubic-bezier(0.16, 1, 0.3, 1) both;
  transition: background 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.cl-site-header.is-scrolled {
  background: rgba(17, 24, 39, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(55, 65, 81, 0.8);
  box-shadow: 0 8px 32px -8px rgba(0, 0, 0, 0.5);
}

.cl-site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  max-width: 1120px;
  margin: 0 auto;
  padding: 14px 24px;
}

.cl-site-header__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  transition: transform 0.25s ease;
}

.cl-site-header__logo:hover {
  transform: scale(1.03);
}

.cl-site-header__logo img {
  display: block;
  height: 32px;
  width: auto;
  max-width: 150px;
  transition: opacity 0.3s ease;
}

.cl-site-header.is-scrolled .cl-site-header__logo img {
  opacity: 1;
}

.cl-site-header__nav-wrap {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-left: auto;
}

.cl-site-header__nav {
  display: flex;
  align-items: center;
  gap: 4px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.cl-site-header__link {
  position: relative;
  display: inline-flex;
  padding: 8px 14px;
  border-radius: calc(var(--radius) - 2px);
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  transition: color 0.2s ease, background 0.2s ease;
}

.cl-site-header__link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--cl-accent);
  border-radius: 1px;
  transform: translateX(-50%);
  transition: width 0.25s ease;
}

.cl-site-header__link:hover,
.cl-site-header__link.is-active {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

.cl-site-header__link.is-active::after {
  width: calc(100% - 28px);
}

.cl-site-header.is-scrolled .cl-site-header__link {
  color: rgba(255, 255, 255, 0.85);
}

.cl-site-header.is-scrolled .cl-site-header__link:hover,
.cl-site-header.is-scrolled .cl-site-header__link.is-active {
  color: #fff;
  background: rgba(229, 55, 52, 0.15);
}

.cl-site-header__user {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 6px 10px 6px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
}

.cl-site-header.is-scrolled .cl-site-header__user {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
}

.cl-site-header__user[hidden] {
  display: none !important;
}

.cl-site-header__user-info {
  display: flex;
  flex-direction: column;
  gap: 1px;
  min-width: 0;
}

.cl-site-header__user-name,
.cl-site-header__user-email {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 140px;
}

.cl-site-header__user-name {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
}

.cl-site-header__user-email {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.8);
}

.cl-site-header.is-scrolled .cl-site-header__user-name {
  color: #fff;
}

.cl-site-header.is-scrolled .cl-site-header__user-email {
  color: rgba(255, 255, 255, 0.7);
}

.cl-site-header__logout {
  padding: 6px 12px !important;
  font-size: 12px !important;
  min-height: auto !important;
}

.cl-site-header.is-scrolled .cl-btn--ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.2);
}

.cl-site-header__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.1);
  cursor: pointer;
  margin-left: auto;
}

.cl-site-header__toggle span {
  display: block;
  height: 2px;
  background: #fff;
  border-radius: 1px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.cl-site-header.is-scrolled .cl-site-header__toggle {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.06);
}

.cl-site-header.is-scrolled .cl-site-header__toggle span {
  background: #fff;
}

.cl-site-header__toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.cl-site-header__toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.cl-site-header__toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (prefers-reduced-motion: reduce) {
  .cl-animate-fade-in,
  .cl-animate-fade-in-up,
  .cl-animate-scale-in,
  .cl-site-header,
  .cl-auth-modal__dialog,
  .cl-hero__mesh,
  .cl-hero__glow,
  .cl-hero__cta-pulse,
  .cl-hero__cta::before,
  .cl-hero__cta-icon,
  .cl-hero__scroll-hint-dot {
    animation: none !important;
  }
}

.cl-hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--cl-bg-base);
  overflow: hidden;
  padding-top: 72px;
}

.cl-hero--has-banner {
  min-height: 100vh;
  min-height: 100dvh;
  height: 100vh;
  height: 100dvh;
  display: block;
  background-color: var(--cl-bg-base);
  padding-top: 0;
}

.cl-hero__bg-fallback {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #1f2937 0%, #111827 50%, #1f2937 100%);
}

.cl-hero__media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  line-height: 0;
  overflow: hidden;
  background: var(--cl-bg-base);
}

.cl-hero__banner-bg {
  position: absolute;
  inset: -8%;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  filter: blur(28px) brightness(1.05) saturate(1.1);
  transform: scale(1.08);
  pointer-events: none;
  z-index: 0;
}

.cl-hero__banner {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  max-width: 100%;
  object-fit: contain;
  object-position: center top;
  filter: brightness(1.08) contrast(1.02);
}

.cl-hero__banner-shadow {
  position: absolute;
  left: 50%;
  right: auto;
  bottom: 0;
  top: var(--hero-displayed-height, 100%);
  z-index: 1;
  width: var(--hero-displayed-width, 100%);
  transform: translateX(-50%);
  background-size: 100% auto;
  background-repeat: no-repeat;
  background-position: center top;
  filter: blur(22px) brightness(1.05) saturate(1.05);
  opacity: 0.55;
  pointer-events: none;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.6) 55%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.6) 55%, transparent 100%);
}

.cl-hero__banner-shadow[hidden] {
  display: none;
}

.cl-hero__bottom-fade {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  height: 180px;
  background: linear-gradient(to bottom, transparent 0%, var(--cl-bg-base) 88%);
  pointer-events: none;
}

.cl-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.08) 0%,
    rgba(17, 24, 39, 0.06) 40%,
    rgba(17, 24, 39, 0.22) 100%
  );
  pointer-events: none;
}

.cl-hero__overlay--solid {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(31, 41, 55, 0.7) 0%,
    rgba(31, 41, 55, 0.85) 60%,
    rgba(229, 55, 52, 0.35) 100%
  );
}

.cl-hero__mesh {
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: 0.35;
  background-image:
    radial-gradient(at 20% 30%, rgba(229, 55, 52, 0.12) 0, transparent 50%),
    radial-gradient(at 80% 20%, rgba(255, 255, 255, 0.18) 0, transparent 40%),
    radial-gradient(at 50% 80%, rgba(229, 55, 52, 0.08) 0, transparent 45%);
  pointer-events: none;
  animation: clPulseGlow 8s ease-in-out infinite;
}

.cl-hero__glow {
  position: absolute;
  z-index: 3;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  opacity: 0.18;
}

.cl-hero__glow--left {
  left: -120px;
  bottom: -80px;
  background: var(--cl-accent);
  animation: clPulseGlow 6s ease-in-out infinite;
}

.cl-hero__glow--right {
  right: -100px;
  top: 20%;
  background: rgba(255, 255, 255, 0.15);
  animation: clPulseGlow 7s ease-in-out infinite 1s;
}

.cl-hero__content {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  padding: 64px 24px 72px;
}

.cl-hero__content--center {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.cl-hero--has-banner .cl-hero__content {
  position: absolute;
  inset: 0;
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 88px 24px 56px;
}

.cl-hero__user-name {
  color: inherit;
}

.cl-hero__user-email {
  color: inherit;
  opacity: 0.85;
}

.cl-hero__logout {
  flex-shrink: 0;
}

.cl-btn--ghost {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.28);
}

.cl-btn--ghost:hover,
.cl-btn--ghost:focus {
  background: rgba(255, 255, 255, 0.22);
  color: #fff;
}

.cl-hero__logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 120px;
  height: 120px;
  margin-bottom: 24px;
  padding: 16px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 20px 50px -12px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(8px);
}

.cl-hero__logo {
  display: block;
  width: 100%;
  height: 100%;
  max-width: 88px;
  max-height: 88px;
  object-fit: contain;
}

.cl-hero__eyebrow {
  margin: 0 0 12px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.35);
}

.cl-hero__title {
  margin: 0 0 16px;
  color: #fff;
  font-size: clamp(2.25rem, 6vw, 3.5rem);
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -0.03em;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.45), 0 1px 3px rgba(0, 0, 0, 0.35);
}

.cl-hero__subtitle {
  margin: 0 0 28px;
  max-width: 640px;
  color: rgba(255, 255, 255, 0.95);
  font-size: 1.05rem;
  line-height: 1.65;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.4);
}

.cl-hero__subtitle p {
  margin: 0;
}

.cl-hero__cta-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin-top: 4px;
  transition: opacity 0.35s ease;
}

.cl-hero__scroll-hint {
  transition: opacity 0.35s ease, color 0.2s ease, transform 0.2s ease;
}

.cl-hero__cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 999px;
  background: var(--cl-accent);
  color: #fff;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  overflow: visible;
  box-shadow: 0 8px 28px -4px rgba(229, 55, 52, 0.55);
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.25s ease, background 0.2s ease;
}

.cl-hero__cta-pulse {
  position: absolute;
  inset: -4px;
  border-radius: 999px;
  border: 2px solid rgba(229, 55, 52, 0.5);
  animation: clCtaPulse 2.2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
  pointer-events: none;
}

@keyframes clCtaPulse {
  0% { transform: scale(1); opacity: 0.8; }
  70% { transform: scale(1.12); opacity: 0; }
  100% { transform: scale(1.12); opacity: 0; }
}

.cl-hero__cta::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(105deg, transparent 40%, rgba(255, 255, 255, 0.25) 50%, transparent 60%);
  background-size: 200% 100%;
  animation: clCtaShimmer 3s ease-in-out infinite;
  pointer-events: none;
}

@keyframes clCtaShimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

.cl-hero__cta-label,
.cl-hero__cta-icon {
  position: relative;
  z-index: 1;
}

.cl-hero__cta-icon {
  display: flex;
  animation: clCtaBounce 1.8s ease-in-out infinite;
}

@keyframes clCtaBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(4px); }
}

.cl-hero__cta:hover {
  background: var(--cl-accent-hover);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 16px 40px -6px rgba(229, 55, 52, 0.6);
}

.cl-hero__cta:active {
  transform: translateY(-1px) scale(0.98);
}

.cl-hero__cta.is-scrolling {
  pointer-events: none;
  opacity: 0.85;
}

.cl-hero__cta.is-scrolling .cl-hero__cta-icon {
  animation: clCtaScrollSpin 0.6s ease-in-out infinite;
}

@keyframes clCtaScrollSpin {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

.cl-hero__scroll-hint {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.2s ease, transform 0.2s ease;
}

.cl-hero__scroll-hint:hover {
  color: #fff;
  transform: translateY(2px);
}

.cl-hero__scroll-hint-track {
  display: block;
  width: 24px;
  height: 38px;
  border: 2px solid rgba(255, 255, 255, 0.45);
  border-radius: 12px;
  position: relative;
}

.cl-hero__scroll-hint-dot {
  position: absolute;
  left: 50%;
  top: 8px;
  width: 4px;
  height: 8px;
  margin-left: -2px;
  background: #fff;
  border-radius: 2px;
  animation: clScrollDot 1.6s ease-in-out infinite;
}

@keyframes clScrollDot {
  0% { opacity: 1; transform: translateY(0); }
  80% { opacity: 0; transform: translateY(14px); }
  100% { opacity: 0; transform: translateY(14px); }
}

.cl-hero__scroll-hint-text {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cl-main {
  max-width: 1120px;
  margin: 0 auto;
  padding: 32px 24px 64px;
  position: relative;
  z-index: 2;
}

.cl-panel .cl-rounds__header {
  position: relative;
  margin-bottom: 28px;
  padding: 0 0 22px 0;
  text-align: left;
  border-bottom: 1px solid var(--cl-card-border);
  overflow: hidden;
}

.cl-panel .cl-rounds__header::after {
  content: '';
  position: absolute;
  top: -20px;
  right: -10px;
  width: 140px;
  height: 100px;
  opacity: 0.1;
  pointer-events: none;
  background: var(--cl-section-watermark, none) center / contain no-repeat;
}

.cl-content-sections {
  padding-top: 0;
}

.cl-panel {
  position: relative;
  --cl-dark: var(--cl-card-text);
  --cl-muted: var(--cl-card-text-muted);
  background: var(--cl-card-bg);
  color: var(--cl-card-text);
  border: 1px solid var(--cl-card-border);
  border-radius: calc(var(--radius) + 6px);
  box-shadow: var(--cl-card-shadow);
  padding: 36px;
  text-align: left;
  transition: box-shadow 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
  overflow: hidden;
}

.cl-panel::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--cl-accent), rgba(229, 55, 52, 0.3), transparent);
  opacity: 0.85;
}

.cl-panel:hover {
  border-color: rgba(229, 55, 52, 0.22);
  box-shadow:
    0 16px 48px -10px rgba(0, 0, 0, 0.2),
    0 4px 12px rgba(0, 0, 0, 0.06);
}

.cl-panel .cl-section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  box-shadow: none;
  color: #374151;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  line-height: 1.2;
  text-transform: uppercase;
  -webkit-font-smoothing: antialiased;
}

.cl-panel .cl-section-eyebrow::before {
  content: '';
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 11px;
  background:
    var(--cl-section-icon) center / 22px 22px no-repeat,
    linear-gradient(145deg, #fff5f5 0%, #fef2f2 100%);
  border: 1px solid rgba(229, 55, 52, 0.18);
  box-shadow: 0 4px 14px -6px rgba(229, 55, 52, 0.2);
}

.cl-panel .cl-section-eyebrow::after {
  content: '';
  flex-shrink: 0;
  width: 32px;
  height: 1px;
  margin-left: 2px;
  background: linear-gradient(90deg, var(--cl-accent), transparent);
}

#prizeRewards .cl-section-eyebrow::before {
  --cl-section-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23e53734' stroke-width='1.75'%3E%3Cpath d='M8 21h8M12 17v4M7 4h10l1 5H6l1-5zM6 9c0 3.3 2.7 6 6 6s6-2.7 6-6'/%3E%3C/svg%3E");
}

#prizeRewards .cl-rounds__header::after {
  --cl-section-watermark: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 80' fill='none'%3E%3Cpath d='M60 8l12 22h26l-21 16 8 25-25-15-25 15 8-25-21-16h26z' stroke='%23e53734' stroke-width='1.5'/%3E%3C/svg%3E");
}

#whyParticipate .cl-section-eyebrow::before {
  --cl-section-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23e53734' stroke-width='1.75'%3E%3Cpath d='M12 3l2.4 7.4H22l-6 4.6 2.3 7-6.3-4.6L5.7 22l2.3-7-6-4.6h7.6z'/%3E%3C/svg%3E");
}

#whyParticipate .cl-rounds__header::after {
  --cl-section-watermark: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 80' fill='none'%3E%3Cpath d='M60 12l8 16 18 2-13 13 3 18-16-9-16 9 3-18-13-13 18-2z' stroke='%23e53734' stroke-width='1.5'/%3E%3C/svg%3E");
}

#rules-guidelines .cl-section-eyebrow::before {
  --cl-section-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23e53734' stroke-width='1.75'%3E%3Cpath d='M12 22s8-4 8-10V5l-8-3-8 3v7c0 6 8 10 8 10z'/%3E%3Cpath d='M9 12l2 2 4-4'/%3E%3C/svg%3E");
}

#rules-guidelines .cl-rounds__header::after {
  --cl-section-watermark: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 80' fill='none'%3E%3Cpath d='M60 10l30 12v18c0 16-30 28-30 28S30 56 30 40V22l30-12z' stroke='%23e53734' stroke-width='1.5'/%3E%3C/svg%3E");
}

#general-terms .cl-section-eyebrow::before {
  --cl-section-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23e53734' stroke-width='1.75'%3E%3Cpath d='M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8z'/%3E%3Cpath d='M14 2v6h6M8 13h8M8 17h8M8 9h2'/%3E%3C/svg%3E");
}

#general-terms .cl-rounds__header::after {
  --cl-section-watermark: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 80' fill='none'%3E%3Crect x='28' y='8' width='64' height='64' rx='4' stroke='%23e53734' stroke-width='1.5'/%3E%3Cpath d='M40 24h40M40 36h40M40 48h24' stroke='%23e53734' stroke-width='1.5'/%3E%3C/svg%3E");
}

#faqs .cl-section-eyebrow::before {
  --cl-section-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23e53734' stroke-width='1.75'%3E%3Ccircle cx='12' cy='12' r='9'/%3E%3Cpath d='M9.5 9a2.5 2.5 0 0 1 4 2c0 2-2.5 2-2.5 4'/%3E%3Ccircle cx='12' cy='17' r='.8' fill='%23e53734'/%3E%3C/svg%3E");
}

#faqs .cl-rounds__header::after {
  --cl-section-watermark: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 80' fill='none'%3E%3Ccircle cx='60' cy='36' r='24' stroke='%23e53734' stroke-width='1.5'/%3E%3Cpath d='M48 36h24M60 24v24' stroke='%23e53734' stroke-width='1.5'/%3E%3C/svg%3E");
}

#cl-challenge-details .cl-section-eyebrow::before {
  --cl-section-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23e53734' stroke-width='1.75'%3E%3Crect x='3' y='3' width='7' height='7' rx='1'/%3E%3Crect x='14' y='3' width='7' height='7' rx='1'/%3E%3Crect x='3' y='14' width='7' height='7' rx='1'/%3E%3Crect x='14' y='14' width='7' height='7' rx='1'/%3E%3C/svg%3E");
}

#cl-challenge-details .cl-rounds__header::after {
  --cl-section-watermark: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 80' fill='none'%3E%3Cpath d='M10 40h100M60 10v60' stroke='%23e53734' stroke-width='2' opacity='.8'/%3E%3Ccircle cx='60' cy='40' r='28' stroke='%23e53734' stroke-width='1.5' stroke-dasharray='4 6'/%3E%3C/svg%3E");
}

.cl-content-sections .cl-panel {
  margin-bottom: 24px;
}

.cl-content-sections .cl-panel:last-child {
  margin-bottom: 0;
}

.cl-panel .cl-rounds__title {
  margin: 0 0 8px;
  padding-left: 54px;
  font-size: 1.875rem;
  font-weight: 800;
  color: var(--cl-card-text);
  letter-spacing: -0.025em;
  line-height: 1.2;
  -webkit-font-smoothing: antialiased;
}

.cl-panel .cl-rounds__subtitle {
  margin: 0;
  padding-left: 54px;
  color: var(--cl-card-text-muted);
  font-size: 1rem;
  line-height: 1.55;
}

.cl-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.cl-cards--overlap {
  position: relative;
  z-index: 2;
  margin-top: -24px;
}

.cl-cards--single {
  grid-template-columns: minmax(0, 1fr);
  justify-content: start;
}

.cl-round-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  text-align: left;
}

.cl-round-list--multi {
  gap: 16px;
}

.cl-biz-card {
  position: relative;
  overflow: hidden;
}

.cl-biz-card__glow {
  position: absolute;
  top: -40%;
  right: -20%;
  width: 60%;
  height: 80%;
  background: radial-gradient(circle, rgba(229, 55, 52, 0.08) 0%, transparent 70%);
  pointer-events: none;
  transition: transform 0.3s ease;
}

.cl-biz-card:hover .cl-biz-card__glow {
  transform: scale(1.15);
}

.cl-biz-card > *:not(.cl-biz-card__glow) {
  position: relative;
  z-index: 1;
}

.cl-round-item {
  text-align: left;
  padding: 28px;
  background: var(--cl-card-bg-muted);
  border: 1px solid var(--cl-card-border);
  border-radius: calc(var(--radius) + 2px);
  border-left: 3px solid var(--cl-accent);
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.cl-round-item:hover {
  border-color: rgba(229, 55, 52, 0.28);
  border-left-color: var(--cl-accent);
  background: #ffffff;
  box-shadow: 0 10px 28px -10px rgba(0, 0, 0, 0.12), 0 0 0 1px rgba(229, 55, 52, 0.08);
  transform: translateY(-3px);
}

.cl-round-item--horizontal {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  grid-template-rows: auto auto;
  gap: 20px 28px;
  padding: 28px 32px;
  min-height: 0;
  align-items: start;
}

.cl-round-item--horizontal:not(:has(.cl-round-item__metrics)) {
  grid-template-rows: auto;
}

.cl-round-item--horizontal .cl-round-item__body {
  grid-column: 1;
  grid-row: 1;
  align-self: center;
  min-width: 0;
}

.cl-round-item--horizontal .cl-round-item__top {
  margin-bottom: 10px;
  justify-content: flex-start;
}

.cl-round-item--horizontal .cl-round-item__title {
  margin-bottom: 8px;
  font-size: 1.25rem;
}

.cl-round-item--horizontal .cl-round-item__summary {
  margin-bottom: 0;
  font-size: 0.92rem;
  line-height: 1.55;
}

.cl-round-item--horizontal .cl-round-item__metrics {
  grid-column: 1 / -1;
  grid-row: 2;
  width: 100%;
  padding-top: 4px;
  border-top: 1px solid var(--cl-card-border);
}

.cl-round-item--horizontal .cl-biz-metrics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 10px;
  margin: 16px 0 0;
  overflow: visible;
}

.cl-round-item--horizontal .cl-biz-metric {
  min-width: 0;
  padding: 14px 16px;
}

.cl-round-item--horizontal .cl-biz-metric--wide {
  grid-column: 1 / -1;
}

.cl-round-item--horizontal .cl-biz-metric__label {
  font-size: 0.65rem;
}

.cl-round-item--horizontal .cl-biz-metric__value {
  font-size: 0.95rem;
  word-break: break-word;
}

.cl-round-item--horizontal .cl-round-item__actions {
  grid-column: 2;
  grid-row: 1;
  margin: 0;
  align-self: center;
}

.cl-round-item--horizontal .cl-btn--inline {
  min-width: 168px;
  white-space: nowrap;
}

.cl-biz-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 24px;
}

.cl-biz-metric {
  flex: 1 1 calc(50% - 5px);
  min-width: 120px;
  padding: 14px 16px;
  background: #ffffff;
  border: 1px solid var(--cl-card-border);
  border-radius: 10px;
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.cl-biz-metric:hover {
  border-color: rgba(229, 55, 52, 0.22);
  box-shadow: 0 4px 12px -6px rgba(0, 0, 0, 0.08);
}

.cl-biz-metric--accent {
  border-color: rgba(229, 55, 52, 0.22);
  background: var(--cl-card-bg-accent);
}

.cl-biz-metric--accent .cl-biz-metric__value {
  color: var(--cl-accent);
}

.cl-biz-metric--exhausted .cl-biz-metric__value {
  color: var(--cl-muted);
}

.cl-biz-metric--cutoff {
  border-color: rgba(245, 158, 11, 0.28);
  background: rgba(255, 251, 235, 0.92);
}

.cl-biz-metric--cutoff .cl-biz-metric__value {
  color: #b45309;
}

.cl-biz-metric--cutoff .cl-biz-metric__desc {
  margin: 8px 0 0;
  font-size: 0.82rem;
  line-height: 1.55;
  color: #92400e;
  font-weight: 500;
}

.cl-round-item__cutoff-note {
  margin: 10px 0 0;
  max-width: 220px;
  font-size: 0.78rem;
  line-height: 1.45;
  color: #b45309;
  text-align: left;
}

.cl-round-item--horizontal .cl-round-item__cutoff-note {
  max-width: 168px;
}

.cl-biz-metric--wide {
  flex: 1 1 100%;
}

.cl-biz-metric--split {
  display: flex;
  align-items: stretch;
  gap: 0;
  padding: 14px 0;
}

.cl-biz-metric-split__item {
  flex: 1 1 50%;
  min-width: 0;
  padding: 0 16px;
}

.cl-biz-metric-split__item--solo {
  flex-basis: 100%;
}

.cl-biz-metric-split__item + .cl-biz-metric-split__item {
  border-left: 1px solid var(--cl-card-border);
}

.cl-round-item--horizontal .cl-biz-metric--split {
  padding: 10px 0;
}

.cl-round-item--horizontal .cl-biz-metric-split__item {
  padding: 0 12px;
}

.cl-biz-metric__label {
  display: block;
  margin-bottom: 4px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cl-muted);
}

.cl-biz-metric__value {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.35;
  color: var(--cl-dark);
}

.cl-round-item__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}

.cl-round-item__title {
  margin: 0 0 10px;
  font-size: 1.35rem;
  line-height: 1.3;
  color: var(--cl-dark);
  text-align: left;
}

.cl-round-item__summary {
  margin: 0 0 18px;
  color: var(--cl-muted);
  line-height: 1.6;
  font-size: 0.95rem;
  text-align: left;
}

.cl-round-item__stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 0 0 22px;
  padding: 16px;
  background: rgba(17, 24, 39, 0.6);
  border: 1px solid rgba(55, 65, 81, 0.5);
  border-radius: 12px;
}

.cl-round-item__stat {
  margin: 0;
  text-align: left;
}

.cl-round-item__stat--wide {
  grid-column: 1 / -1;
}

.cl-round-item__stat-label {
  margin: 0 0 4px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--cl-muted);
}

.cl-round-item__stat-value {
  margin: 0;
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1.4;
  color: var(--cl-dark);
}

.cl-round-item__actions {
  margin-top: 8px;
  text-align: left;
}

.cl-content-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: left;
}

.cl-content-list--grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  counter-reset: cl-benefit;
}

#whyParticipate .cl-content-item::before {
  counter-increment: cl-benefit;
  content: counter(cl-benefit, decimal-leading-zero);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  margin-bottom: 14px;
  border-radius: 10px;
  background: var(--cl-card-bg-accent);
  border: 1px solid rgba(229, 55, 52, 0.18);
  color: var(--cl-accent);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.cl-content-item {
  text-align: left;
}

.cl-content-list--grid .cl-content-item {
  padding: 24px;
  background: var(--cl-card-bg-muted);
  border: 1px solid var(--cl-card-border);
  border-radius: calc(var(--radius) + 2px);
  border-top: 2px solid rgba(229, 55, 52, 0.45);
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.cl-content-list--grid .cl-content-item:hover {
  border-color: rgba(229, 55, 52, 0.22);
  background: #ffffff;
  box-shadow: 0 10px 28px -10px rgba(0, 0, 0, 0.12);
  transform: translateY(-2px);
}

.cl-content-item__title {
  margin: 0 0 8px;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--cl-dark);
}

.cl-content-item__text {
  margin: 0 0 12px;
  color: var(--cl-muted);
  line-height: 1.6;
  font-size: 0.95rem;
}

.cl-content-item__image {
  display: block;
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

.cl-content-body {
  color: var(--cl-muted);
  line-height: 1.7;
  font-size: 0.95rem;
  text-align: left;
}

.cl-content-body h1,
.cl-content-body h2,
.cl-content-body h3,
.cl-content-body h4,
.cl-content-body strong {
  color: var(--cl-dark);
}

.cl-content-body a {
  color: var(--cl-accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cl-content-body a:hover {
  color: var(--cl-accent-hover);
}

.cl-faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: left;
}

.cl-faq-item {
  padding: 18px 22px;
  background: var(--cl-card-bg-muted);
  border: 1px solid var(--cl-card-border);
  border-radius: calc(var(--radius) + 2px);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.cl-faq-item[open] {
  border-color: rgba(229, 55, 52, 0.22);
  background: #ffffff;
  box-shadow: 0 8px 24px -10px rgba(0, 0, 0, 0.1);
}

.cl-faq-item__question {
  cursor: pointer;
  font-size: 1rem;
  font-weight: 700;
  color: var(--cl-dark);
  list-style: none;
  position: relative;
  padding-right: 28px;
}

.cl-faq-item__question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  background: var(--cl-card-bg-accent);
  color: var(--cl-accent);
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1;
  transition: transform 0.2s ease, background 0.2s ease;
}

.cl-faq-item[open] .cl-faq-item__question::after {
  content: '−';
  background: rgba(229, 55, 52, 0.12);
}

.cl-faq-item__question::-webkit-details-marker {
  display: none;
}

.cl-faq-item__answer {
  margin-top: 12px;
  color: var(--cl-muted);
  line-height: 1.6;
  font-size: 0.95rem;
}

.cl-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: var(--cl-bg-surface);
  border: 1px solid rgba(55, 65, 81, 0.6);
  border-radius: var(--cl-radius);
  box-shadow: var(--cl-shadow);
  padding: 24px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  opacity: 0;
  transform: translateY(18px);
}

.cl-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.cl-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
  border-color: rgba(229, 55, 52, 0.35);
}

.cl-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}

.cl-card__badge {
  display: inline-flex;
  align-items: center;
  padding: 2px 10px;
  border-radius: calc(var(--radius) - 2px);
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1.4;
  border: 1px solid transparent;
  transition: colors 0.2s ease;
}

.cl-card__badge--active {
  background: rgba(229, 55, 52, 0.1);
  color: var(--cl-accent);
  border-color: rgba(229, 55, 52, 0.2);
}

.cl-card__badge--upcoming {
  background: #eff6ff;
  color: #2563eb;
  border-color: #bfdbfe;
}

.cl-card__badge--closed {
  background: #f3f4f6;
  color: #6b7280;
  border-color: #e5e7eb;
}

.cl-card__round {
  font-size: 13px;
  font-weight: 600;
  color: var(--cl-muted);
}

.cl-card__title {
  margin: 0 0 10px;
  font-size: 1.35rem;
  line-height: 1.3;
  color: var(--cl-dark);
}

.cl-card__summary {
  margin: 0 0 18px;
  color: var(--cl-muted);
  line-height: 1.6;
  font-size: 0.95rem;
}

.cl-card__stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 0 0 22px;
  padding: 16px;
  background: rgba(17, 24, 39, 0.6);
  border: 1px solid rgba(55, 65, 81, 0.5);
  border-radius: 12px;
}

.cl-card__stat {
  margin: 0;
}

.cl-card__stat--wide {
  grid-column: 1 / -1;
}

.cl-card__stat-label {
  margin: 0 0 4px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--cl-muted);
}

.cl-card__stat-value {
  margin: 0;
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1.4;
  color: var(--cl-dark);
}

.cl-card__actions {
  margin-top: auto;
  padding-top: 4px;
}

.cl-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.5rem;
  padding: 0.5rem 1.25rem;
  border-radius: calc(var(--radius) - 2px);
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease, transform 0.15s ease;
}

.cl-btn--primary {
  width: 100%;
  background: var(--cl-accent);
  color: hsl(var(--primary-foreground));
  box-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
}

.cl-btn--inline {
  width: auto;
  min-width: 180px;
}

.cl-btn--primary:hover {
  background: var(--cl-accent-hover);
  box-shadow: 0 4px 12px -2px rgba(229, 55, 52, 0.35);
}

.cl-btn--disabled,
.cl-btn--disabled:hover {
  background: #e5e7eb;
  color: #9ca3af;
  box-shadow: none;
  transform: none;
  pointer-events: none;
}

@media (max-width: 900px) {
  .cl-site-header__toggle {
    display: flex;
  }

  .cl-site-header__nav-wrap {
    position: fixed;
    top: 68px;
    left: 16px;
    right: 16px;
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
    padding: 20px;
    background: rgba(17, 24, 39, 0.97);
    border: 1px solid rgba(55, 65, 81, 0.8);
    border-radius: var(--radius);
    box-shadow: 0 20px 50px -12px rgba(0, 0, 0, 0.6);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
    margin-left: 0;
  }

  .cl-site-header__nav-wrap.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .cl-site-header__nav {
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
  }

  .cl-site-header__link {
    color: rgba(255, 255, 255, 0.9) !important;
    background: transparent !important;
    padding: 12px 14px;
  }

  .cl-site-header__link:hover,
  .cl-site-header__link.is-active {
    color: var(--cl-accent) !important;
    background: rgba(229, 55, 52, 0.08) !important;
  }

  .cl-site-header__user {
    width: 100%;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.12);
  }

  .cl-site-header__user-name {
    color: #fff;
  }

  .cl-site-header__user-email {
    color: rgba(255, 255, 255, 0.7);
  }

  .cl-biz-metric {
    flex: 1 1 100%;
  }

  .cl-round-item--horizontal {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    gap: 16px;
    padding: 22px 20px;
  }

  .cl-round-item--horizontal .cl-round-item__body {
    grid-column: 1;
    grid-row: 1;
    align-self: start;
  }

  .cl-round-item--horizontal .cl-round-item__actions {
    grid-column: 1;
    grid-row: 2;
    width: 100%;
  }

  .cl-round-item--horizontal .cl-round-item__metrics {
    grid-column: 1;
    grid-row: 3;
  }

  .cl-round-item--horizontal .cl-biz-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cl-round-item--horizontal .cl-btn--inline {
    width: 100%;
    min-width: 0;
  }
}

@media (max-width: 768px) {
  .cl-hero--has-banner .cl-hero__content {
    position: absolute;
    padding: 76px 18px 48px;
  }

  .cl-hero__bottom-fade {
    height: 140px;
  }

  .cl-hero__logo-wrap {
    width: 96px;
    height: 96px;
    padding: 12px;
    margin-bottom: 18px;
  }

  .cl-hero__logo {
    max-width: 72px;
    max-height: 72px;
  }

  .cl-hero__content {
    padding: 48px 18px 56px;
  }

  .cl-site-header__inner {
    padding: 12px 16px;
  }

  .cl-main {
    margin-top: 0;
    padding: 24px 16px 48px;
  }

  .cl-cards--overlap {
    margin-top: -16px;
  }

  .cl-card {
    padding: 20px;
  }

  .cl-panel {
    padding: 24px 20px;
  }

  .cl-card__stats,
  .cl-round-item__stats {
    grid-template-columns: 1fr;
    padding: 14px;
  }

  .cl-panel {
    padding: 24px 20px;
  }

  .cl-section-eyebrow::before {
    width: 36px;
    height: 36px;
    border-radius: 9px;
    background-size: 18px 18px, auto;
  }

  .cl-section-eyebrow::after {
    width: 20px;
  }

  .cl-rounds__title,
  .cl-rounds__subtitle {
    padding-left: 48px;
  }

  .cl-rounds__title {
    font-size: 1.5rem;
  }

  .cl-rounds__header::after {
    width: 90px;
    height: 64px;
    opacity: 0.05;
  }
}

/* Auth modal */
body.cl-auth-modal-open {
  overflow: hidden;
}

.cl-auth-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.cl-auth-modal[hidden] {
  display: none;
}

.cl-auth-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.62);
  backdrop-filter: blur(6px);
}

.cl-auth-modal__dialog {
  position: relative;
  width: 100%;
  max-width: 480px;
  max-height: calc(100vh - 40px);
  overflow-y: auto;
  background: linear-gradient(160deg, rgba(37, 48, 65, 0.98) 0%, rgba(17, 24, 39, 0.99) 100%);
  color: hsl(var(--card-foreground));
  border: 1px solid rgba(55, 65, 81, 0.8);
  border-radius: calc(var(--radius) + 4px);
  box-shadow: 0 25px 60px -12px rgb(0 0 0 / 0.65);
  padding: 28px 28px 32px;
  animation: clAuthSlideUp 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes clAuthSlideUp {
  from {
    opacity: 0;
    transform: translateY(16px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.cl-auth-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  color: #9ca3af;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s ease, color 0.15s ease;
}

.cl-auth-modal__close:hover {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
}

.cl-auth-modal__header {
  text-align: center;
  margin-bottom: 22px;
  padding-right: 28px;
}

.cl-auth-modal__icon {
  margin: 0 auto 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cl-auth-modal__icon img {
  display: block;
  width: auto;
  max-width: 180px;
  height: auto;
  max-height: 40px;
}

.cl-auth-modal__title {
  margin: 0 0 6px;
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--cl-dark);
  letter-spacing: -0.02em;
}

.cl-auth-modal__subtitle {
  margin: 0;
  font-size: 0.92rem;
  color: var(--cl-muted);
  line-height: 1.5;
}

.cl-auth-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  padding: 5px;
  margin-bottom: 20px;
  background: rgba(17, 24, 39, 0.8);
  border: 1px solid rgba(55, 65, 81, 0.6);
  border-radius: 12px;
}

.cl-auth-tabs__btn {
  border: none;
  background: transparent;
  padding: 11px 16px;
  border-radius: 9px;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--cl-muted);
  cursor: pointer;
  transition: background 0.18s ease, color 0.18s ease, box-shadow 0.18s ease;
}

.cl-auth-tabs__btn.is-active {
  background: rgba(229, 55, 52, 0.15);
  color: #fff;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.3);
}

.cl-auth-tabs__btn--disabled,
.cl-auth-tabs__btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  pointer-events: none;
}

.cl-invite-notice {
  margin-bottom: 16px;
}

.cl-auth-alert {
  padding: 11px 14px;
  border-radius: 10px;
  font-size: 0.88rem;
  line-height: 1.45;
  margin-bottom: 14px;
}

.cl-auth-alert[hidden] {
  display: none;
}

.cl-auth-alert--error {
  background: #fef2f2;
  color: #b91c1c;
  border: 1px solid #fecaca;
}

.cl-auth-alert--success {
  background: #ecfdf5;
  color: #047857;
  border: 1px solid #a7f3d0;
}

/* Stylish "mail sent" confirmation state */
.cl-auth-alert--mailsent {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  border-radius: 14px;
  background: linear-gradient(135deg, #ecfdf5 0%, #f0fdfa 100%);
  border: 1px solid #a7f3d0;
  box-shadow: 0 6px 18px rgba(5, 150, 105, 0.12);
  animation: cl-mailsent-in 0.45s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.cl-auth-mailsent__icon {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.35);
}

.cl-auth-mailsent__icon svg {
  display: block;
}

.cl-auth-mailsent__tick {
  stroke-dasharray: 12;
  stroke-dashoffset: 12;
  animation: cl-mailsent-tick 0.5s ease-out 0.3s forwards;
}

.cl-auth-mailsent__body {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.cl-auth-mailsent__title {
  font-size: 0.98rem;
  font-weight: 700;
  color: #065f46;
  line-height: 1.3;
}

.cl-auth-mailsent__text {
  font-size: 0.86rem;
  color: #047857;
  line-height: 1.45;
}

@keyframes cl-mailsent-in {
  from {
    opacity: 0;
    transform: translateY(-6px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes cl-mailsent-tick {
  to {
    stroke-dashoffset: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .cl-auth-alert--mailsent {
    animation: none;
  }
  .cl-auth-mailsent__tick {
    animation: none;
    stroke-dashoffset: 0;
  }
}

.cl-participation-alert {
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: 1120px;
  margin: 0 auto 24px;
  padding: 16px 18px;
  border-radius: 14px;
  --cl-dark: var(--cl-card-text);
  --cl-muted: var(--cl-card-text-muted);
  background: var(--cl-card-bg);
  border: 1px solid var(--cl-card-border);
  box-shadow: var(--cl-card-shadow);
  animation: cl-participation-alert-in 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.cl-participation-alert[hidden] {
  display: none;
}

@keyframes cl-participation-alert-in {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.cl-participation-alert__icon {
  flex-shrink: 0;
  align-self: center;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
}

.cl-participation-alert__icon svg {
  display: block;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.cl-participation-alert__body {
  flex: 1;
  min-width: 0;
  align-self: center;
}

.cl-participation-alert__message {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.5;
  color: var(--cl-dark);
}

.cl-participation-alert__message a {
  color: var(--cl-accent);
  font-weight: 600;
  text-decoration: none;
}

.cl-participation-alert__message a:hover {
  text-decoration: underline;
}

.cl-participation-alert__close {
  flex-shrink: 0;
  align-self: center;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  margin: 0;
  padding: 0;
  border: none;
  border-radius: 6px;
  background: transparent;
  color: var(--cl-muted);
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
}

.cl-participation-alert__close:hover {
  background: #f3f4f6;
  color: var(--cl-card-text);
}

.cl-participation-alert__close svg {
  display: block;
  width: 16px;
  height: 16px;
}

.cl-participation-alert--error {
  border-color: #fecaca;
  background: linear-gradient(135deg, #fff5f5 0%, #ffffff 100%);
}

.cl-participation-alert--error .cl-participation-alert__icon {
  background: rgba(229, 55, 52, 0.1);
  color: var(--cl-accent);
}

.cl-participation-alert--error .cl-participation-alert__message {
  color: #991b1b;
}

.cl-participation-alert--success {
  border-color: #a7f3d0;
  background: linear-gradient(135deg, #ecfdf5 0%, #ffffff 100%);
}

.cl-participation-alert--success .cl-participation-alert__icon {
  background: rgba(5, 150, 105, 0.12);
  color: #059669;
}

.cl-participation-alert--success .cl-participation-alert__message {
  color: #047857;
}

.cl-participation-alert--warning {
  border-color: #fde68a;
  background: linear-gradient(135deg, #fffbeb 0%, #ffffff 100%);
}

.cl-participation-alert--warning .cl-participation-alert__icon {
  background: rgba(217, 119, 6, 0.12);
  color: #d97706;
}

.cl-participation-alert--warning .cl-participation-alert__message {
  color: #b45309;
}

.cl-domain-notice {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 18px;
  padding: 14px 16px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(229, 55, 52, 0.08), rgba(31, 41, 55, 0.04));
  border: 1px solid rgba(229, 55, 52, 0.18);
  color: var(--cl-dark);
}

.cl-domain-notice svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--cl-accent);
}

.cl-domain-notice strong {
  display: block;
  margin-bottom: 4px;
  font-size: 0.9rem;
}

.cl-domain-notice p {
  margin: 0;
  font-size: 0.84rem;
  line-height: 1.55;
  color: var(--cl-muted);
}

.cl-domain-tag {
  display: inline-block;
  padding: 1px 8px;
  border-radius: 999px;
  background: rgba(229, 55, 52, 0.12);
  border: 1px solid rgba(229, 55, 52, 0.3);
  color: #fca5a5;
  font-weight: 700;
  font-size: 0.8rem;
}

.cl-auth-panel[hidden] {
  display: none;
}

.cl-auth-form__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.cl-auth-form__hint {
  margin: 0 0 16px;
  font-size: 0.88rem;
  color: var(--cl-muted);
  line-height: 1.5;
}

.cl-field {
  margin-bottom: 14px;
}

.cl-field label:not(.cl-checkbox),
.cl-field__label {
  display: block;
  margin-bottom: 6px;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--cl-dark);
}

.cl-req {
  color: var(--cl-accent);
}

.cl-field input[type="email"],
.cl-field input[type="password"],
.cl-field input[type="text"],
.cl-field input[type="tel"] {
  width: 100%;
  min-height: 2.5rem;
  padding: 0.5rem 0.75rem;
  border: 1px solid hsl(var(--input));
  border-radius: calc(var(--radius) - 2px);
  font-size: 0.875rem;
  font-family: inherit;
  color: hsl(var(--foreground));
  background: hsl(var(--background));
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.cl-field input:focus {
  outline: none;
  border-color: var(--cl-accent);
  box-shadow: 0 0 0 2px rgba(229, 55, 52, 0.15);
}

.cl-field input.is-invalid {
  border-color: #f87171;
  background: rgba(127, 29, 29, 0.2);
}

.cl-field--readonly input[readonly] {
  background: rgba(17, 24, 39, 0.5);
  border-color: rgba(55, 65, 81, 0.6);
  color: #9ca3af;
  cursor: default;
}

.cl-field--readonly input[readonly]:focus {
  border-color: rgba(55, 65, 81, 0.6);
  box-shadow: none;
}

.cl-mobile-input {
  display: flex;
  align-items: stretch;
  border: 1.5px solid rgba(55, 65, 81, 0.7);
  border-radius: 11px;
  background: rgba(17, 24, 39, 0.6);
  overflow: hidden;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.cl-mobile-input:focus-within {
  border-color: rgba(229, 55, 52, 0.55);
  box-shadow: 0 0 0 3px rgba(229, 55, 52, 0.12);
}

.cl-field--mobile-in .cl-mobile-input:has(input.is-invalid) {
  border-color: #f87171;
  background: rgba(127, 29, 29, 0.2);
  box-shadow: 0 0 0 3px rgba(248, 113, 113, 0.12);
}

.cl-mobile-input__prefix {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  padding: 0 12px;
  border-right: 1.5px solid rgba(55, 65, 81, 0.7);
  background: rgba(31, 41, 55, 0.6);
  font-size: 0.92rem;
  font-weight: 600;
  color: #d1d5db;
  letter-spacing: 0.02em;
}

.cl-field--mobile-in .cl-mobile-input input {
  flex: 1;
  min-width: 0;
  min-height: 46px;
  border: none;
  border-radius: 0;
  box-shadow: none;
  padding-left: 12px;
}

.cl-field--mobile-in .cl-mobile-input input:focus {
  outline: none;
  border: none;
  box-shadow: none;
}

.cl-autocomplete {
  position: relative;
}

.cl-autocomplete > input[type="text"] {
  width: 100%;
}

.cl-autocomplete__list {
  position: absolute;
  z-index: 20;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  max-height: 220px;
  overflow-y: auto;
  margin: 0;
  padding: 6px;
  list-style: none;
  border: 1.5px solid rgba(55, 65, 81, 0.8);
  border-radius: 12px;
  background: #1f2937;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5);
}

.cl-autocomplete__item {
  display: block;
  width: 100%;
  padding: 10px 12px;
  border: none;
  border-radius: 8px;
  background: transparent;
  color: var(--cl-dark);
  font-size: 0.9rem;
  font-family: inherit;
  text-align: left;
  cursor: pointer;
  transition: background 0.12s ease, color 0.12s ease;
}

.cl-autocomplete__item:hover,
.cl-autocomplete__item.is-active {
  background: rgba(229, 55, 52, 0.15);
  color: #fca5a5;
}

.cl-field__password-wrap {
  position: relative;
}

.cl-field__password-wrap input {
  padding-right: 44px;
}

.cl-field__toggle-pwd {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  background: transparent;
  color: #9ca3af;
  cursor: pointer;
  padding: 4px;
  display: flex;
}

.cl-field__toggle-pwd:hover {
  color: var(--cl-dark);
}

.cl-field__error {
  display: block;
  min-height: 0;
  margin-top: 5px;
  font-size: 0.78rem;
  color: #f87171;
}

.cl-field__error:empty {
  display: none;
}

.cl-auth-form__footer {
  display: flex;
  justify-content: flex-end;
  margin: -4px 0 14px;
}

.cl-auth-link {
  border: none;
  background: none;
  padding: 0;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--cl-accent);
  cursor: pointer;
  text-decoration: none;
}

.cl-auth-link:hover {
  text-decoration: underline;
}

.cl-auth-link--back {
  display: inline-block;
  margin-bottom: 14px;
}

.cl-field--consent {
  margin: 4px 0 16px;
  position: relative;
}

.cl-field--consent .cl-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 0;
  cursor: pointer;
}

.cl-field--consent .cl-field__error {
  margin-top: 8px;
  padding-left: 28px;
}

.cl-field--consent.is-invalid .cl-checkbox__box {
  border-color: #dc2626;
  box-shadow: 0 0 0 1px rgba(220, 38, 38, 0.25);
}

.cl-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 6px 0 18px;
  cursor: pointer;
  font-size: 0.84rem;
  line-height: 1.5;
  color: var(--cl-muted);
  position: relative;
}

.cl-checkbox input {
  position: absolute;
  top: 2px;
  left: 0;
  width: 18px;
  height: 18px;
  margin: 0;
  opacity: 0;
  cursor: pointer;
  z-index: 2;
}

.cl-checkbox__box {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  border: 1.5px solid rgba(75, 85, 99, 0.8);
  border-radius: 5px;
  background: rgba(17, 24, 39, 0.6);
  transition: border-color 0.15s ease, background 0.15s ease;
}

.cl-checkbox input:checked + .cl-checkbox__box {
  background: var(--cl-accent);
  border-color: var(--cl-accent);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

.cl-checkbox__label a {
  color: var(--cl-accent);
  font-weight: 600;
  text-decoration: none;
}

.cl-checkbox__label a:hover {
  text-decoration: underline;
}

.cl-auth-submit {
  width: 100%;
  min-height: 48px;
  border: none;
  cursor: pointer;
}

.cl-auth-submit:disabled {
  opacity: 0.65;
  cursor: not-allowed;
  transform: none;
}

.cl-reg-modal__dialog {
  max-width: 520px;
}

.cl-reg-consent {
  margin-bottom: 16px;
}

.cl-reg-consent .cl-checkbox {
  margin-bottom: 0;
}

.cl-reg-displaytext {
  margin-bottom: 14px;
  padding: 12px 14px;
  border-radius: 11px;
  background: rgba(17, 24, 39, 0.6);
  border: 1px solid rgba(55, 65, 81, 0.6);
  font-size: 0.86rem;
  line-height: 1.55;
  color: var(--cl-muted);
}

.cl-field select,
.cl-field textarea {
  width: 100%;
  min-height: 46px;
  padding: 10px 14px;
  border: 1.5px solid rgba(55, 65, 81, 0.7);
  border-radius: 11px;
  font-size: 0.92rem;
  font-family: inherit;
  color: var(--cl-dark);
  background: rgba(17, 24, 39, 0.6);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.cl-field textarea {
  min-height: 96px;
  resize: vertical;
}

.cl-field select:focus,
.cl-field textarea:focus {
  outline: none;
  border-color: rgba(229, 55, 52, 0.55);
  box-shadow: 0 0 0 3px rgba(229, 55, 52, 0.12);
}

.cl-field select.is-invalid,
.cl-field textarea.is-invalid {
  border-color: #f87171;
  background: rgba(127, 29, 29, 0.2);
}

.cl-field input[type="date"],
.cl-field input[type="file"] {
  width: 100%;
  min-height: 46px;
  padding: 0 14px;
  border: 1.5px solid rgba(55, 65, 81, 0.7);
  border-radius: 11px;
  font-size: 0.92rem;
  font-family: inherit;
  color: var(--cl-dark);
  background: rgba(17, 24, 39, 0.6);
}

.cl-field input[type="file"] {
  padding: 10px 14px;
}

.cl-file-upload {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 12px;
  padding: 12px;
  border: 1.5px dashed rgba(75, 85, 99, 0.7);
  border-radius: 11px;
  background: rgba(17, 24, 39, 0.5);
  transition: border-color 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
}

.cl-file-upload.is-invalid {
  border-color: #f87171;
  background: rgba(127, 29, 29, 0.2);
  box-shadow: 0 0 0 3px rgba(248, 113, 113, 0.12);
}

.cl-file-upload__input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.cl-file-upload__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 16px;
  border: 1.5px solid rgba(229, 55, 52, 0.35);
  border-radius: 999px;
  background: rgba(229, 55, 52, 0.1);
  color: #fca5a5;
  font-size: 0.88rem;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.cl-file-upload__btn:hover:not(:disabled) {
  background: rgba(229, 55, 52, 0.06);
  border-color: var(--cl-accent, #e53734);
}

.cl-file-upload__btn:disabled {
  opacity: 0.65;
  cursor: wait;
}

.cl-file-upload__name {
  flex: 1 1 auto;
  min-width: 0;
  font-size: 0.86rem;
  color: #9ca3af;
  word-break: break-word;
}

.cl-file-upload.is-uploading .cl-file-upload__name {
  color: #9ca3af;
}

.cl-field:has(.cl-field__choices--chips) .cl-field__label {
  margin-bottom: 8px;
}

.cl-field__choices--chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 12px;
  border: 1.5px solid rgba(55, 65, 81, 0.7);
  border-radius: 12px;
  background: rgba(17, 24, 39, 0.5);
  transition: border-color 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.cl-field__choices--chips.is-invalid {
  border-color: #f87171;
  background: rgba(127, 29, 29, 0.2);
  box-shadow: 0 0 0 3px rgba(248, 113, 113, 0.12);
}

.cl-choice-chip {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 8px 14px;
  border: 1.5px solid rgba(55, 65, 81, 0.7);
  border-radius: 999px;
  background: rgba(31, 41, 55, 0.6);
  cursor: pointer;
  user-select: none;
  transition: border-color 0.15s ease, background 0.15s ease, color 0.15s ease, box-shadow 0.15s ease, transform 0.12s ease;
}

.cl-choice-chip:hover {
  border-color: rgba(229, 55, 52, 0.35);
  background: rgba(31, 41, 55, 0.9);
}

.cl-choice-chip__input {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
  margin: 0;
  pointer-events: none;
}

.cl-choice-chip__text {
  font-size: 0.86rem;
  font-weight: 500;
  line-height: 1.2;
  color: var(--cl-dark);
  white-space: nowrap;
}

.cl-choice-chip:has(.cl-choice-chip__input:checked) {
  border-color: var(--cl-accent);
  background: rgba(229, 55, 52, 0.1);
  box-shadow: 0 2px 8px rgba(229, 55, 52, 0.12);
}

.cl-choice-chip:has(.cl-choice-chip__input:checked) .cl-choice-chip__text {
  color: #fca5a5;
  font-weight: 600;
}

.cl-choice-chip:has(.cl-choice-chip__input:focus-visible) {
  outline: none;
  box-shadow: 0 0 0 3px rgba(229, 55, 52, 0.18);
}

.cl-field__choices--radio .cl-choice-chip:has(.cl-choice-chip__input:checked) {
  background: var(--cl-accent);
  border-color: var(--cl-accent);
  box-shadow: 0 4px 12px rgba(229, 55, 52, 0.22);
}

.cl-field__choices--radio .cl-choice-chip:has(.cl-choice-chip__input:checked) .cl-choice-chip__text {
  color: #fff;
}

@media (max-width: 520px) {
  .cl-auth-modal__dialog {
    padding: 22px 18px 24px;
    border-radius: 16px;
  }

  .cl-auth-form__grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
}
