:root {
  --cct-bg: #050915;
  --cct-text: #f7f8ff;
  --cct-muted: #aeb8cf;
  --cct-line: rgba(168, 92, 255, 0.48);
  --cct-purple: #b665ff;
}

html {
  background: var(--cct-bg);
}

body {
  background:
    radial-gradient(circle at 18% 10%, rgba(122, 67, 255, 0.26), transparent 34%),
    radial-gradient(circle at 88% 18%, rgba(42, 124, 255, 0.16), transparent 28%),
    linear-gradient(180deg, #070b15 0%, #050915 42%, #040711 100%);
  color: var(--cct-text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  margin: 0;
  min-height: 100vh;
}

body.admin-bar .cct-site-shell {
  min-height: calc(100vh - 32px);
}

a {
  color: inherit;
}

.cct-site-shell {
  min-height: 100vh;
  overflow: hidden;
  padding: 0 34px 34px;
}

.cct-site-header {
  align-items: center;
  border-bottom: 1px solid rgba(185, 196, 219, 0.12);
  display: grid;
  gap: 22px;
  grid-template-columns: 190px 1fr 44px;
  margin: 0 auto;
  max-width: 1500px;
  min-height: 98px;
}

.cct-site-brand {
  color: #fff;
  display: inline-grid;
  justify-items: start;
  line-height: 0.9;
  text-decoration: none;
  text-transform: uppercase;
}

.cct-site-brand__top {
  font-size: 12px;
  font-style: italic;
  font-weight: 800;
}

.cct-site-brand__name {
  font-size: 31px;
  font-weight: 900;
}

.cct-site-brand__season {
  color: var(--cct-purple);
  font-size: 15px;
  font-weight: 800;
  justify-self: center;
}

.cct-site-nav {
  align-items: stretch;
  display: flex;
  gap: 34px;
  justify-content: flex-end;
  min-height: 98px;
}

.cct-site-nav a {
  align-items: center;
  color: #f6f7fb;
  display: inline-flex;
  font-size: 15px;
  font-weight: 700;
  position: relative;
  text-decoration: none;
  text-transform: uppercase;
}

.cct-site-nav a.is-active::after,
.cct-site-nav a:hover::after,
.cct-site-nav a:focus::after {
  background: var(--cct-purple);
  bottom: 0;
  content: "";
  height: 3px;
  left: 0;
  position: absolute;
  right: 0;
}

.cct-site-profile {
  background:
    radial-gradient(circle at 50% 36%, #bc84ff 0 20%, transparent 21%),
    radial-gradient(circle at 50% 78%, #8f56e8 0 34%, transparent 35%),
    linear-gradient(135deg, #331b61, #7b45d6);
  border: 1px solid rgba(194, 132, 255, 0.72);
  border-radius: 999px;
  height: 44px;
  width: 44px;
}

.cct-site-main {
  margin: 0 auto;
  max-width: 1500px;
}

.cct-site-main .cct-collection {
  background: transparent;
  margin: 0;
  max-width: none;
  min-height: auto;
  overflow: visible;
  padding: 0 0 20px;
}

.cct-site-main .cct-collection--embedded .cct-collection__header {
  margin-top: 38px;
}

.cct-site-main .cct-collection--embedded .cct-app-header {
  display: none;
}

.cct-theme-page,
.cct-theme-intro,
.cct-profile-page {
  margin: 38px auto 0;
  max-width: 1500px;
}

.cct-theme-page__header h1,
.cct-theme-intro h1,
.cct-profile-page h1 {
  color: var(--cct-text);
  font-size: 44px;
  font-weight: 900;
  line-height: 1.05;
  margin: 0 0 14px;
}

.cct-theme-intro p,
.cct-profile-panel p {
  color: var(--cct-muted);
  font-size: 18px;
  margin: 0;
}

.cct-profile-panel {
  background: rgba(10, 16, 30, 0.72);
  border: 1px solid rgba(185, 196, 219, 0.16);
  border-radius: 8px;
  margin-top: 22px;
  padding: 22px;
}

.cct-site-footer {
  color: var(--cct-muted);
  font-size: 16px;
  margin: 18px auto 0;
  max-width: 1500px;
  padding: 16px 0;
  text-align: center;
}

@media (max-width: 1100px) {
  .cct-site-header {
    grid-template-columns: 170px 1fr;
  }

  .cct-site-profile {
    display: none;
  }
}

@media (max-width: 760px) {
  .cct-site-shell {
    padding: 0 16px 28px;
  }

  .cct-site-header {
    grid-template-columns: 1fr;
    padding-bottom: 14px;
  }

  .cct-site-nav {
    gap: 18px;
    justify-content: flex-start;
    min-height: auto;
    overflow-x: auto;
  }

  .cct-theme-page__header h1,
  .cct-theme-intro h1,
  .cct-profile-page h1 {
    font-size: 36px;
  }
}

