:root {
  --cc-bg: #050505;
  --cc-bg-soft: #0b0b0b;
  --cc-text: #f5f5f5;
  --cc-muted: #b8b8b8;
  --cc-border: rgba(255,255,255,0.14);
  --cc-accent: #7cf2ff;
  --cc-accent-2: #a78bfa;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  min-height: 100%;
  background: var(--cc-bg);
  color: var(--cc-text);
  font-family: Inter, "Segoe UI", Roboto, Arial, sans-serif;
}

body {
  position: relative;
  overflow-x: hidden;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: -20%;
  pointer-events: none;
  z-index: 0;
}

body::before {
  background:
    radial-gradient(40% 35% at 20% 25%, rgba(124, 242, 255, 0.12), transparent 60%),
    radial-gradient(35% 30% at 80% 70%, rgba(167, 139, 250, 0.12), transparent 60%);
  animation: ccGlowMove 18s ease-in-out infinite alternate;
}

body::after {
  background-image:
    linear-gradient(rgba(255,255,255,0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.045) 1px, transparent 1px);
  background-size: 44px 44px;
  opacity: 0.2;
  mask-image: radial-gradient(ellipse at center, black 45%, transparent 80%);
}

@keyframes ccGlowMove {
  0% { transform: translate3d(-2%, 0, 0) scale(1); }
  100% { transform: translate3d(2%, -1%, 0) scale(1.06); }
}

.cc-shell {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.cc-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
}

.cc-logo {
  color: var(--cc-text);
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.88rem;
}

.cc-tools-link {
  color: var(--cc-text);
  text-decoration: none;
  border: 1px solid var(--cc-border);
  border-radius: 999px;
  padding: 9px 14px;
  font-weight: 600;
  font-size: 0.88rem;
  background: rgba(255,255,255,0.03);
}

.cc-main {
  width: min(940px, 92vw);
  margin: auto;
  text-align: center;
  padding: 32px 0 56px;
  animation: ccFadeUp 600ms ease both;
}

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

.cc-kicker {
  margin: 0 0 14px;
  color: var(--cc-muted);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.76rem;
}

.cc-title {
  margin: 0;
  font-size: clamp(2rem, 5vw, 3.6rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.cc-subtitle {
  margin: 18px auto 0;
  max-width: 760px;
  color: var(--cc-muted);
  line-height: 1.72;
  font-size: clamp(1rem, 2.2vw, 1.14rem);
}

.cc-card {
  margin: 26px auto 0;
  width: min(860px, 94vw);
  text-align: left;
  border: 1px solid var(--cc-border);
  border-radius: 24px;
  background: linear-gradient(145deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
  box-shadow: 0 18px 70px rgba(0,0,0,0.55);
  padding: clamp(20px, 3.2vw, 34px);
}

.cc-story p {
  margin: 0 0 14px;
  color: #d3d3d3;
  line-height: 1.8;
  font-size: 1rem;
}

.cc-story p:last-child { margin-bottom: 0; }

.cc-supporters-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.cc-supporter-item {
  border: 1px solid var(--cc-border);
  border-radius: 14px;
  padding: 14px 15px;
  background: rgba(255,255,255,0.02);
}

.cc-supporter-item strong {
  display: block;
  font-size: 1rem;
  margin-bottom: 4px;
}

.cc-supporter-note {
  margin: 0;
  color: var(--cc-muted);
  line-height: 1.65;
}

.cc-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 24px;
}

.cc-btn {
  text-decoration: none;
  border-radius: 999px;
  padding: 11px 16px;
  font-weight: 700;
  border: 1px solid var(--cc-border);
  color: var(--cc-text);
}

.cc-btn-primary {
  border-color: rgba(124, 242, 255, 0.42);
  background: linear-gradient(135deg, rgba(124,242,255,0.2), rgba(167,139,250,0.2));
}

.cc-btn-ghost {
  background: rgba(255,255,255,0.03);
}

@media (max-width: 700px) {
  .cc-header { padding: 14px 14px 8px; }
  .cc-main { padding: 22px 0 48px; }
  .cc-card { border-radius: 18px; }
}
