/*
Theme Name: Classic Trance Store
Theme URI: https://classictrancefamily.com/
Author: Codex
Description: A minimal WooCommerce storefront for Classic Trance Family.
Version: 0.1.12
Build: V0.1.12 Suggestion Admin Editing
Requires at least: 6.0
Tested up to: 6.8
Requires PHP: 7.4
Text Domain: ctf-store
*/

:root {
  --ctf-ink: #030508;
  --ctf-ink-2: #090d12;
  --ctf-white: #fafaf7;
  --ctf-paper: #ffffff;
  --ctf-silver: #d8dce2;
  --ctf-muted: #68717d;
  --ctf-line: #e8eaee;
  --ctf-blue: #36ddf2;
  --ctf-blue-dark: #08aac1;
  --ctf-violet: #38236b;
  --ctf-pink: #ff4fa3;
  --ctf-max: 1180px;
  --ctf-radius: 4px;
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ctf-paper);
  color: var(--ctf-ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.55;
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  height: auto;
  max-width: 100%;
}

.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

.ctf-nowrap {
  white-space: nowrap;
}

.cmplz-cookiebanner,
.cmplz-manage-consent {
  display: none !important;
}

.ctf-site {
  min-height: 100vh;
}

.ctf-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 20;
}

body:not(.home) .ctf-header {
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--ctf-line);
  color: var(--ctf-ink);
  position: sticky;
}

body.home .ctf-header {
  background: rgba(3, 5, 8, 0.96);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--ctf-white);
  position: sticky;
}

body.ctf-commerce .ctf-header,
body.woocommerce .ctf-header,
body.woocommerce-page .ctf-header {
  background: rgba(3, 5, 8, 0.97);
  border-bottom: 1px solid rgba(54, 221, 242, 0.24);
  color: var(--ctf-white);
  position: sticky;
}

body.ctf-commerce .ctf-header::after,
body.woocommerce .ctf-header::after,
body.woocommerce-page .ctf-header::after {
  background: linear-gradient(180deg, rgba(3, 5, 8, 0.42), rgba(54, 221, 242, 0.11) 48%, rgba(255, 255, 255, 0));
  content: "";
  height: 26px;
  left: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 100%;
}

.ctf-header__inner {
  align-items: center;
  display: flex;
  gap: 30px;
  justify-content: space-between;
  margin: 0 auto;
  max-width: var(--ctf-max);
  min-height: 86px;
  padding: 18px 24px;
}

.ctf-wordmark {
  color: var(--ctf-white);
  display: inline-block;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.42em;
  line-height: 1.05;
  text-transform: uppercase;
}

body:not(.home) .ctf-wordmark {
  color: var(--ctf-ink);
}

body.ctf-commerce .ctf-wordmark,
body.woocommerce .ctf-wordmark,
body.woocommerce-page .ctf-wordmark {
  color: var(--ctf-white);
}

.ctf-wordmark span {
  display: block;
}

.ctf-logo {
  display: block;
  height: auto;
  max-width: 154px;
  width: 154px;
}

.ctf-menu-toggle {
  align-items: center;
  background: transparent;
  border: 1px solid rgba(54, 221, 242, 0.72);
  border-radius: var(--ctf-radius);
  color: var(--ctf-blue);
  display: none;
  flex: 0 0 auto;
  height: 44px;
  justify-content: center;
  padding: 0;
  position: relative;
  width: 48px;
}

.ctf-menu-toggle:hover,
.ctf-menu-toggle:focus-visible {
  background: rgba(54, 221, 242, 0.12);
  border-color: var(--ctf-blue);
  color: var(--ctf-blue);
  transform: none;
}

.ctf-menu-toggle__bar {
  background: currentColor;
  display: block;
  height: 2px;
  position: absolute;
  transition: opacity 160ms ease, transform 160ms ease;
  width: 20px;
}

.ctf-menu-toggle__bar:nth-of-type(2) {
  transform: translateY(-6px);
}

.ctf-menu-toggle__bar:nth-of-type(4) {
  transform: translateY(6px);
}

.ctf-menu-toggle[aria-expanded="true"] .ctf-menu-toggle__bar:nth-of-type(2) {
  transform: rotate(45deg);
}

.ctf-menu-toggle[aria-expanded="true"] .ctf-menu-toggle__bar:nth-of-type(3) {
  opacity: 0;
}

.ctf-menu-toggle[aria-expanded="true"] .ctf-menu-toggle__bar:nth-of-type(4) {
  transform: rotate(-45deg);
}

.ctf-nav {
  align-items: center;
  display: flex;
  gap: 26px;
  justify-content: flex-end;
}

.ctf-nav a {
  color: rgba(250, 250, 247, 0.86);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  position: relative;
  text-transform: uppercase;
  transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease;
}

.ctf-nav__link {
  padding: 8px 0;
}

.ctf-nav__item {
  display: inline-flex;
  position: relative;
}

.ctf-nav__item--has-menu {
  padding-right: 2px;
}

.ctf-nav__item--has-menu > .ctf-nav__link::before {
  border: solid currentColor;
  border-width: 0 1px 1px 0;
  content: "";
  height: 5px;
  position: absolute;
  right: -12px;
  top: 13px;
  transform: rotate(45deg);
  width: 5px;
}

.ctf-nav__dropdown {
  background: rgba(3, 5, 8, 0.98);
  border: 1px solid rgba(54, 221, 242, 0.22);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.22);
  display: grid;
  gap: 0;
  left: -16px;
  min-width: 150px;
  opacity: 0;
  padding: 8px;
  pointer-events: none;
  position: absolute;
  top: calc(100% + 14px);
  transform: translateY(-4px);
  transition: opacity 160ms ease, transform 160ms ease;
  z-index: 40;
}

.ctf-nav__dropdown::before {
  content: "";
  height: 14px;
  left: 0;
  position: absolute;
  right: 0;
  top: -14px;
}

.ctf-nav__item--has-menu:hover .ctf-nav__dropdown,
.ctf-nav__item--has-menu:focus-within .ctf-nav__dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.ctf-nav__dropdown a {
  color: rgba(250, 250, 247, 0.82) !important;
  display: block;
  padding: 10px 11px;
  white-space: nowrap;
}

.ctf-nav__dropdown a:hover,
.ctf-nav__dropdown a:focus-visible {
  background: rgba(54, 221, 242, 0.1);
  color: var(--ctf-blue) !important;
}

body:not(.home):not(.ctf-commerce):not(.woocommerce):not(.woocommerce-page):not(.page-template-page-classics):not(.page-template-page-classic-sets):not(.page-id-2195):not(.single-ctf_classic_set):not(.ctf-merch-ideas-body):not(.ctf-contact-body):not(.ctf-feedback-body):not(.ctf-scrapbook-body):not(.ctf-v5-body) .ctf-nav__dropdown {
  background: rgba(255, 255, 255, 0.98);
  border-color: var(--ctf-line);
  box-shadow: 0 18px 42px rgba(3, 5, 8, 0.12);
}

body:not(.home):not(.ctf-commerce):not(.woocommerce):not(.woocommerce-page):not(.page-template-page-classics):not(.page-template-page-classic-sets):not(.page-id-2195):not(.single-ctf_classic_set):not(.ctf-merch-ideas-body):not(.ctf-contact-body):not(.ctf-feedback-body):not(.ctf-scrapbook-body):not(.ctf-v5-body) .ctf-nav__dropdown a {
  color: var(--ctf-ink) !important;
}

.ctf-nav__link::after {
  background: currentColor;
  bottom: 2px;
  content: "";
  height: 2px;
  left: 0;
  opacity: 0;
  position: absolute;
  right: 0;
  transform: scaleX(0.55);
  transform-origin: left center;
  transition: opacity 160ms ease, transform 160ms ease;
}

.ctf-nav__link:hover,
.ctf-nav__link:focus-visible {
  color: var(--ctf-blue);
}

.ctf-nav__link.is-active::after,
.ctf-nav__link[aria-current="page"]::after {
  opacity: 1;
  transform: scaleX(1);
}

body:not(.home) .ctf-nav a {
  color: var(--ctf-ink);
}

body.ctf-commerce .ctf-nav a,
body.woocommerce .ctf-nav a,
body.woocommerce-page .ctf-nav a {
  color: rgba(250, 250, 247, 0.86);
}

.ctf-cart-link {
  align-items: center;
  border: 1px solid rgba(54, 221, 242, 0.6);
  border-radius: var(--ctf-radius);
  color: var(--ctf-blue) !important;
  display: inline-flex;
  height: 40px;
  justify-content: center;
  line-height: 1;
  padding: 0 13px;
}

.ctf-cart-link:hover,
.ctf-cart-link:focus-visible,
.ctf-cart-link.is-active {
  background: var(--ctf-blue);
  border-color: var(--ctf-blue);
  color: var(--ctf-white) !important;
}

.ctf-currency-switcher {
  display: inline-flex;
  height: 40px;
  min-width: 84px;
}

.ctf-currency-switcher .yay-currency-custom-select-wrapper {
  font-size: 12px;
  min-width: 82px;
}

.ctf-currency-switcher .yay-currency-custom-select__trigger {
  align-items: center;
  background: transparent;
  border: 1px solid rgba(54, 221, 242, 0.62);
  border-radius: var(--ctf-radius);
  color: var(--ctf-blue);
  display: inline-flex;
  height: 40px;
  min-height: 40px;
  padding: 0 10px;
}

.ctf-currency-switcher .yay-currency-custom-select__trigger:hover,
.ctf-currency-switcher .yay-currency-custom-select__trigger:focus {
  background: rgba(54, 221, 242, 0.12);
  border-color: var(--ctf-blue);
}

body:not(.home) .ctf-currency-switcher .yay-currency-custom-select__trigger {
  color: #067f91;
}

body.ctf-commerce .ctf-currency-switcher .yay-currency-custom-select__trigger,
body.woocommerce .ctf-currency-switcher .yay-currency-custom-select__trigger,
body.woocommerce-page .ctf-currency-switcher .yay-currency-custom-select__trigger {
  color: var(--ctf-blue);
}

body.page-id-1836 .ctf-header,
body.page-id-2195 .ctf-header,
body.single-ctf_classic_set .ctf-header,
body.ctf-submit-body .ctf-header,
body.ctf-merch-ideas-body .ctf-header,
body.ctf-contact-body .ctf-header,
body.ctf-feedback-body .ctf-header,
body.ctf-scrapbook-body .ctf-header,
body.page-template-page-classics .ctf-header,
body.page-template-page-classic-sets .ctf-header {
  background: rgba(3, 5, 8, 0.96);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--ctf-white);
  position: sticky;
}

body.page-id-1836 .ctf-nav a,
body.page-id-1836 .ctf-wordmark,
body.page-id-2195 .ctf-nav a,
body.page-id-2195 .ctf-wordmark,
body.single-ctf_classic_set .ctf-nav a,
body.single-ctf_classic_set .ctf-wordmark,
body.ctf-submit-body .ctf-nav a,
body.ctf-submit-body .ctf-wordmark,
body.ctf-merch-ideas-body .ctf-nav a,
body.ctf-merch-ideas-body .ctf-wordmark,
body.ctf-contact-body .ctf-nav a,
body.ctf-contact-body .ctf-wordmark,
body.ctf-feedback-body .ctf-nav a,
body.ctf-feedback-body .ctf-wordmark,
body.ctf-scrapbook-body .ctf-nav a,
body.ctf-scrapbook-body .ctf-wordmark,
body.page-template-page-classics .ctf-nav a,
body.page-template-page-classics .ctf-wordmark,
body.page-template-page-classic-sets .ctf-nav a,
body.page-template-page-classic-sets .ctf-wordmark {
  color: rgba(250, 250, 247, 0.86);
}

body.page-id-1836 .ctf-currency-switcher .yay-currency-custom-select__trigger,
body.page-id-2195 .ctf-currency-switcher .yay-currency-custom-select__trigger,
body.single-ctf_classic_set .ctf-currency-switcher .yay-currency-custom-select__trigger,
body.ctf-submit-body .ctf-currency-switcher .yay-currency-custom-select__trigger,
body.ctf-merch-ideas-body .ctf-currency-switcher .yay-currency-custom-select__trigger,
body.ctf-contact-body .ctf-currency-switcher .yay-currency-custom-select__trigger,
body.ctf-feedback-body .ctf-currency-switcher .yay-currency-custom-select__trigger,
body.ctf-scrapbook-body .ctf-currency-switcher .yay-currency-custom-select__trigger,
body.page-template-page-classics .ctf-currency-switcher .yay-currency-custom-select__trigger,
body.page-template-page-classic-sets .ctf-currency-switcher .yay-currency-custom-select__trigger {
  color: var(--ctf-blue);
}

.ctf-nav .ctf-nav__link:hover,
.ctf-nav .ctf-nav__link:focus-visible,
.ctf-nav .ctf-nav__link.is-active,
.ctf-nav .ctf-nav__link[aria-current="page"],
body:not(.home) .ctf-nav .ctf-nav__link:hover,
body:not(.home) .ctf-nav .ctf-nav__link:focus-visible,
body:not(.home) .ctf-nav .ctf-nav__link.is-active,
body:not(.home) .ctf-nav .ctf-nav__link[aria-current="page"],
body.ctf-commerce .ctf-nav .ctf-nav__link:hover,
body.ctf-commerce .ctf-nav .ctf-nav__link:focus-visible,
body.ctf-commerce .ctf-nav .ctf-nav__link.is-active,
body.ctf-commerce .ctf-nav .ctf-nav__link[aria-current="page"],
body.woocommerce .ctf-nav .ctf-nav__link:hover,
body.woocommerce .ctf-nav .ctf-nav__link:focus-visible,
body.woocommerce .ctf-nav .ctf-nav__link.is-active,
body.woocommerce .ctf-nav .ctf-nav__link[aria-current="page"],
body.woocommerce-page .ctf-nav .ctf-nav__link:hover,
body.woocommerce-page .ctf-nav .ctf-nav__link:focus-visible,
body.woocommerce-page .ctf-nav .ctf-nav__link.is-active,
body.woocommerce-page .ctf-nav .ctf-nav__link[aria-current="page"],
body.page-id-1836 .ctf-nav .ctf-nav__link:hover,
body.page-id-1836 .ctf-nav .ctf-nav__link:focus-visible,
body.page-id-1836 .ctf-nav .ctf-nav__link.is-active,
body.page-id-1836 .ctf-nav .ctf-nav__link[aria-current="page"],
body.page-id-2195 .ctf-nav .ctf-nav__link:hover,
body.page-id-2195 .ctf-nav .ctf-nav__link:focus-visible,
body.page-id-2195 .ctf-nav .ctf-nav__link.is-active,
body.page-id-2195 .ctf-nav .ctf-nav__link[aria-current="page"],
body.single-ctf_classic_set .ctf-nav .ctf-nav__link:hover,
body.single-ctf_classic_set .ctf-nav .ctf-nav__link:focus-visible,
body.single-ctf_classic_set .ctf-nav .ctf-nav__link.is-active,
body.single-ctf_classic_set .ctf-nav .ctf-nav__link[aria-current="page"],
body.ctf-submit-body .ctf-nav .ctf-nav__link:hover,
body.ctf-submit-body .ctf-nav .ctf-nav__link:focus-visible,
body.ctf-submit-body .ctf-nav .ctf-nav__link.is-active,
body.ctf-submit-body .ctf-nav .ctf-nav__link[aria-current="page"],
body.ctf-merch-ideas-body .ctf-nav .ctf-nav__link:hover,
body.ctf-merch-ideas-body .ctf-nav .ctf-nav__link:focus-visible,
body.ctf-merch-ideas-body .ctf-nav .ctf-nav__link.is-active,
body.ctf-merch-ideas-body .ctf-nav .ctf-nav__link[aria-current="page"],
body.ctf-contact-body .ctf-nav .ctf-nav__link:hover,
body.ctf-contact-body .ctf-nav .ctf-nav__link:focus-visible,
body.ctf-contact-body .ctf-nav .ctf-nav__link.is-active,
body.ctf-contact-body .ctf-nav .ctf-nav__link[aria-current="page"],
body.ctf-feedback-body .ctf-nav .ctf-nav__link:hover,
body.ctf-feedback-body .ctf-nav .ctf-nav__link:focus-visible,
body.ctf-feedback-body .ctf-nav .ctf-nav__link.is-active,
body.ctf-feedback-body .ctf-nav .ctf-nav__link[aria-current="page"],
body.ctf-scrapbook-body .ctf-nav .ctf-nav__link:hover,
body.ctf-scrapbook-body .ctf-nav .ctf-nav__link:focus-visible,
body.ctf-scrapbook-body .ctf-nav .ctf-nav__link.is-active,
body.ctf-scrapbook-body .ctf-nav .ctf-nav__link[aria-current="page"],
body.page-template-page-classics .ctf-nav .ctf-nav__link:hover,
body.page-template-page-classics .ctf-nav .ctf-nav__link:focus-visible,
body.page-template-page-classics .ctf-nav .ctf-nav__link.is-active,
body.page-template-page-classics .ctf-nav .ctf-nav__link[aria-current="page"],
body.page-template-page-classic-sets .ctf-nav .ctf-nav__link:hover,
body.page-template-page-classic-sets .ctf-nav .ctf-nav__link:focus-visible,
body.page-template-page-classic-sets .ctf-nav .ctf-nav__link.is-active,
body.page-template-page-classic-sets .ctf-nav .ctf-nav__link[aria-current="page"] {
  color: var(--ctf-blue);
}

body.ctf-submit-body,
body.ctf-submit-body .ctf-main,
body.ctf-scrapbook-body,
body.ctf-scrapbook-body .ctf-main {
  background: #030508;
}

.ctf-currency-switcher .yay-currency-selected-option,
.ctf-currency-switcher .yay-currency-custom-option {
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.ctf-main {
  min-height: 70vh;
}

.ctf-home-hero {
  background:
    radial-gradient(circle at 76% 34%, rgba(54, 221, 242, 0.13), transparent 23rem),
    linear-gradient(135deg, #020304 0%, #05070a 54%, #030508 100%);
  color: var(--ctf-white);
  overflow: hidden;
  padding: 72px 24px 90px;
  position: relative;
}

.ctf-home-hero--image {
  background:
    linear-gradient(90deg, rgba(2, 3, 4, 0.96) 0%, rgba(2, 3, 4, 0.86) 36%, rgba(2, 3, 4, 0.42) 68%, rgba(2, 3, 4, 0.58) 100%),
    radial-gradient(circle at 78% 42%, rgba(54, 221, 242, 0.22), transparent 26rem),
    var(--ctf-home-hero-image),
    linear-gradient(135deg, #020304 0%, #05070a 54%, #030508 100%);
  background-position: center;
  background-size: cover;
}

.ctf-home-hero::before {
  background:
    linear-gradient(110deg, transparent 0 42%, rgba(54, 221, 242, 0.42) 44%, transparent 47%),
    linear-gradient(118deg, transparent 0 52%, rgba(54, 221, 242, 0.2) 53%, transparent 55%),
    radial-gradient(ellipse at center, rgba(255, 255, 255, 0.2) 0%, rgba(54, 221, 242, 0.13) 18%, rgba(0, 0, 0, 0) 62%);
  content: "";
  height: 360px;
  opacity: 0.56;
  position: absolute;
  right: -70px;
  top: 96px;
  transform: rotate(-8deg);
  width: 640px;
}

.ctf-home-hero--image::before {
  opacity: 0.18;
}

.ctf-home-hero::after {
  background:
    repeating-radial-gradient(circle at center, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 17px),
    radial-gradient(circle at 45% 48%, rgba(255, 255, 255, 0.12), rgba(54, 221, 242, 0.11) 10%, rgba(0, 0, 0, 0) 31%);
  border-radius: 50%;
  bottom: -160px;
  content: "";
  height: 540px;
  opacity: 0.36;
  position: absolute;
  right: -20px;
  width: 540px;
}

.ctf-home-hero--image::after {
  opacity: 0.14;
}

.ctf-home-hero__inner,
.ctf-feature-strip,
.ctf-home-section,
.ctf-page,
.ctf-footer__inner,
.ctf-woo {
  margin: 0 auto;
  max-width: var(--ctf-max);
}

.ctf-home-hero__inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 540px;
  position: relative;
  z-index: 2;
}

.ctf-eyebrow {
  color: var(--ctf-blue);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
  margin: 0 0 18px;
  text-transform: uppercase;
}

.ctf-home-hero h1 {
  font-size: clamp(46px, 7vw, 86px);
  letter-spacing: 0;
  line-height: 0.95;
  margin: 0;
  max-width: 680px;
}

.ctf-home-hero p {
  color: rgba(250, 250, 247, 0.8);
  font-size: 18px;
  margin: 24px 0 0;
  max-width: 520px;
}

.ctf-home-hero .ctf-home-hero__intro {
  max-width: 590px;
}

.ctf-home-hero .ctf-home-hero__culture {
  color: rgba(250, 250, 247, 0.7);
  font-size: 17px;
  line-height: 1.65;
  margin-top: 18px;
  max-width: 720px;
}

.ctf-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 38px;
}

.ctf-button,
.button,
button,
input[type="submit"],
.wp-element-button,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit {
  background: var(--ctf-blue);
  border: 1px solid var(--ctf-blue);
  border-radius: var(--ctf-radius);
  color: #001217;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  font-size: 12px;
  font-weight: 900;
  justify-content: center;
  letter-spacing: 0.06em;
  line-height: 1;
  min-height: 42px;
  padding: 14px 20px;
  text-transform: uppercase;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.ctf-button:hover,
.button:hover,
button:hover,
input[type="submit"]:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce #respond input#submit:hover {
  background: var(--ctf-blue-dark);
  border-color: var(--ctf-blue-dark);
  color: #001217;
  transform: translateY(-1px);
}

.ctf-button--ghost {
  background: transparent;
  color: var(--ctf-blue);
}

.ctf-button--ghost:hover {
  background: rgba(54, 221, 242, 0.1);
  color: var(--ctf-blue);
}

.ctf-home-hero .ctf-actions .ctf-button:not(.ctf-button--ghost):hover,
.ctf-home-hero .ctf-actions .ctf-button:not(.ctf-button--ghost):focus-visible {
  background: transparent;
  border-color: var(--ctf-blue);
  color: var(--ctf-blue);
}

.ctf-home-hero .ctf-actions .ctf-button--ghost:hover,
.ctf-home-hero .ctf-actions .ctf-button--ghost:focus-visible {
  background: var(--ctf-blue);
  border-color: var(--ctf-blue);
  color: #001217;
}

.ctf-home-hero__mission {
  border-top: 1px solid rgba(54, 221, 242, 0.28);
  margin-top: 42px;
  max-width: 780px;
  padding-top: 24px;
}

.ctf-home-hero__mission .ctf-shop-kicker {
  color: var(--ctf-blue);
  display: block;
  margin-bottom: 12px;
}

.ctf-home-hero__mission h2 {
  font-size: clamp(25px, 3.2vw, 40px);
  letter-spacing: 0;
  line-height: 1.04;
  margin: 0;
  max-width: 760px;
}

.ctf-home-hero .ctf-home-hero__mission p {
  color: rgba(250, 250, 247, 0.72);
  font-size: 16px;
  line-height: 1.62;
  margin-top: 14px;
  max-width: 760px;
}

.ctf-feature-band {
  background: var(--ctf-ink);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--ctf-white);
  padding: 28px 24px;
}

.ctf-feature-strip {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.ctf-feature {
  align-items: flex-start;
  display: flex;
  gap: 12px;
}

.ctf-feature__icon {
  border: 1px solid var(--ctf-blue);
  border-radius: 50%;
  display: grid;
  flex: 0 0 34px;
  height: 34px;
  overflow: hidden;
  place-items: center;
  position: relative;
}

.ctf-feature__icon::before {
  background:
    radial-gradient(circle at center, transparent 0 3px, rgba(37, 167, 255, 0.35) 3.5px 4.5px, transparent 5px),
    repeating-radial-gradient(circle at center, rgba(255, 255, 255, 0.16) 0 1px, transparent 1px 4px),
    radial-gradient(circle at center, #05070b 0 69%, rgba(37, 167, 255, 0.44) 70% 72%, #05070b 73%);
  border-radius: 50%;
  content: "";
  height: 24px;
  width: 24px;
}

.ctf-feature__icon span {
  background: var(--ctf-blue);
  border-radius: 50%;
  height: 7px;
  left: 50%;
  margin: 0;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 7px;
}

.ctf-feature__icon span::after {
  background: var(--ctf-ink);
  border-radius: 50%;
  content: "";
  height: 2px;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 2px;
}

.ctf-feature__icon--limited span {
  background: #fbfbfb;
}

.ctf-feature__icon--community::after {
  border: solid var(--ctf-blue);
  border-width: 0 1px 1px 0;
  content: "";
  height: 7px;
  position: absolute;
  right: 7px;
  top: 9px;
  transform: rotate(32deg);
  width: 7px;
}

.ctf-feature__icon--secure::after {
  background: var(--ctf-blue);
  border-radius: 999px;
  content: "";
  height: 1px;
  left: 9px;
  position: absolute;
  top: 10px;
  transform: rotate(-28deg);
  width: 16px;
}

.ctf-feature strong {
  display: block;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ctf-feature span {
  color: rgba(250, 250, 247, 0.62);
  display: block;
  font-size: 12px;
  margin-top: 2px;
}

.ctf-home-section {
  padding: 72px 24px;
}

.ctf-section-heading {
  align-items: end;
  display: flex;
  gap: 18px;
  justify-content: space-between;
  margin-bottom: 28px;
}

.ctf-section-heading h2,
.ctf-page h1,
.ctf-woo h1,
.woocommerce-products-header__title {
  font-size: clamp(34px, 5vw, 56px);
  letter-spacing: 0;
  line-height: 1;
  margin: 0;
}

.ctf-section-heading p {
  color: var(--ctf-muted);
  margin: 0;
  max-width: 430px;
}

.ctf-section-heading__aside {
  display: grid;
  gap: 16px;
  justify-items: start;
  max-width: 440px;
}

.ctf-section-heading__aside p {
  max-width: none;
}

.ctf-store-support-section {
  scroll-margin-top: 94px;
}

.ctf-section-heading__aside--commerce {
  justify-items: end;
  text-align: right;
}

.ctf-currency-switcher--section {
  justify-self: end;
}

.ctf-currency-switcher--section .yay-currency-custom-select__trigger {
  background: #fff;
}

.ctf-currency-switcher--section .yay-currency-custom-select__trigger:hover,
.ctf-currency-switcher--section .yay-currency-custom-select__trigger:focus {
  background: var(--ctf-blue);
  color: var(--ctf-white);
}

.ctf-home-classics-section {
  background:
    radial-gradient(circle at 18% 10%, rgba(54, 221, 242, 0.12), transparent 31%),
    linear-gradient(135deg, #030508 0%, #070d13 58%, #0f151d 100%);
  color: var(--ctf-white);
  max-width: none;
  width: 100%;
}

.ctf-home-classics-section .ctf-section-heading {
  margin-left: auto;
  margin-right: auto;
  max-width: var(--ctf-max);
}

.ctf-home-classics-section .ctf-section-heading h2 {
  color: var(--ctf-white);
}

.ctf-home-classics-section .ctf-section-heading p {
  color: rgba(250, 250, 247, 0.68);
}

.ctf-home-classics-section .ctf-button--ghost:hover,
.ctf-home-classics-section .ctf-button--ghost:focus-visible {
  background: var(--ctf-blue);
  color: var(--ctf-white);
}

.ctf-home-classics-section .ctf-daily-pick,
.ctf-home-sets-section .ctf-daily-pick {
  margin-left: auto;
  margin-right: auto;
  max-width: var(--ctf-max);
}

.ctf-home-sets-section {
  background:
    radial-gradient(circle at 82% 8%, rgba(82, 255, 118, 0.14), transparent 30%),
    radial-gradient(circle at 16% 20%, rgba(82, 255, 118, 0.06), transparent 28%),
    linear-gradient(135deg, #020706 0%, #07110d 52%, #101611 100%);
  color: var(--ctf-white);
  max-width: none;
  width: 100%;
}

.ctf-home-sets-section .ctf-section-heading {
  margin-left: auto;
  margin-right: auto;
  max-width: var(--ctf-max);
}

.ctf-home-sets-section .ctf-section-heading h2 {
  color: var(--ctf-white);
}

.ctf-home-sets-section .ctf-section-heading p {
  color: rgba(250, 250, 247, 0.68);
}

.ctf-home-sets-section .ctf-button--ghost:hover,
.ctf-home-sets-section .ctf-button--ghost:focus-visible {
  background: #52ff76;
  border-color: #52ff76;
  color: #001217;
}

.ctf-feature-band--archive {
  background: linear-gradient(135deg, #030508 0%, #0b1117 100%);
}

.ctf-story-grid {
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.ctf-story-card {
  background: linear-gradient(145deg, #151a20, #050709);
  color: var(--ctf-white);
  min-height: 250px;
  overflow: hidden;
  padding: 28px;
  position: relative;
}

.ctf-story-card::before {
  background: radial-gradient(circle at 80% 20%, rgba(54, 221, 242, 0.18), transparent 15rem);
  content: "";
  inset: 0;
  position: absolute;
}

.ctf-story-card > * {
  position: relative;
}

.ctf-story-card h3 {
  bottom: 60px;
  font-size: 22px;
  left: 28px;
  line-height: 1.05;
  margin: 0;
  max-width: 230px;
  position: absolute;
  text-transform: uppercase;
}

.ctf-story-card p {
  bottom: 24px;
  color: rgba(250, 250, 247, 0.7);
  left: 28px;
  margin: 0;
  position: absolute;
  right: 28px;
}

.ctf-page {
  padding: 70px 24px;
}

.ctf-page--commerce,
.ctf-woo-wrap {
  background: var(--ctf-paper);
}

.ctf-woo {
  padding: 58px 24px 84px;
}

.ctf-shop-landing {
  display: grid;
  gap: 54px;
}

.ctf-shop-category {
  border-top: 1px solid var(--ctf-line);
  padding-top: 42px;
}

.ctf-shop-category:first-of-type {
  border-top: 0;
  padding-top: 0;
}

.ctf-shop-category .ctf-section-heading h2 {
  font-size: clamp(30px, 4vw, 46px);
}

.ctf-shop-empty {
  border: 1px solid var(--ctf-line);
  color: var(--ctf-muted);
  margin: 0;
  padding: 18px;
}

.ctf-merch-ideas-box {
  align-items: center;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.72), rgba(244, 246, 247, 0.9)),
    repeating-linear-gradient(135deg, rgba(12, 18, 22, 0.04) 0 1px, transparent 1px 5px);
  border: 1px solid rgba(91, 103, 112, 0.28);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.82);
  color: var(--ctf-ink);
  display: flex;
  gap: 18px;
  justify-content: space-between;
  margin-top: 38px;
  padding: 18px 20px;
}

.ctf-merch-ideas-box h2 {
  font-size: clamp(20px, 2.2vw, 26px);
  letter-spacing: 0;
  line-height: 1;
  margin: 0 0 8px;
}

.ctf-merch-ideas-box p {
  color: var(--ctf-muted);
  margin: 0;
  max-width: 620px;
}

.ctf-merch-ideas-box .ctf-shop-kicker {
  color: #5f6d74;
}

.ctf-merch-ideas-box .ctf-button--ghost {
  border-color: rgba(54, 221, 242, 0.72);
  color: #067f91;
  flex: 0 0 auto;
}

.ctf-merch-ideas-box .ctf-button--ghost:hover,
.ctf-merch-ideas-box .ctf-button--ghost:focus-visible {
  background: var(--ctf-blue);
  border-color: var(--ctf-blue);
  color: var(--ctf-white);
}

.ctf-merch-ideas-page {
  background:
    radial-gradient(circle at 86% 8%, rgba(82, 255, 118, 0.08), transparent 30%),
    radial-gradient(circle at 14% 14%, rgba(54, 221, 242, 0.12), transparent 28%),
    linear-gradient(135deg, #030508 0%, #081011 56%, #111716 100%);
  color: var(--ctf-white);
  padding: 150px 24px 78px;
}

.ctf-merch-ideas-hero,
.ctf-merch-idea-panel {
  margin-left: auto;
  margin-right: auto;
  max-width: var(--ctf-max);
}

.ctf-merch-ideas-hero {
  align-items: start;
  display: grid;
  gap: 32px;
  grid-template-columns: minmax(0, 900px);
  padding: 28px 0 42px;
}

.ctf-merch-ideas-hero h1 {
  font-size: clamp(48px, 7vw, 92px);
  letter-spacing: 0;
  line-height: 0.94;
  margin: 0 0 18px;
  max-width: 900px;
}

.ctf-merch-ideas-hero p {
  color: rgba(250, 250, 247, 0.7);
  font-size: 18px;
  margin: 0;
}

.ctf-merch-idea-panel {
  margin-top: 18px;
}

.ctf-contact-page,
.ctf-feedback-page {
  background:
    radial-gradient(circle at 82% 12%, rgba(54, 221, 242, 0.13), transparent 28%),
    radial-gradient(circle at 14% 18%, rgba(82, 255, 118, 0.07), transparent 26%),
    linear-gradient(135deg, #030508 0%, #081016 54%, #111716 100%);
  color: var(--ctf-white);
  padding: 150px 24px 78px;
}

.ctf-contact-hero,
.ctf-contact-panel,
.ctf-feedback-hero,
.ctf-feedback-panel {
  margin-left: auto;
  margin-right: auto;
  max-width: var(--ctf-max);
}

.ctf-contact-hero,
.ctf-feedback-hero {
  align-items: end;
  display: grid;
  gap: 32px;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 380px);
  padding: 28px 0 42px;
}

.ctf-contact-hero h1,
.ctf-feedback-hero h1 {
  font-size: clamp(48px, 7vw, 92px);
  letter-spacing: 0;
  line-height: 0.94;
  margin: 0 0 18px;
  max-width: 900px;
}

.ctf-contact-hero p,
.ctf-contact-note p,
.ctf-feedback-hero p,
.ctf-feedback-note p {
  color: rgba(250, 250, 247, 0.7);
  font-size: 18px;
  margin: 0;
}

.ctf-contact-note,
.ctf-feedback-note {
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.13);
  padding: 20px;
}

.ctf-contact-note strong,
.ctf-feedback-note strong {
  color: var(--ctf-blue);
  display: block;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.ctf-contact-panel,
.ctf-feedback-panel {
  margin-top: 18px;
}

.ctf-submit-page {
  background:
    radial-gradient(circle at 82% 8%, rgba(54, 221, 242, 0.14), transparent 30%),
    radial-gradient(circle at 16% 18%, rgba(82, 255, 118, 0.08), transparent 28%),
    linear-gradient(135deg, #030508 0%, #081011 54%, #111716 100%);
  color: var(--ctf-white);
  padding: 150px 24px 78px;
}

.ctf-submit-hero,
.ctf-submit-grid {
  margin-left: auto;
  margin-right: auto;
  max-width: var(--ctf-max);
}

.ctf-submit-hero {
  align-items: end;
  display: grid;
  gap: 32px;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 380px);
  padding: 28px 0 42px;
}

.ctf-submit-hero h1 {
  font-size: clamp(48px, 7vw, 92px);
  letter-spacing: 0;
  line-height: 0.94;
  margin: 0 0 18px;
  max-width: 900px;
}

.ctf-submit-hero p,
.ctf-submit-note p,
.ctf-submit-grid p {
  color: rgba(250, 250, 247, 0.7);
  font-size: 18px;
  margin: 0;
}

.ctf-submit-note,
.ctf-submit-grid article {
  background:
    linear-gradient(145deg, rgba(var(--ctf-submit-accent-rgb, 54, 221, 242), 0.16), rgba(255, 255, 255, 0.045) 38%, rgba(255, 255, 255, 0.025) 100%);
  border: 1px solid rgba(var(--ctf-submit-accent-rgb, 54, 221, 242), 0.28);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  overflow: hidden;
  padding: 20px;
  position: relative;
}

.ctf-submit-note {
  --ctf-submit-accent: #36ddf2;
  --ctf-submit-accent-rgb: 54, 221, 242;
}

.ctf-submit-note::before,
.ctf-submit-grid article::before {
  background: linear-gradient(90deg, var(--ctf-submit-accent, var(--ctf-blue)), transparent);
  content: "";
  height: 3px;
  left: 0;
  opacity: 0.72;
  position: absolute;
  right: 0;
  top: 0;
}

.ctf-submit-note > *,
.ctf-submit-grid article > * {
  position: relative;
  z-index: 1;
}

.ctf-submit-note strong {
  color: var(--ctf-submit-accent, var(--ctf-blue));
  display: block;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.ctf-submit-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.ctf-submit-grid article {
  --ctf-submit-accent: #36ddf2;
  --ctf-submit-accent-rgb: 54, 221, 242;
  --ctf-submit-hover-text: #001217;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 300px;
  transition: border-color 160ms ease, transform 160ms ease;
}

.ctf-submit-grid article:nth-child(2) {
  --ctf-submit-accent: #52ff76;
  --ctf-submit-accent-rgb: 82, 255, 118;
}

.ctf-submit-grid article:nth-child(3) {
  --ctf-submit-accent: #ff4fa3;
  --ctf-submit-accent-rgb: 255, 79, 163;
  --ctf-submit-hover-text: #17030c;
}

.ctf-submit-grid article:nth-child(4) {
  --ctf-submit-accent: #8aa8ff;
  --ctf-submit-accent-rgb: 138, 168, 255;
  --ctf-submit-hover-text: #030508;
}

.ctf-submit-grid article:hover,
.ctf-submit-grid article:focus-within {
  border-color: rgba(var(--ctf-submit-accent-rgb), 0.58);
  transform: translateY(-2px);
}

.ctf-submit-grid article .ctf-shop-kicker,
.ctf-submit-grid article h2 {
  color: var(--ctf-submit-accent);
}

.ctf-submit-grid article .ctf-button--ghost {
  border-color: rgba(var(--ctf-submit-accent-rgb), 0.78);
  color: var(--ctf-submit-accent);
}

.ctf-submit-grid article .ctf-button--ghost:hover,
.ctf-submit-grid article .ctf-button--ghost:focus-visible {
  background: var(--ctf-submit-accent);
  border-color: var(--ctf-submit-accent);
  color: var(--ctf-submit-hover-text);
}

.ctf-submit-grid h2 {
  font-size: clamp(26px, 3vw, 38px);
  letter-spacing: 0;
  line-height: 1;
  margin: 0;
}

.ctf-submit-grid .ctf-button {
  margin-top: auto;
}

.ctf-scrapbook-page {
  background:
    radial-gradient(circle at 83% 9%, rgba(255, 79, 163, 0.16), transparent 30%),
    radial-gradient(circle at 14% 18%, rgba(129, 86, 255, 0.11), transparent 28%),
    linear-gradient(135deg, #030508 0%, #100b18 52%, #180d18 100%);
  color: var(--ctf-white);
  padding: 150px 24px 78px;
}

.ctf-scrapbook-hero,
.ctf-scrapbook-prompts,
.ctf-scrapbook-intro,
.ctf-scrapbook-grid,
.ctf-scrapbook-empty {
  margin-left: auto;
  margin-right: auto;
  max-width: var(--ctf-max);
}

.ctf-scrapbook-hero {
  align-items: end;
  display: grid;
  gap: 32px;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 360px);
  padding: 28px 0 36px;
}

.ctf-scrapbook-hero h1 {
  font-size: clamp(48px, 7vw, 92px);
  letter-spacing: 0;
  line-height: 0.94;
  margin: 0 0 18px;
  max-width: 900px;
}

.ctf-scrapbook-hero p {
  color: rgba(250, 250, 247, 0.7);
  font-size: 18px;
  margin: 0;
  max-width: 780px;
}

.ctf-scrapbook-hero .ctf-scrapbook-hero__strapline {
  color: var(--ctf-pink);
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 900;
  line-height: 1.1;
  margin: 0 0 18px;
}

.ctf-scrapbook-stats {
  display: grid;
  gap: 10px;
}

.ctf-scrapbook-stats span {
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(250, 250, 247, 0.64);
  display: grid;
  gap: 2px;
  min-height: 68px;
  padding: 14px;
  text-transform: uppercase;
}

.ctf-scrapbook-stats strong {
  color: var(--ctf-pink);
  font-size: 28px;
  line-height: 1;
}

.ctf-scrapbook-prompts {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-bottom: 38px;
}

.ctf-scrapbook-prompts article {
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.13);
  padding: 18px;
}

.ctf-scrapbook-prompts span {
  color: var(--ctf-pink);
  display: block;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.ctf-scrapbook-prompts p {
  color: rgba(250, 250, 247, 0.7);
  margin: 0;
}

.ctf-scrapbook-intro {
  align-items: end;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  gap: 24px;
  justify-content: space-between;
  padding: 28px 0 22px;
}

.ctf-scrapbook-intro h2,
.ctf-scrapbook-empty h2 {
  font-size: clamp(30px, 4vw, 48px);
  letter-spacing: 0;
  line-height: 1;
  margin: 0;
}

.ctf-scrapbook-intro p,
.ctf-scrapbook-empty p {
  color: rgba(250, 250, 247, 0.66);
  margin: 0;
  max-width: 560px;
}

.ctf-scrapbook-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.ctf-memory-card {
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.13);
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 560px;
  padding: 18px;
  position: relative;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.ctf-memory-card::before {
  background: linear-gradient(90deg, transparent, var(--ctf-pink), rgba(129, 86, 255, 0.9), transparent);
  content: "";
  height: 2px;
  left: 14px;
  opacity: 0;
  position: absolute;
  right: 14px;
  top: -1px;
  transform: scaleX(0.2);
  transform-origin: left center;
  transition: opacity 180ms ease;
}

.ctf-memory-card.is-playing {
  border-color: rgba(255, 79, 163, 0.46);
  box-shadow: 0 0 0 1px rgba(255, 79, 163, 0.12), 0 20px 48px rgba(0, 0, 0, 0.28);
}

.ctf-memory-card.is-playing::before {
  animation: ctf-playing-pulse 1.9s ease-in-out infinite;
  opacity: 1;
}

.ctf-memory-card__head,
.ctf-memory-card__meta {
  color: rgba(250, 250, 247, 0.62);
  display: flex;
  flex-wrap: wrap;
  font-size: 12px;
  font-weight: 900;
  gap: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ctf-memory-card__head {
  justify-content: space-between;
}

.ctf-memory-card h3 {
  font-size: 25px;
  letter-spacing: 0;
  line-height: 1.08;
  margin: 0;
}

.ctf-memory-card__meta span {
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 5px 8px;
}

.ctf-memory-gallery {
  display: grid;
  gap: 8px;
}

.ctf-memory-gallery__main {
  aspect-ratio: 4 / 3;
  background: rgba(0, 0, 0, 0.24);
  border: 1px solid rgba(255, 255, 255, 0.12);
  margin: 0;
  overflow: hidden;
}

.ctf-memory-gallery__main img,
.ctf-memory-gallery__thumbs img {
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.ctf-memory-gallery__thumbs {
  display: grid;
  gap: 8px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.ctf-memory-gallery__thumbs img {
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.ctf-memory-card__story {
  color: rgba(250, 250, 247, 0.74);
  line-height: 1.55;
  margin: 0;
}

.ctf-memory-card__link {
  margin-top: 4px;
}

.ctf-memory-card__link a {
  border: 1px solid rgba(255, 79, 163, 0.52);
  color: var(--ctf-pink);
  display: inline-flex;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  min-height: 38px;
  padding: 10px 13px;
  text-transform: uppercase;
}

.ctf-memory-card__link a:hover,
.ctf-memory-card__link a:focus-visible {
  background: var(--ctf-pink);
  color: #17030c;
}

.ctf-scrapbook-player {
  margin-top: 0;
}

.ctf-scrapbook-empty {
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.13);
  margin-top: 4px;
  padding: 28px;
}

.ctf-scrapbook-empty p {
  margin-top: 12px;
}

.ctf-consent-check {
  align-items: start;
  border: 1px solid rgba(255, 255, 255, 0.14);
  display: grid;
  gap: 12px;
  grid-template-columns: auto minmax(0, 1fr);
  padding: 14px;
}

.ctf-consent-check input {
  accent-color: var(--ctf-blue);
  margin-top: 3px;
  min-height: 0;
  width: auto;
}

.ctf-consent-check span {
  color: rgba(250, 250, 247, 0.78);
  letter-spacing: 0;
  line-height: 1.45;
  text-transform: none;
}

.ctf-shop-kicker {
  color: var(--ctf-blue-dark);
  display: block;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.woocommerce .woocommerce-result-count {
  color: var(--ctf-muted);
  font-size: 13px;
}

.woocommerce .woocommerce-ordering select,
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select,
input:not([type="radio"]):not([type="checkbox"]):not([type="button"]):not([type="submit"]):not([type="reset"]),
select,
textarea {
  background: #fff;
  border: 1px solid var(--ctf-line);
  border-radius: var(--ctf-radius);
  color: var(--ctf-ink);
  min-height: 42px;
  padding: 10px 12px;
}

input[type="radio"],
input[type="checkbox"] {
  min-height: 0;
  padding: 0;
  width: auto;
}

body.woocommerce-checkout input[type="radio"],
body.woocommerce-checkout .wc-block-components-radio-control__input,
body.woocommerce-checkout .wc-block-components-radio-control__input[type="radio"] {
  -webkit-appearance: none;
  appearance: none;
  background: #fff;
  border: 1.5px solid #aeb6bf;
  border-radius: 50% !important;
  box-shadow: none;
  display: inline-block;
  flex: 0 0 18px;
  height: 18px !important;
  margin: 0 10px 0 0;
  min-height: 18px !important;
  padding: 0 !important;
  position: relative;
  vertical-align: middle;
  width: 18px !important;
}

body.woocommerce-checkout .wc-block-components-radio-control__option {
  align-items: center;
  display: grid !important;
  gap: 12px;
  grid-template-columns: 18px minmax(0, 1fr);
  padding-left: 34px !important;
  padding-right: 16px !important;
}

body.woocommerce-checkout .wc-block-components-radio-control__option .wc-block-components-radio-control__input,
body.woocommerce-checkout .wc-block-components-radio-control__option .wc-block-components-radio-control__input[type="radio"] {
  align-self: center;
  bottom: auto !important;
  grid-column: 1;
  justify-self: start;
  left: auto !important;
  margin: 0 0 0 -6px !important;
  position: relative !important;
  right: auto !important;
  top: auto !important;
  transform: none !important;
}

body.woocommerce-checkout .wc-block-components-radio-control__option .wc-block-components-radio-control__option-layout {
  grid-column: 2;
  min-width: 0;
}

body.woocommerce-checkout input[type="radio"]:checked,
body.woocommerce-checkout .wc-block-components-radio-control__input:checked {
  background: radial-gradient(circle, var(--ctf-blue-dark) 0 4px, #fff 4.5px);
  border-color: var(--ctf-blue-dark);
}

body.woocommerce-checkout input[type="radio"]::before,
body.woocommerce-checkout input[type="radio"]::after,
body.woocommerce-checkout .wc-block-components-radio-control__input::before,
body.woocommerce-checkout .wc-block-components-radio-control__input::after {
  content: none !important;
  display: none !important;
}

body.woocommerce-checkout input[type="radio"]:checked::after,
body.woocommerce-checkout .wc-block-components-radio-control__input:checked::after {
  display: none !important;
}

body.woocommerce-checkout input[type="radio"]:checked::before,
body.woocommerce-checkout .wc-block-components-radio-control__input:checked::before {
  background: var(--ctf-blue-dark) !important;
  border-radius: 50% !important;
  content: "" !important;
  display: block !important;
  height: 8px !important;
  left: 50% !important;
  margin: 0 !important;
  opacity: 1 !important;
  position: absolute !important;
  top: 50% !important;
  transform: translate(-50%, -50%) !important;
  width: 8px !important;
}

body.woocommerce-checkout input[type="radio"]:focus-visible,
body.woocommerce-checkout .wc-block-components-radio-control__input:focus-visible {
  outline: 2px solid rgba(54, 221, 242, 0.55);
  outline-offset: 2px;
}

.ctf-checkout-email-updates-optin {
  margin: 12px 0 0;
}

.ctf-checkout-email-updates-optin__label {
  align-items: flex-start;
  color: #1b2027;
  display: flex;
  font-size: 14px;
  font-weight: 700;
  gap: 10px;
  line-height: 1.45;
}

.ctf-checkout-email-updates-optin input[type="checkbox"],
body.woocommerce-checkout .ctf-checkout-email-updates-optin input[type="checkbox"] {
  -webkit-appearance: none;
  appearance: none;
  background: #fff;
  border: 1.5px solid #aeb6bf;
  border-radius: 5px;
  box-shadow: none;
  flex: 0 0 18px;
  height: 18px;
  margin: 1px 0 0;
  min-height: 18px;
  padding: 0;
  position: relative;
  width: 18px;
}

.ctf-checkout-email-updates-optin input[type="checkbox"]:checked,
body.woocommerce-checkout .ctf-checkout-email-updates-optin input[type="checkbox"]:checked {
  background: var(--ctf-blue-dark);
  border-color: var(--ctf-blue-dark);
}

.ctf-checkout-email-updates-optin input[type="checkbox"]:checked::after,
body.woocommerce-checkout .ctf-checkout-email-updates-optin input[type="checkbox"]:checked::after {
  border: solid #fff;
  border-width: 0 2px 2px 0;
  content: "";
  display: block;
  height: 9px;
  left: 6px;
  position: absolute;
  top: 2px;
  transform: rotate(45deg);
  width: 4px;
}

.ctf-checkout-email-updates-optin input[type="checkbox"]:focus-visible,
body.woocommerce-checkout .ctf-checkout-email-updates-optin input[type="checkbox"]:focus-visible {
  outline: 2px solid rgba(54, 221, 242, 0.55);
  outline-offset: 2px;
}

body.woocommerce-checkout .wc-block-components-form .wc-block-components-text-input input,
body.woocommerce-checkout .wc-block-checkout__form .wc-block-components-text-input input,
body.woocommerce-checkout .wc-block-components-combobox .wc-block-components-combobox-control input {
  line-height: 1.25 !important;
  min-height: 58px;
  padding: 24px 14px 8px !important;
}

body.woocommerce-checkout .wc-block-components-form .wc-block-components-text-input label,
body.woocommerce-checkout .wc-block-checkout__form .wc-block-components-text-input label,
body.woocommerce-checkout .wc-block-components-combobox .wc-block-components-combobox-control label {
  font-size: 12px;
  line-height: 1.2;
  top: 9px !important;
  transform: none !important;
}

.woocommerce ul.products {
  display: grid;
  gap: 28px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 32px 0 0;
}

.woocommerce ul.products::before,
.woocommerce ul.products::after {
  display: none;
}

.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
  border: 1px solid var(--ctf-line);
  display: flex;
  flex-direction: column;
  float: none;
  margin: 0;
  padding: 0 0 18px;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
  width: auto !important;
}

.woocommerce ul.products li.product:hover,
.woocommerce-page ul.products li.product:hover {
  border-color: rgba(54, 221, 242, 0.56);
  box-shadow: 0 16px 34px rgba(3, 5, 8, 0.08);
  transform: translateY(-3px);
}

.woocommerce ul.products li.product a img {
  aspect-ratio: 1 / 1;
  background: #f6f7f8;
  margin: 0;
  object-fit: cover;
  transition: filter 180ms ease;
  width: 100%;
}

.woocommerce ul.products li.product:hover a img {
  filter: saturate(1.04) contrast(1.03);
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
  color: var(--ctf-ink);
  font-size: 15px;
  font-weight: 850;
  line-height: 1.25;
  min-height: 54px;
  padding: 15px 16px 0;
}

.woocommerce ul.products li.product .price {
  color: var(--ctf-ink);
  display: block;
  font-size: 14px;
  font-weight: 800;
  padding: 4px 16px 0;
}

.woocommerce ul.products li.product .button {
  align-items: center;
  background: transparent;
  border-color: var(--ctf-blue);
  color: #067f91;
  display: flex !important;
  height: 44px;
  justify-content: center;
  line-height: 1 !important;
  margin: 16px 16px 0;
  margin-top: auto;
  min-height: 44px;
  overflow: hidden;
  padding: 0 14px;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
  width: calc(100% - 32px);
}

.woocommerce ul.products li.product .button:hover {
  background: var(--ctf-blue);
  border-color: var(--ctf-blue);
  color: var(--ctf-white);
}

.woocommerce ul.products li.product .added_to_cart {
  display: none;
}

.woocommerce .related.products {
  clear: both;
  grid-column: 1 / -1;
  margin-top: 56px;
  width: 100%;
}

.woocommerce .related.products h2 {
  font-size: clamp(28px, 4vw, 42px);
  letter-spacing: 0;
  line-height: 1;
  margin: 0 0 24px;
}

.woocommerce .related.products ul.products {
  display: grid;
  gap: clamp(24px, 2.5vw, 36px);
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr));
}

.woocommerce .related.products ul.products li.product,
.woocommerce-page .related.products ul.products li.product {
  clear: none;
  float: none;
  margin: 0;
  max-width: none;
  width: auto !important;
}

@media (min-width: 1180px) {
  .woocommerce .related.products ul.products {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.woocommerce .related.products ul.products li.product .button {
  height: auto;
  line-height: 1.15 !important;
  min-height: 46px;
  padding: 10px 12px;
  white-space: normal;
}

.woocommerce span.onsale {
  background: var(--ctf-pink);
  border-radius: 999px;
  color: #fff;
  font-size: 11px;
  font-weight: 900;
  left: 12px;
  min-height: 0;
  min-width: 0;
  padding: 8px 10px;
  top: 12px;
}

.woocommerce div.product {
  display: grid;
  gap: 54px;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
}

body.ctf-v5-product-body .ctf-woo {
  max-width: 1480px;
}

body.ctf-v5-product-body.woocommerce div.product {
  align-items: start;
  gap: clamp(38px, 5vw, 76px);
  grid-template-columns: minmax(440px, 1.08fr) minmax(460px, 0.92fr);
}

.woocommerce div.product div.images,
.woocommerce div.product div.summary {
  float: none !important;
  margin: 0 !important;
  min-width: 0;
  width: 100% !important;
}

body.ctf-v5-product-body.woocommerce div.product div.images,
body.ctf-v5-product-body.woocommerce div.product div.summary {
  float: none !important;
  margin: 0 !important;
  min-width: 0;
  width: 100% !important;
}

body.ctf-v5-product-body.woocommerce div.product div.summary {
  max-width: 720px;
}

.woocommerce div.product div.images img {
  background: #f6f7f8;
  border: 1px solid var(--ctf-line);
  display: block;
  width: 100%;
}

.woocommerce div.product div.images .woocommerce-product-gallery__wrapper,
.woocommerce div.product div.images .woocommerce-product-gallery__image,
.woocommerce div.product div.images .woocommerce-product-gallery__image a {
  display: block;
  width: 100%;
}

body.ctf-v5-product-body .woocommerce-product-gallery__image.ctf-v5-product-gallery-image {
  background: #f6f7f8;
  border: 1px solid var(--ctf-line);
  padding: clamp(20px, 3vw, 38px);
}

body.ctf-v5-product-body.woocommerce div.product div.images img.ctf-v5-product-main-image {
  background: transparent;
  border: 0;
  display: block;
  filter: drop-shadow(0 22px 36px rgba(0, 0, 0, 0.16));
  height: auto;
  object-fit: contain;
  width: 100%;
}

.woocommerce div.product .product_title {
  font-size: clamp(34px, 5vw, 56px);
  letter-spacing: 0;
  line-height: 1;
  margin: 0 0 16px;
}

body.ctf-v5-product-body.woocommerce div.product .product_title {
  font-size: clamp(38px, 4.5vw, 62px);
}

.ctf-v5-product-currency {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: -4px 0 18px;
}

.ctf-v5-product-currency > span:first-child {
  color: var(--ctf-muted);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.woocommerce div.product p.price,
.woocommerce div.product span.price {
  color: var(--ctf-ink);
  font-size: 24px;
  font-weight: 900;
}

.woocommerce div.product form.cart {
  align-items: center;
  border-bottom: 1px solid var(--ctf-line);
  border-top: 1px solid var(--ctf-line);
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 28px 0;
  padding: 22px 0;
}

.ctf-v5-artwork-fields {
  background: #f7fbfc;
  border: 1px solid rgba(54, 221, 242, 0.28);
  flex: 1 0 100%;
  padding: 18px;
}

.ctf-v5-artwork-fields p,
.ctf-v5-cart-artwork-fields p {
  color: var(--ctf-muted);
  font-size: 14px;
  line-height: 1.55;
  margin: 0 0 14px;
}

.ctf-v5-artwork-fields__title,
.ctf-v5-cart-artwork-fields__title {
  color: var(--ctf-ink) !important;
  font-size: 12px !important;
  font-weight: 900;
  letter-spacing: 0.1em;
  margin-bottom: 8px !important;
  text-transform: uppercase;
}

.ctf-v5-artwork-fields__list,
.ctf-v5-cart-artwork-fields__grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.ctf-v5-artwork-fields label,
.ctf-v5-cart-artwork-fields label {
  color: var(--ctf-ink);
  display: grid;
  font-size: 12px;
  font-weight: 900;
  gap: 6px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.ctf-v5-cart-artwork-fields {
  background: #f7fbfc;
  border: 1px solid rgba(54, 221, 242, 0.24);
  margin-top: 14px;
  padding: 14px;
}

.woocommerce div.product form.cart .button.single_add_to_cart_button,
.woocommerce div.product form.cart .button.single_add_to_cart_button.alt {
  background: transparent;
  border-color: var(--ctf-blue);
  color: #067f91;
}

.woocommerce div.product form.cart .button.single_add_to_cart_button:hover,
.woocommerce div.product form.cart .button.single_add_to_cart_button.alt:hover {
  background: var(--ctf-blue);
  border-color: var(--ctf-blue);
  color: var(--ctf-white);
}

body.single-product #wcpay-express-checkout-element,
body.single-product #wcpay-express-checkout__order-attribution-inputs,
body.single-product .ppc-button-wrapper,
body.single-product .ppcp-messages {
  display: none !important;
}

.woocommerce .quantity .qty {
  border-color: var(--ctf-line);
  height: 44px;
  width: 72px;
}

.product_meta {
  color: var(--ctf-muted);
  font-size: 13px;
}

.woocommerce-tabs {
  grid-column: 1 / -1;
}

.woocommerce div.product .woocommerce-tabs ul.tabs {
  border-bottom: 1px solid var(--ctf-line);
  padding: 0;
}

.woocommerce div.product .woocommerce-tabs ul.tabs::before {
  border-bottom: 0;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li {
  background: transparent;
  border: 0;
  border-radius: 0;
  margin: 0 18px 0 0;
  padding: 0;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li a {
  color: var(--ctf-muted);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  padding: 14px 0;
  text-transform: uppercase;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li.active a {
  border-bottom: 2px solid var(--ctf-blue);
  color: var(--ctf-ink);
}

.woocommerce div.product .woocommerce-Tabs-panel--description > p:first-of-type strong {
  color: var(--ctf-ink);
  display: block;
  font-size: clamp(24px, 2.6vw, 36px);
  letter-spacing: 0;
  line-height: 1.08;
  margin: 0 0 18px;
}

.woocommerce table.shop_table {
  border: 1px solid var(--ctf-line);
  border-radius: var(--ctf-radius);
}

.woocommerce-message,
.woocommerce-info {
  border-top-color: var(--ctf-blue);
}

.woocommerce-message::before,
.woocommerce-info::before {
  color: var(--ctf-blue-dark);
}

.ctf-classics {
  background:
    radial-gradient(circle at 18% 10%, rgba(54, 221, 242, 0.16), transparent 32%),
    linear-gradient(135deg, #030508 0%, #090d12 58%, #111827 100%);
  color: var(--ctf-white);
  padding: 150px 24px 72px;
}

.ctf-classics__hero,
.ctf-daily-pick,
.ctf-classics__toolbar,
.ctf-classics__meta,
.ctf-track-grid,
.ctf-suggest {
  margin-left: auto;
  margin-right: auto;
  max-width: var(--ctf-max);
}

.ctf-classics__hero {
  align-items: end;
  display: grid;
  gap: 32px;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 360px);
  padding: 28px 0 36px;
}

.ctf-classics__hero h1 {
  font-size: clamp(42px, 7vw, 86px);
  letter-spacing: 0;
  line-height: 0.95;
  margin: 0 0 18px;
  max-width: 900px;
}

.ctf-classics__hero p {
  color: rgba(250, 250, 247, 0.68);
  font-size: 18px;
  margin: 0;
  max-width: 760px;
}

.ctf-classics__hero .ctf-classics__community-note {
  border-left: 2px solid var(--ctf-blue);
  color: rgba(250, 250, 247, 0.9);
  margin-top: 16px;
  padding-left: 16px;
}

.ctf-classics__hero .ctf-classics__strapline {
  color: var(--ctf-blue);
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 900;
  line-height: 1.1;
  margin: 0 0 18px;
}

.ctf-classics__stats {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.ctf-classics__stats span {
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(250, 250, 247, 0.62);
  display: grid;
  gap: 2px;
  min-height: 86px;
  padding: 16px;
}

.ctf-classics__stats span:last-child {
  border-right: 0;
}

.ctf-classics__stats strong {
  color: var(--ctf-white);
  font-size: 28px;
  line-height: 1;
}

.ctf-daily-pick {
  align-items: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--ctf-white);
  display: grid;
  gap: 24px;
  grid-template-columns: minmax(0, 0.86fr) minmax(320px, 0.64fr);
  margin-bottom: 28px;
  padding: 30px;
  position: relative;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.ctf-daily-pick h2 {
  font-size: clamp(30px, 4.5vw, 54px);
  letter-spacing: 0;
  line-height: 1;
  margin: 8px 0 12px;
}

.ctf-daily-pick p {
  color: rgba(250, 250, 247, 0.68);
  margin: 0;
}

.ctf-submitted-by {
  color: var(--ctf-blue) !important;
  font-size: 13px !important;
  font-weight: 900;
  margin-top: 10px !important;
}

.ctf-track-label {
  color: rgba(250, 250, 247, 0.72) !important;
  font-size: 13px !important;
  font-weight: 800;
  margin-top: 10px !important;
}

.ctf-track-description {
  color: rgba(250, 250, 247, 0.76) !important;
  font-size: 14px !important;
  line-height: 1.45;
  margin-top: 10px !important;
}

.ctf-classics__toolbar {
  align-items: end;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: grid;
  gap: 16px;
  grid-template-columns: minmax(220px, 1fr) repeat(3, minmax(140px, 190px)) auto;
  padding: 20px 0;
}

.ctf-classics__toolbar label,
.ctf-suggest-form label {
  display: grid;
  gap: 8px;
}

.ctf-classics__toolbar span,
.ctf-suggest-form span {
  color: rgba(250, 250, 247, 0.6);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ctf-classics__toolbar input,
.ctf-classics__toolbar select,
.ctf-suggest-form input,
.ctf-suggest-form select,
.ctf-suggest-form textarea {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 0;
  color: var(--ctf-white);
  font: inherit;
  min-height: 44px;
  padding: 10px 12px;
  width: 100%;
}

.ctf-classics__meta {
  align-items: end;
  display: flex;
  gap: 18px;
  justify-content: space-between;
  padding: 28px 0 18px;
}

.ctf-classics__meta h2 {
  font-size: clamp(28px, 4vw, 44px);
  letter-spacing: 0;
  line-height: 1;
  margin: 0;
}

.ctf-classics__meta p {
  color: rgba(250, 250, 247, 0.62);
  margin: 0;
}

.ctf-track-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.ctf-pagination {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin: 28px auto 0;
  max-width: var(--ctf-max);
}

.ctf-pagination:empty {
  display: none;
}

.ctf-pagination button {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: var(--ctf-white);
  cursor: pointer;
  font: inherit;
  font-size: 13px;
  font-weight: 900;
  min-height: 38px;
  min-width: 38px;
  padding: 0 12px;
}

.ctf-pagination button[aria-current="page"] {
  border-color: var(--ctf-blue);
  color: var(--ctf-blue);
}

.ctf-pagination button:disabled {
  cursor: default;
  opacity: 0.35;
}

.ctf-classic-sets {
  background:
    radial-gradient(circle at 82% 8%, rgba(82, 255, 118, 0.1), transparent 30%),
    radial-gradient(circle at 16% 18%, rgba(54, 221, 242, 0.11), transparent 28%),
    linear-gradient(135deg, #020706 0%, #07110f 48%, #101612 100%);
  color: var(--ctf-white);
  padding: 150px 24px 78px;
}

.ctf-sets-hero,
.ctf-sets-intro,
.ctf-set-grid {
  margin-left: auto;
  margin-right: auto;
  max-width: var(--ctf-max);
}

.ctf-sets-hero {
  align-items: end;
  display: grid;
  gap: 32px;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 360px);
  padding: 28px 0 38px;
}

.ctf-sets-hero h1 {
  font-size: clamp(48px, 7vw, 92px);
  letter-spacing: 0;
  line-height: 0.94;
  margin: 0 0 18px;
  max-width: 900px;
}

.ctf-sets-hero p {
  color: rgba(250, 250, 247, 0.7);
  font-size: 18px;
  margin: 0;
  max-width: 760px;
}

.ctf-sets-hero .ctf-sets-hero__strapline {
  color: #52ff76;
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 900;
  line-height: 1.1;
  margin: 0 0 18px;
}

.ctf-sets-hero .ctf-sets-hero__note {
  border-left: 2px solid #52ff76;
  color: rgba(250, 250, 247, 0.9);
  margin-top: 16px;
  padding-left: 16px;
}

.ctf-sets-stats {
  display: grid;
  gap: 10px;
}

.ctf-sets-stats span {
  border: 1px solid rgba(255, 255, 255, 0.14);
  display: flex;
  justify-content: space-between;
  min-height: 58px;
  padding: 14px;
  text-transform: uppercase;
}

.ctf-sets-stats strong {
  color: #52ff76;
  font-size: 30px;
  line-height: 1;
}

.ctf-sets-intro {
  align-items: end;
  display: flex;
  gap: 24px;
  justify-content: space-between;
  padding: 18px 0 24px;
}

.ctf-sets-intro h2 {
  font-size: clamp(30px, 4vw, 48px);
  letter-spacing: 0;
  line-height: 1;
  margin: 0;
}

.ctf-sets-intro p {
  color: rgba(250, 250, 247, 0.66);
  margin: 0;
  max-width: 560px;
}

.ctf-sets-toolbar {
  align-items: end;
  display: flex;
  gap: 18px;
  justify-content: space-between;
  margin: 0 auto 24px;
  max-width: var(--ctf-max);
}

.ctf-sets-toolbar label {
  display: grid;
  gap: 8px;
  max-width: 460px;
  width: min(100%, 460px);
}

.ctf-sets-toolbar span {
  color: rgba(250, 250, 247, 0.62);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ctf-sets-toolbar input {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 0;
  color: var(--ctf-white);
  font: inherit;
  min-height: 44px;
  padding: 10px 12px;
  width: 100%;
}

.ctf-sets-toolbar p {
  color: rgba(250, 250, 247, 0.62);
  margin: 0;
}

.ctf-set-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.ctf-set-card {
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.13);
  display: flex;
  flex-direction: column;
  gap: 13px;
  min-height: 520px;
  padding: 18px;
  position: relative;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.ctf-set-card::before,
.ctf-set-single-main::before {
  background: linear-gradient(90deg, transparent, #52ff76, var(--ctf-blue), transparent);
  content: "";
  height: 2px;
  left: 14px;
  opacity: 0;
  position: absolute;
  right: 14px;
  top: -1px;
  transform: scaleX(0.2);
  transform-origin: left center;
  transition: opacity 180ms ease;
}

.ctf-set-card.is-playing,
.ctf-set-single-main.is-playing {
  border-color: rgba(82, 255, 118, 0.46);
  box-shadow: 0 0 0 1px rgba(82, 255, 118, 0.12), 0 20px 48px rgba(0, 0, 0, 0.28);
}

.ctf-set-card.is-playing::before,
.ctf-set-single-main.is-playing::before {
  animation: ctf-playing-pulse 1.9s ease-in-out infinite;
  opacity: 1;
}

.ctf-set-card__head,
.ctf-set-card__meta {
  align-items: center;
  color: rgba(250, 250, 247, 0.62);
  display: flex;
  flex-wrap: wrap;
  font-size: 12px;
  font-weight: 900;
  gap: 10px;
  justify-content: space-between;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ctf-set-card h3 {
  font-size: 24px;
  letter-spacing: 0;
  line-height: 1.08;
  margin: 0;
  min-height: 52px;
}

.ctf-set-card h3 a:hover,
.ctf-set-card h3 a:focus-visible {
  color: #52ff76;
}

.ctf-set-card__title {
  color: var(--ctf-white);
  font-size: 16px;
  font-weight: 800;
  margin: 0;
  min-height: 42px;
}

.ctf-set-card__event,
.ctf-set-card__note {
  color: rgba(250, 250, 247, 0.68);
  margin: 0;
}

.ctf-set-tracklisting {
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(250, 250, 247, 0.74);
  padding: 10px 12px;
}

.ctf-set-tracklisting summary {
  color: #52ff76;
  cursor: pointer;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ctf-set-tracklisting pre {
  font: inherit;
  margin: 12px 0 0;
  white-space: pre-wrap;
}

.ctf-set-player {
  aspect-ratio: 16 / 9;
  background: rgba(0, 0, 0, 0.34);
  border: 1px solid rgba(255, 255, 255, 0.12);
  overflow: visible;
  position: relative;
  width: 100%;
}

.ctf-set-player::after,
.ctf-set-single-player::after {
  animation: ctf-set-wave 1.55s linear infinite;
  background:
    linear-gradient(90deg, transparent 0 6%, rgba(82, 255, 118, 0.95) 6% 10%, transparent 10% 17%),
    linear-gradient(90deg, transparent 0 14%, rgba(54, 221, 242, 0.82) 14% 18%, transparent 18% 26%),
    linear-gradient(90deg, transparent 0 24%, rgba(250, 250, 247, 0.46) 24% 27%, transparent 27% 36%);
  background-size: 62px 100%, 86px 100%, 118px 100%;
  bottom: -9px;
  content: "";
  height: 3px;
  left: 0;
  opacity: 0;
  position: absolute;
  right: 0;
  transform: scaleX(0.72);
  transform-origin: left center;
  transition: opacity 180ms ease, transform 180ms ease;
  z-index: 2;
}

.ctf-set-player.is-playing,
.ctf-set-single-player.is-playing {
  border-color: rgba(82, 255, 118, 0.42);
}

.ctf-set-player.is-playing::after,
.ctf-set-single-player.is-playing::after {
  opacity: 1;
  transform: scaleX(1);
}

.ctf-set-player iframe,
.ctf-set-player .ctf-lazy-youtube__button {
  border: 0;
  display: block;
  height: 100%;
  inset: 0;
  position: absolute;
  width: 100%;
  z-index: 1;
}

.ctf-set-player--missing {
  align-items: center;
  color: rgba(250, 250, 247, 0.58);
  display: flex;
  font-weight: 900;
  justify-content: center;
  text-transform: uppercase;
}

.ctf-set-card__meta {
  margin-top: auto;
}

.ctf-set-card__meta a {
  color: #52ff76;
  text-decoration: none;
}

.ctf-classic-set-single {
  background:
    radial-gradient(circle at 82% 8%, rgba(82, 255, 118, 0.1), transparent 30%),
    radial-gradient(circle at 16% 18%, rgba(54, 221, 242, 0.11), transparent 28%),
    linear-gradient(135deg, #020706 0%, #07110f 48%, #101612 100%);
  color: var(--ctf-white);
  padding: 150px 24px 78px;
}

.ctf-set-single-hero,
.ctf-set-single-layout {
  margin-left: auto;
  margin-right: auto;
  max-width: var(--ctf-max);
}

.ctf-set-single-hero {
  align-items: end;
  display: grid;
  gap: 32px;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 360px);
  padding: 28px 0 38px;
}

.ctf-set-single-hero h1 {
  font-size: clamp(44px, 7vw, 86px);
  letter-spacing: 0;
  line-height: 0.94;
  margin: 0 0 18px;
  max-width: 900px;
}

.ctf-set-single__title {
  color: #52ff76;
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 900;
  line-height: 1.1;
  margin: 0 0 14px;
}

.ctf-set-single__event {
  color: rgba(250, 250, 247, 0.7);
  font-size: 18px;
  margin: 0;
}

.ctf-set-single__facts {
  display: grid;
  gap: 10px;
}

.ctf-set-single__facts span,
.ctf-set-single__facts a {
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(250, 250, 247, 0.72);
  display: flex;
  justify-content: space-between;
  min-height: 58px;
  padding: 14px;
  text-transform: uppercase;
}

.ctf-set-single__facts strong {
  color: #52ff76;
  font-size: 30px;
  line-height: 1;
}

.ctf-set-single__facts a {
  align-items: center;
  color: #52ff76;
  font-size: 12px;
  font-weight: 900;
  justify-content: center;
}

.ctf-set-single-layout {
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(0, 1fr) 320px;
}

.ctf-set-single-main,
.ctf-set-single-side {
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.13);
  padding: 22px;
}

.ctf-set-single-main {
  display: grid;
  gap: 28px;
  position: relative;
}

.ctf-set-single-main h2,
.ctf-set-single-side h2 {
  font-size: 22px;
  letter-spacing: 0;
  line-height: 1.1;
  margin: 0 0 12px;
}

.ctf-set-single-main p {
  color: rgba(250, 250, 247, 0.72);
  margin: 0;
}

.ctf-set-single-main section {
  display: grid;
  gap: 12px;
}

.ctf-set-single-copy--short {
  border-left: 2px solid #52ff76;
  padding-left: 16px;
}

.ctf-set-single-copy--short p {
  color: rgba(250, 250, 247, 0.82);
  font-size: 18px;
  line-height: 1.5;
}

.ctf-set-single-copy--long {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
}

.ctf-set-single-player {
  aspect-ratio: 16 / 9;
  background: rgba(0, 0, 0, 0.34);
  border: 1px solid rgba(255, 255, 255, 0.12);
  overflow: visible;
  position: relative;
  width: 100%;
}

.ctf-set-single-player iframe,
.ctf-set-single-player .ctf-lazy-youtube__button {
  border: 0;
  display: block;
  height: 100%;
  inset: 0;
  position: absolute;
  width: 100%;
  z-index: 1;
}

.ctf-set-single-tracklist {
  background: rgba(0, 0, 0, 0.24);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(250, 250, 247, 0.76);
  font: inherit;
  margin: 0;
  padding: 16px;
  white-space: pre-wrap;
}

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

.ctf-set-gallery figure {
  aspect-ratio: 4 / 3;
  background: rgba(0, 0, 0, 0.24);
  border: 1px solid rgba(255, 255, 255, 0.12);
  margin: 0;
  overflow: hidden;
}

.ctf-set-gallery img {
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.ctf-set-long-description__image {
  aspect-ratio: 16 / 9;
  background: rgba(0, 0, 0, 0.24);
  border: 1px solid rgba(255, 255, 255, 0.12);
  margin: 0;
  overflow: hidden;
}

.ctf-set-long-description__image img {
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.ctf-set-pagination {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 24px;
}

.ctf-set-pagination a {
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.13);
  color: rgba(250, 250, 247, 0.78);
  display: grid;
  gap: 8px;
  min-height: 116px;
  padding: 18px;
  text-decoration: none;
}

.ctf-set-pagination a:last-child {
  text-align: right;
}

.ctf-set-pagination span {
  color: var(--ctf-blue);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ctf-set-pagination strong {
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.1;
}

.ctf-set-pagination a:hover,
.ctf-set-pagination a:focus-visible {
  border-color: rgba(54, 221, 242, 0.7);
  color: var(--ctf-white);
  transform: translateY(-2px);
}

.ctf-set-single-side {
  align-self: start;
  display: grid;
  gap: 18px;
}

.ctf-set-single-side dl {
  display: grid;
  gap: 12px;
  margin: 0;
}

.ctf-set-single-side dl div {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 12px;
}

.ctf-set-single-side dt {
  color: rgba(250, 250, 247, 0.52);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ctf-set-single-side dd {
  color: rgba(250, 250, 247, 0.82);
  margin: 4px 0 0;
}

.ctf-track-card {
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  flex-direction: column;
  gap: 15px;
  min-height: 430px;
  padding: 18px;
  position: relative;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.ctf-track-card::before,
.ctf-daily-pick::before {
  background: linear-gradient(90deg, transparent, var(--ctf-blue), #52ff76, transparent);
  content: "";
  height: 2px;
  left: 14px;
  opacity: 0;
  position: absolute;
  right: 14px;
  top: -1px;
  transform: scaleX(0.2);
  transform-origin: left center;
  transition: opacity 180ms ease;
}

.ctf-track-card.is-playing,
.ctf-daily-pick.is-playing {
  border-color: rgba(54, 221, 242, 0.45);
  box-shadow: 0 0 0 1px rgba(54, 221, 242, 0.12), 0 18px 42px rgba(0, 0, 0, 0.24);
}

.ctf-track-card.is-playing::before,
.ctf-daily-pick.is-playing::before {
  animation: ctf-playing-pulse 1.8s ease-in-out infinite;
  opacity: 1;
}

.ctf-daily-pick::before {
  background: linear-gradient(90deg, transparent, var(--ctf-pink), var(--ctf-blue), transparent);
  height: 3px;
}

.ctf-daily-pick.is-playing {
  border-color: rgba(255, 79, 163, 0.42);
  box-shadow: 0 0 0 1px rgba(255, 79, 163, 0.14), 0 20px 54px rgba(54, 221, 242, 0.12), 0 22px 58px rgba(0, 0, 0, 0.3);
}

.ctf-daily-pick.is-playing::before {
  animation-duration: 2.35s;
}

.ctf-track-card__top {
  color: rgba(250, 250, 247, 0.58);
  display: flex;
  font-size: 12px;
  font-weight: 900;
  justify-content: space-between;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ctf-track-card h3 {
  font-size: 18px;
  letter-spacing: 0;
  line-height: 1.12;
  margin: 0;
  min-height: calc(18px * 1.12 * 2);
}

.ctf-track-card p {
  color: rgba(250, 250, 247, 0.58);
  font-size: 13px;
  margin: 0;
}

.ctf-track-card__meta {
  display: grid;
  gap: 8px;
}

.ctf-platforms {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
}

.ctf-daily-pick .ctf-platforms {
  margin-top: 18px;
}

.ctf-platforms a {
  align-items: center;
  background: transparent;
  border: 1px solid var(--ctf-blue);
  color: var(--ctf-blue-dark);
  display: inline-flex;
  font-size: 12px;
  font-family: inherit;
  font-weight: 900;
  height: 34px;
  justify-content: center;
  padding: 0 10px;
}

.ctf-daily-pick .ctf-platforms a,
.ctf-track-card .ctf-platforms a {
  color: var(--ctf-blue);
}

.ctf-platforms a:hover {
  background: rgba(54, 221, 242, 0.12);
  color: var(--ctf-white);
}

.ctf-suggest {
  align-items: start;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(240px, 0.8fr) minmax(0, 1.2fr);
  margin-top: 60px;
  padding-top: 42px;
}

.ctf-suggest h2 {
  font-size: clamp(30px, 4vw, 48px);
  letter-spacing: 0;
  line-height: 1;
  margin: 8px 0 14px;
}

.ctf-suggest p {
  color: rgba(250, 250, 247, 0.62);
  margin: 0;
}

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

.ctf-suggest > .ctf-form-note,
.ctf-suggest > .ctf-suggest-form {
  grid-column: 2;
}

.ctf-suggest-form__wide,
.ctf-suggest-form button {
  grid-column: 1 / -1;
}

.ctf-radio-group {
  border: 1px solid rgba(255, 255, 255, 0.14);
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 14px;
}

.ctf-radio-group legend {
  color: rgba(250, 250, 247, 0.6);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  padding: 0 6px;
  text-transform: uppercase;
}

.ctf-radio-group label {
  align-items: center;
  display: flex;
  gap: 10px;
}

.ctf-radio-group input {
  accent-color: var(--ctf-blue);
  min-height: 0;
  width: auto;
}

.ctf-radio-group span {
  color: rgba(250, 250, 247, 0.78);
  letter-spacing: 0;
  text-transform: none;
}

.ctf-form-note {
  border: 1px solid rgba(255, 255, 255, 0.14);
  grid-column: 1 / -1;
  padding: 14px;
}

.ctf-form-note--success {
  border-color: var(--ctf-blue);
  color: var(--ctf-blue);
}

.ctf-youtube-frame,
.ctf-card-player {
  aspect-ratio: 16 / 9;
  background: #000;
  border: 1px solid rgba(255, 255, 255, 0.12);
  min-height: 0;
  overflow: visible;
  position: relative;
  width: 100%;
}

.ctf-card-player {
  margin-top: 0;
}

.ctf-youtube-frame::after,
.ctf-card-player::after {
  animation: ctf-mini-wave 1.4s linear infinite;
  background:
    linear-gradient(90deg, transparent 0 5%, rgba(54, 221, 242, 0.9) 5% 9%, transparent 9% 15%),
    linear-gradient(90deg, transparent 0 12%, rgba(82, 255, 118, 0.75) 12% 16%, transparent 16% 24%),
    linear-gradient(90deg, transparent 0 22%, rgba(250, 250, 247, 0.42) 22% 25%, transparent 25% 34%);
  background-size: 56px 100%, 72px 100%, 96px 100%;
  bottom: -8px;
  content: "";
  height: 3px;
  left: 0;
  opacity: 0;
  position: absolute;
  right: 0;
  transform: scaleX(0.72);
  transform-origin: left center;
  transition: opacity 180ms ease, transform 180ms ease;
  z-index: 2;
}

.ctf-youtube-frame.is-playing,
.ctf-card-player.is-playing {
  border-color: rgba(54, 221, 242, 0.38);
}

.ctf-daily-pick .ctf-youtube-frame::before {
  background: radial-gradient(ellipse at center, rgba(255, 79, 163, 0.22), rgba(54, 221, 242, 0.1) 42%, transparent 72%);
  content: "";
  inset: -18px;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  transition: opacity 220ms ease;
  z-index: 0;
}

.ctf-daily-pick .ctf-youtube-frame::after {
  animation-duration: 2s;
  background:
    linear-gradient(90deg, transparent 0 4%, rgba(255, 79, 163, 0.92) 4% 8%, transparent 8% 16%),
    linear-gradient(90deg, transparent 0 10%, rgba(54, 221, 242, 0.86) 10% 15%, transparent 15% 25%),
    linear-gradient(90deg, transparent 0 20%, rgba(250, 250, 247, 0.5) 20% 23%, transparent 23% 34%);
  background-size: 68px 100%, 88px 100%, 124px 100%;
  bottom: -10px;
  height: 4px;
}

.ctf-daily-pick .ctf-youtube-frame.is-playing {
  border-color: rgba(255, 79, 163, 0.42);
}

.ctf-daily-pick .ctf-youtube-frame.is-playing::before {
  opacity: 1;
}

.ctf-youtube-frame.is-playing::after,
.ctf-card-player.is-playing::after {
  opacity: 1;
  transform: scaleX(1);
}

.ctf-scrapbook-player::after {
  animation-duration: 1.75s;
  background:
    linear-gradient(90deg, transparent 0 5%, rgba(255, 79, 163, 0.92) 5% 10%, transparent 10% 17%),
    linear-gradient(90deg, transparent 0 13%, rgba(129, 86, 255, 0.7) 13% 17%, transparent 17% 25%),
    linear-gradient(90deg, transparent 0 23%, rgba(250, 250, 247, 0.42) 23% 26%, transparent 26% 35%);
  background-size: 64px 100%, 88px 100%, 116px 100%;
}

.ctf-scrapbook-player.is-playing {
  border-color: rgba(255, 79, 163, 0.42);
}

.ctf-youtube-frame iframe,
.ctf-card-player iframe,
.ctf-youtube-frame .ctf-lazy-youtube__button,
.ctf-card-player .ctf-lazy-youtube__button {
  border: 0;
  display: block;
  height: 100%;
  inset: 0;
  position: absolute;
  width: 100%;
  z-index: 1;
}

.ctf-lazy-youtube__button {
  align-items: center;
  background: #020304;
  border: 0;
  border-radius: 0;
  color: var(--ctf-white);
  cursor: pointer;
  display: grid;
  font: inherit;
  justify-items: center;
  min-height: 0;
  overflow: hidden;
  padding: 0;
  place-items: center;
  text-transform: none;
  transform: none;
  width: 100%;
}

.ctf-youtube-frame .ctf-lazy-youtube__button,
.ctf-card-player .ctf-lazy-youtube__button,
.ctf-set-player .ctf-lazy-youtube__button,
.ctf-set-single-player .ctf-lazy-youtube__button,
.ctf-scrapbook-player .ctf-lazy-youtube__button {
  display: grid;
}

.ctf-lazy-youtube__button:hover,
.ctf-lazy-youtube__button:focus-visible {
  background: #020304;
  border: 0;
  color: var(--ctf-white);
  transform: none;
}

.ctf-lazy-youtube__play {
  grid-area: 1 / 1;
}

.ctf-lazy-youtube__button img,
.ctf-lazy-youtube__shade {
  inset: 0;
  pointer-events: none;
  position: absolute;
}

.ctf-lazy-youtube__button img {
  display: block;
  height: 100%;
  max-width: none;
  min-height: 100%;
  min-width: 100%;
  object-fit: cover;
  opacity: 0.78;
  place-self: stretch;
  transition: opacity 180ms ease, transform 240ms ease;
  width: 100%;
  z-index: 0;
}

.ctf-lazy-youtube__shade {
  background:
    radial-gradient(circle at center, rgba(54, 221, 242, 0.14), transparent 34%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.52));
  display: block;
  height: 100%;
  place-self: stretch;
  width: 100%;
  z-index: 1;
}

.ctf-scrapbook-player .ctf-lazy-youtube__shade {
  background:
    radial-gradient(circle at center, rgba(255, 79, 163, 0.16), transparent 36%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.52));
}

.ctf-lazy-youtube__play {
  align-items: center;
  background: rgba(3, 5, 8, 0.86);
  border: 2px solid rgba(54, 221, 242, 0.82);
  border-radius: 999px;
  box-shadow: 0 0 0 8px rgba(3, 5, 8, 0.36), 0 14px 38px rgba(0, 0, 0, 0.42);
  color: var(--ctf-blue);
  display: inline-flex;
  font-size: 11px;
  font-weight: 900;
  gap: 10px;
  height: 48px;
  justify-content: center;
  letter-spacing: 0.08em;
  line-height: 1;
  max-width: calc(100% - 36px);
  min-width: 132px;
  padding: 0 18px;
  place-self: center;
  position: relative;
  text-transform: uppercase;
  transition: background-color 160ms ease, border-color 160ms ease, box-shadow 160ms ease, color 160ms ease, transform 160ms ease;
  width: auto;
  z-index: 2;
}

.ctf-lazy-youtube__play::before {
  border-bottom: 7px solid transparent;
  border-left: 12px solid currentColor;
  border-top: 7px solid transparent;
  content: "";
  display: block;
  height: 0;
  flex: 0 0 auto;
  transform: translateX(1px);
  width: 0;
}

.ctf-lazy-youtube__play::after {
  content: none;
}

.ctf-set-player .ctf-lazy-youtube__play,
.ctf-set-single-player .ctf-lazy-youtube__play {
  border-color: rgba(82, 255, 118, 0.72);
  color: #52ff76;
}

.ctf-scrapbook-player .ctf-lazy-youtube__play {
  border-color: rgba(255, 79, 163, 0.72);
  color: var(--ctf-pink);
}

.ctf-lazy-youtube__button:hover img,
.ctf-lazy-youtube__button:focus-visible img {
  opacity: 0.94;
  transform: scale(1.025);
}

.ctf-lazy-youtube__button:hover .ctf-lazy-youtube__play,
.ctf-lazy-youtube__button:focus-visible .ctf-lazy-youtube__play {
  background: var(--ctf-blue);
  border-color: var(--ctf-blue);
  box-shadow: 0 0 0 10px rgba(54, 221, 242, 0.16), 0 16px 42px rgba(0, 0, 0, 0.42);
  color: #001217;
  transform: scale(1.04);
}

.ctf-set-player .ctf-lazy-youtube__button:hover .ctf-lazy-youtube__play,
.ctf-set-player .ctf-lazy-youtube__button:focus-visible .ctf-lazy-youtube__play,
.ctf-set-single-player .ctf-lazy-youtube__button:hover .ctf-lazy-youtube__play,
.ctf-set-single-player .ctf-lazy-youtube__button:focus-visible .ctf-lazy-youtube__play {
  background: #52ff76;
  border-color: #52ff76;
  box-shadow: 0 0 0 10px rgba(82, 255, 118, 0.16), 0 16px 42px rgba(0, 0, 0, 0.42);
  color: #001217;
}

.ctf-scrapbook-player .ctf-lazy-youtube__button:hover .ctf-lazy-youtube__play,
.ctf-scrapbook-player .ctf-lazy-youtube__button:focus-visible .ctf-lazy-youtube__play {
  background: var(--ctf-pink);
  border-color: var(--ctf-pink);
  box-shadow: 0 0 0 10px rgba(255, 79, 163, 0.16), 0 16px 42px rgba(0, 0, 0, 0.42);
  color: #17030c;
}

.ctf-mini-player {
  background: rgba(3, 5, 8, 0.96);
  border: 1px solid rgba(54, 221, 242, 0.42);
  bottom: 18px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
  color: var(--ctf-white);
  display: grid;
  gap: 12px;
  grid-template-columns: minmax(150px, 210px) minmax(0, 1fr) auto;
  max-width: calc(100vw - 32px);
  opacity: 0;
  padding: 10px;
  pointer-events: none;
  position: fixed;
  right: 18px;
  transform: translateY(18px);
  transition: opacity 180ms ease, transform 180ms ease;
  width: min(560px, calc(100vw - 32px));
  z-index: 80;
}

.ctf-mini-player.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.ctf-mini-player__media {
  aspect-ratio: 16 / 9;
  background: #020304;
  border: 1px solid rgba(255, 255, 255, 0.12);
  min-width: 0;
  overflow: hidden;
  position: relative;
}

.ctf-mini-player__media::after {
  animation: ctf-mini-wave 1.45s linear infinite;
  background:
    linear-gradient(90deg, transparent 0 5%, rgba(54, 221, 242, 0.9) 5% 9%, transparent 9% 15%),
    linear-gradient(90deg, transparent 0 12%, rgba(82, 255, 118, 0.72) 12% 16%, transparent 16% 24%),
    linear-gradient(90deg, transparent 0 22%, rgba(250, 250, 247, 0.42) 22% 25%, transparent 25% 34%);
  background-size: 56px 100%, 72px 100%, 96px 100%;
  bottom: 0;
  content: "";
  height: 3px;
  left: 0;
  position: absolute;
  right: 0;
  z-index: 2;
}

.ctf-mini-player iframe {
  border: 0;
  display: block;
  height: 100%;
  position: relative;
  width: 100%;
  z-index: 1;
}

.ctf-mini-player__body {
  align-self: center;
  min-width: 0;
}

.ctf-mini-player__eyebrow {
  color: var(--ctf-blue);
  display: block;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.1em;
  margin-bottom: 5px;
  text-transform: uppercase;
}

.ctf-mini-player__title {
  display: block;
  font-size: 14px;
  line-height: 1.25;
}

.ctf-mini-player__close {
  align-self: start;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(250, 250, 247, 0.72);
  font-size: 11px;
  min-height: 32px;
  padding: 0 10px;
}

.ctf-mini-player__close:hover,
.ctf-mini-player__close:focus-visible {
  background: var(--ctf-blue);
  border-color: var(--ctf-blue);
  color: #001217;
  transform: none;
}

.ctf-pjax-loading .ctf-main {
  cursor: progress;
}

@keyframes ctf-playing-pulse {
  0% {
    transform: scaleX(0.18);
  }

  45% {
    transform: scaleX(1);
  }

  100% {
    transform: scaleX(0.18) translateX(82%);
  }
}

@keyframes ctf-mini-wave {
  from {
    background-position: 0 0, 0 0, 0 0;
  }

  to {
    background-position: 56px 0, -72px 0, 96px 0;
  }
}

@keyframes ctf-set-wave {
  from {
    background-position: 0 0, 0 0, 0 0;
  }

  to {
    background-position: 62px 0, -86px 0, 118px 0;
  }
}

.ctf-card-player--missing {
  align-items: center;
  background: rgba(255, 255, 255, 0.045);
  color: rgba(250, 250, 247, 0.62);
  display: flex;
  flex-direction: column;
  gap: 12px;
  justify-content: center;
  padding: 18px;
  text-align: center;
}

.ctf-card-player--missing a {
  align-items: center;
  border: 1px solid var(--ctf-blue);
  color: var(--ctf-blue);
  display: inline-flex;
  font-size: 12px;
  font-weight: 900;
  height: 34px;
  justify-content: center;
  padding: 0 10px;
}

.ctf-footer {
  background: var(--ctf-ink);
  color: var(--ctf-white);
  padding: 42px 24px;
}

.ctf-footer__inner {
  align-items: center;
  display: flex;
  gap: 28px;
  justify-content: space-between;
}

.ctf-footer p {
  color: rgba(250, 250, 247, 0.62);
  margin: 8px 0 0;
}

.ctf-footer a {
  color: var(--ctf-blue);
}

.ctf-footer__brand {
  display: grid;
  flex: 0 0 auto;
  gap: 14px;
  justify-items: start;
}

.ctf-footer-signup {
  display: grid;
  gap: 10px;
  max-width: 420px;
  width: min(100%, 420px);
}

.ctf-footer-signup__title {
  color: var(--ctf-white);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  margin: 0;
  text-transform: uppercase;
}

.ctf-footer-signup__form {
  display: grid;
  gap: 8px;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr) auto;
}

.ctf-footer-signup input {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--ctf-radius);
  color: var(--ctf-white);
  font: inherit;
  font-size: 13px;
  height: 40px;
  min-width: 0;
  padding: 0 12px;
}

.ctf-site .ctf-footer .ctf-footer-signup .ctf-footer-signup__form input[type="text"],
.ctf-site .ctf-footer .ctf-footer-signup .ctf-footer-signup__form input[type="email"] {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.16);
  color: var(--ctf-white);
  height: 42px;
  min-height: 42px;
}

.ctf-footer-signup input::placeholder {
  color: rgba(250, 250, 247, 0.48);
}

.ctf-footer-signup input:focus {
  border-color: var(--ctf-blue);
  box-shadow: 0 0 0 3px rgba(54, 221, 242, 0.16);
  outline: 0;
}

.ctf-footer-signup button {
  align-items: center;
  background: transparent;
  border: 1px solid var(--ctf-blue);
  border-radius: var(--ctf-radius);
  color: var(--ctf-blue);
  cursor: pointer;
  display: inline-flex;
  font-size: 12px;
  font-weight: 900;
  height: 40px;
  justify-content: center;
  letter-spacing: 0.05em;
  padding: 0 14px;
  text-transform: uppercase;
  transition: background-color 160ms ease, color 160ms ease, border-color 160ms ease;
  white-space: nowrap;
}

.ctf-footer-signup button:hover,
.ctf-footer-signup button:focus-visible {
  background: var(--ctf-blue);
  color: var(--ctf-ink);
}

.ctf-footer-signup button:disabled {
  cursor: wait;
  opacity: 0.72;
}

.ctf-footer-signup__trap {
  display: none;
}

.ctf-footer-signup__status {
  color: rgba(250, 250, 247, 0.72);
  font-size: 13px;
  line-height: 1.45;
  margin: 0;
  min-height: 19px;
}

.ctf-footer-signup.is-complete .ctf-footer-signup__status {
  color: var(--ctf-blue);
  font-weight: 800;
}

.ctf-footer__meta {
  display: grid;
  flex: 0 1 430px;
  gap: 12px;
  justify-items: end;
}

.ctf-footer-social {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.ctf-footer-social a {
  align-items: center;
  border: 1px solid rgba(54, 221, 242, 0.42);
  border-radius: var(--ctf-radius);
  color: var(--ctf-blue);
  display: inline-flex;
  font-size: 12px;
  font-weight: 900;
  gap: 8px;
  min-height: 38px;
  padding: 0 11px;
  text-transform: uppercase;
  transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease;
}

.ctf-footer-social a:hover,
.ctf-footer-social a:focus-visible {
  background: rgba(54, 221, 242, 0.12);
  border-color: var(--ctf-blue);
  color: var(--ctf-white);
}

.ctf-footer-social svg {
  fill: currentColor;
  height: 16px;
  width: 16px;
}

.ctf-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: flex-end;
}

.ctf-footer-links a {
  color: rgba(250, 250, 247, 0.68);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 160ms ease;
}

.ctf-footer-links a:hover,
.ctf-footer-links a:focus-visible {
  color: var(--ctf-blue);
}

.ctf-footer-payments {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-start;
}

.ctf-footer-payments span {
  align-items: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--ctf-radius);
  color: rgba(250, 250, 247, 0.76);
  display: inline-flex;
  font-size: 11px;
  font-weight: 900;
  height: 28px;
  letter-spacing: 0.03em;
  line-height: 1;
  padding: 0 9px;
  text-transform: uppercase;
}

.ctf-footer-payments .ctf-payment-badge--visa {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.14);
  color: var(--ctf-white);
  font-style: italic;
  letter-spacing: 0.08em;
}

.ctf-footer-payments .ctf-payment-badge--mc {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.14);
  color: var(--ctf-white);
  min-width: 44px;
}

body.ctf-v5-body .ctf-header {
  background: rgba(3, 5, 8, 0.98);
  border-bottom: 1px solid rgba(255, 92, 32, 0.28);
  color: var(--ctf-white);
  position: sticky;
}

body.ctf-v5-body .ctf-nav a,
body.ctf-v5-body .ctf-wordmark {
  color: rgba(250, 250, 247, 0.86);
}

body.ctf-v5-body .ctf-nav .ctf-nav__link:hover,
body.ctf-v5-body .ctf-nav .ctf-nav__link:focus-visible,
body.ctf-v5-body .ctf-nav .ctf-nav__link.is-active,
body.ctf-v5-body .ctf-nav .ctf-nav__link[aria-current="page"] {
  color: #ffb327;
}

body.ctf-v5-body .ctf-cart-link {
  border-color: rgba(255, 179, 39, 0.58);
  color: #ffb327 !important;
}

body.ctf-v5-body .ctf-cart-link:hover,
body.ctf-v5-body .ctf-cart-link:focus-visible,
body.ctf-v5-body .ctf-cart-link.is-active {
  background: #ffb327;
  border-color: #ffb327;
  color: var(--ctf-ink) !important;
}

body.ctf-v5-body .ctf-currency-switcher .yay-currency-custom-select__trigger {
  border-color: rgba(255, 179, 39, 0.58);
  color: #ffb327;
}

body.ctf-v5-body .ctf-currency-switcher--section .yay-currency-custom-select__trigger {
  background: rgba(9, 9, 10, 0.78);
}

body.ctf-v5-body .ctf-currency-switcher .yay-currency-custom-select__trigger:hover,
body.ctf-v5-body .ctf-currency-switcher .yay-currency-custom-select__trigger:focus {
  background: rgba(255, 179, 39, 0.12);
  border-color: #ffb327;
}

body.ctf-v5-body .ctf-header::after {
  background: linear-gradient(180deg, rgba(255, 90, 28, 0.16), rgba(255, 185, 36, 0));
  content: "";
  height: 24px;
  left: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 100%;
}

body.ctf-v5-body .ctf-button,
body.ctf-v5-product-body .ctf-button,
body.ctf-v5-product-body.woocommerce a.button,
body.ctf-v5-product-body.woocommerce button.button,
body.ctf-v5-product-body.woocommerce input.button,
body.ctf-v5-product-body.woocommerce #respond input#submit,
body.ctf-v5-product-body.woocommerce div.product form.cart .button.single_add_to_cart_button,
body.ctf-v5-product-body.woocommerce div.product form.cart .button.single_add_to_cart_button.alt {
  background: #e82616;
  border-color: #e82616;
  color: var(--ctf-white);
}

body.ctf-v5-body .ctf-button:hover,
body.ctf-v5-body .ctf-button:focus-visible,
body.ctf-v5-product-body .ctf-button:hover,
body.ctf-v5-product-body .ctf-button:focus-visible,
body.ctf-v5-product-body.woocommerce a.button:hover,
body.ctf-v5-product-body.woocommerce a.button:focus-visible,
body.ctf-v5-product-body.woocommerce button.button:hover,
body.ctf-v5-product-body.woocommerce button.button:focus-visible,
body.ctf-v5-product-body.woocommerce input.button:hover,
body.ctf-v5-product-body.woocommerce input.button:focus-visible,
body.ctf-v5-product-body.woocommerce #respond input#submit:hover,
body.ctf-v5-product-body.woocommerce #respond input#submit:focus-visible,
body.ctf-v5-product-body.woocommerce div.product form.cart .button.single_add_to_cart_button:hover,
body.ctf-v5-product-body.woocommerce div.product form.cart .button.single_add_to_cart_button:focus-visible,
body.ctf-v5-product-body.woocommerce div.product form.cart .button.single_add_to_cart_button.alt:hover,
body.ctf-v5-product-body.woocommerce div.product form.cart .button.single_add_to_cart_button.alt:focus-visible {
  background: #ff8a00;
  border-color: #ff8a00;
  color: var(--ctf-ink);
}

body.ctf-v5-body .ctf-button--ghost,
body.ctf-v5-product-body .ctf-button--ghost {
  background: transparent;
  border-color: #e82616;
  color: #ff4b27;
}

body.ctf-v5-body .ctf-button--ghost:hover,
body.ctf-v5-body .ctf-button--ghost:focus-visible,
body.ctf-v5-product-body .ctf-button--ghost:hover,
body.ctf-v5-product-body .ctf-button--ghost:focus-visible {
  background: #ff8a00;
  border-color: #ff8a00;
  color: var(--ctf-ink);
}

.ctf-nav__link--preview {
  color: #f12b1c !important;
}

.ctf-nav__link--preview:hover,
.ctf-nav__link--preview:focus-visible,
body.ctf-v5-body .ctf-nav .ctf-nav__link--preview:hover,
body.ctf-v5-body .ctf-nav .ctf-nav__link--preview:focus-visible,
body.ctf-v5-body .ctf-nav .ctf-nav__link--preview.is-active,
body.ctf-v5-body .ctf-nav .ctf-nav__link--preview[aria-current="page"] {
  color: #ff8a00 !important;
}

.ctf-v5-home-preview {
  align-items: center;
  background:
    linear-gradient(90deg, rgba(6, 7, 9, 0.58), rgba(6, 7, 9, 0.94)),
    #08090b;
  color: var(--ctf-white);
  display: grid;
  gap: 44px;
  grid-template-columns: minmax(260px, 0.82fr) minmax(0, 1fr);
  max-width: none;
  overflow: hidden;
  padding: 74px max(24px, calc((100vw - var(--ctf-max)) / 2));
  position: relative;
}

.ctf-v5-home-preview::before {
  background: linear-gradient(90deg, rgba(255, 32, 18, 0.24), rgba(255, 180, 24, 0.12), transparent 62%);
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
}

.ctf-v5-home-preview__media,
.ctf-v5-home-preview__content {
  position: relative;
  z-index: 1;
}

.ctf-v5-home-preview__media img {
  display: block;
  filter: drop-shadow(0 34px 68px rgba(0, 0, 0, 0.42));
  width: min(460px, 100%);
}

.ctf-v5-home-preview h2 {
  font-size: clamp(36px, 5vw, 78px);
  line-height: 0.95;
  margin: 10px 0 18px;
  text-transform: uppercase;
}

.ctf-v5-home-preview p {
  color: rgba(250, 250, 247, 0.82);
  font-size: 18px;
  max-width: 660px;
}

.ctf-v5-trackline {
  display: grid;
  gap: 8px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 24px 0 28px;
  max-width: 760px;
}

.ctf-v5-trackline span {
  border-top: 1px solid rgba(255, 179, 39, 0.34);
  color: rgba(250, 250, 247, 0.86);
  font-size: 13px;
  letter-spacing: 0.08em;
  padding-top: 10px;
  text-transform: uppercase;
}

.ctf-v5-home-release {
  align-items: center;
  background:
    linear-gradient(90deg, rgba(7, 8, 10, 0.42), rgba(7, 8, 10, 0.84) 48%, rgba(7, 8, 10, 0.96)),
    var(--ctf-v5-home-release-banner) left center / cover no-repeat,
    #07080a;
  border-bottom: 1px solid rgba(255, 179, 39, 0.18);
  border-top: 1px solid rgba(255, 179, 39, 0.18);
  color: var(--ctf-white);
  display: flex;
  justify-content: flex-end;
  max-width: none;
  min-height: 470px;
  overflow: hidden;
  padding: 86px max(24px, calc((100vw - var(--ctf-max)) / 2));
}

.ctf-v5-home-release__copy h2 {
  font-size: clamp(34px, 4.5vw, 68px);
  line-height: 0.98;
  margin: 12px 0 18px;
  max-width: 620px;
  text-transform: uppercase;
}

.ctf-v5-home-release__copy p {
  color: rgba(250, 250, 247, 0.82);
  font-size: 18px;
  line-height: 1.65;
  margin: 0;
  max-width: 620px;
}

.ctf-v5-page {
  background: #07080a;
  color: var(--ctf-white);
}

.ctf-v5-hero {
  background:
    linear-gradient(90deg, rgba(5, 6, 8, 0.96) 0%, rgba(5, 6, 8, 0.74) 48%, rgba(5, 6, 8, 0.96) 100%),
    var(--ctf-v5-banner) center / cover no-repeat,
    #08090b;
  min-height: 720px;
  padding: 86px 24px 84px;
}

.ctf-v5-hero__inner {
  align-items: center;
  display: grid;
  gap: 52px;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.72fr);
  margin: 0 auto;
  max-width: var(--ctf-max);
  min-height: 560px;
}

.ctf-v5-hero__copy h1 {
  font-size: clamp(52px, 8vw, 126px);
  line-height: 0.88;
  margin: 14px 0 24px;
  max-width: 820px;
  text-transform: uppercase;
}

.ctf-v5-hero__copy p {
  color: rgba(250, 250, 247, 0.82);
  font-size: clamp(18px, 2.1vw, 24px);
  line-height: 1.48;
  margin: 0 0 30px;
  max-width: 720px;
}

.ctf-v5-hero__record {
  margin: 0;
}

.ctf-v5-hero__record img {
  display: block;
  filter: drop-shadow(0 38px 70px rgba(0, 0, 0, 0.5)) drop-shadow(0 0 42px rgba(255, 94, 16, 0.16));
  margin-left: auto;
  max-width: 620px;
  width: 100%;
}

.ctf-v5-countdown {
  background: rgba(0, 0, 0, 0.34);
  border: 1px solid rgba(255, 179, 39, 0.26);
  margin-top: 28px;
  max-width: 650px;
  padding: 20px;
}

.ctf-v5-countdown > span {
  color: var(--ctf-blue);
  display: block;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.ctf-v5-countdown__title {
  color: var(--ctf-white);
  font-size: 18px;
  font-weight: 800;
  margin: 0 0 16px;
}

.ctf-v5-countdown__grid {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.ctf-v5-countdown__grid div {
  border-top: 1px solid rgba(255, 179, 39, 0.32);
  padding-top: 12px;
}

.ctf-v5-countdown__grid strong {
  color: var(--ctf-white);
  display: block;
  font-size: clamp(26px, 3vw, 42px);
  line-height: 1;
}

.ctf-v5-countdown__grid small {
  color: rgba(250, 250, 247, 0.64);
  display: block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  margin-top: 7px;
  text-transform: uppercase;
}

.ctf-v5-countdown__note {
  color: rgba(250, 250, 247, 0.68);
  font-size: 14px;
  line-height: 1.55;
  margin: 16px 0 0;
}

.ctf-button--disabled {
  cursor: not-allowed;
  opacity: 0.58;
}

.ctf-v5-section {
  display: grid;
  gap: 40px;
  margin: 0 auto;
  max-width: var(--ctf-max);
  padding: 82px 24px;
  scroll-margin-top: 118px;
}

.ctf-v5-intro {
  align-items: end;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1fr);
}

.ctf-v5-section h2 {
  font-size: clamp(30px, 4vw, 58px);
  line-height: 1;
  margin: 10px 0 0;
}

.ctf-v5-section p {
  color: rgba(250, 250, 247, 0.72);
  font-size: 18px;
  margin: 0;
}

.ctf-v5-copy {
  display: grid;
  gap: 18px;
}

.ctf-v5-copy p + p {
  margin-top: 0;
}

.ctf-v5-deck {
  align-items: center;
  background:
    linear-gradient(135deg, rgba(18, 213, 238, 0.08), rgba(255, 84, 22, 0.14)),
    #08090b;
  border-bottom: 1px solid rgba(18, 213, 238, 0.18);
  border-top: 1px solid rgba(255, 179, 39, 0.16);
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.72fr);
  max-width: none;
  padding-left: max(24px, calc((100vw - var(--ctf-max)) / 2));
  padding-right: max(24px, calc((100vw - var(--ctf-max)) / 2));
  position: relative;
}

.ctf-v5-deck::before {
  background: linear-gradient(90deg, rgba(255, 151, 24, 0.44), rgba(18, 213, 238, 0.18), transparent 70%);
  content: "";
  height: 1px;
  inset: 0 0 auto;
  pointer-events: none;
  position: absolute;
}

.ctf-v5-deck__image,
.ctf-v5-deck__copy {
  position: relative;
  z-index: 1;
}

.ctf-v5-deck__image {
  background: linear-gradient(135deg, rgba(250, 250, 247, 0.08), rgba(18, 213, 238, 0.07));
  border: 1px solid rgba(250, 250, 247, 0.13);
  box-shadow: 0 34px 86px rgba(0, 0, 0, 0.4);
  margin: 0;
  padding: 12px;
}

.ctf-v5-deck__image img {
  display: block;
  width: 100%;
}

.ctf-v5-deck__copy p {
  max-width: 650px;
}

.ctf-v5-product {
  align-items: center;
  background: linear-gradient(135deg, rgba(255, 80, 26, 0.12), rgba(255, 183, 28, 0.04));
  border-bottom: 1px solid rgba(255, 179, 39, 0.2);
  border-top: 1px solid rgba(255, 179, 39, 0.18);
  grid-template-columns: minmax(300px, 0.78fr) minmax(0, 1fr);
  max-width: none;
  padding-left: max(24px, calc((100vw - var(--ctf-max)) / 2));
  padding-right: max(24px, calc((100vw - var(--ctf-max)) / 2));
}

.ctf-v5-product__art img {
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: block;
  width: min(520px, 100%);
}

.ctf-v5-product__details p {
  max-width: 700px;
}

.ctf-v5-specs {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 28px 0 0;
}

.ctf-v5-specs div {
  border-top: 1px solid rgba(255, 179, 39, 0.28);
  padding-top: 14px;
}

.ctf-v5-specs dt {
  color: #ffb327;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.ctf-v5-specs dd {
  color: rgba(250, 250, 247, 0.86);
  margin: 4px 0 0;
}

.ctf-v5-shipping {
  align-items: start;
  background:
    linear-gradient(135deg, rgba(255, 56, 21, 0.1), rgba(255, 179, 39, 0.07)),
    #08090b;
  border-bottom: 1px solid rgba(255, 179, 39, 0.18);
  border-top: 1px solid rgba(255, 179, 39, 0.18);
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1fr);
  max-width: none;
  padding-left: max(24px, calc((100vw - var(--ctf-max)) / 2));
  padding-right: max(24px, calc((100vw - var(--ctf-max)) / 2));
}

.ctf-v5-shipping__copy p {
  line-height: 1.65;
  max-width: 720px;
}

.ctf-v5-shipping__rates {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.ctf-v5-shipping__rates div {
  background: rgba(250, 250, 247, 0.045);
  border: 1px solid rgba(255, 179, 39, 0.22);
  min-height: 104px;
  padding: 18px;
}

.ctf-v5-shipping__rates div > span {
  color: rgba(250, 250, 247, 0.66);
  display: block;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  line-height: 1.35;
  min-height: 32px;
  text-transform: uppercase;
}

.ctf-v5-shipping__rates strong {
  color: var(--ctf-white);
  display: block;
  font-size: clamp(26px, 3vw, 42px);
  line-height: 1;
  margin-top: 12px;
}

.ctf-v5-shipping__note {
  border-top: 1px solid rgba(255, 179, 39, 0.16);
  color: rgba(250, 250, 247, 0.62);
  font-size: 14px !important;
  grid-column: 1 / -1;
  line-height: 1.55;
  margin: 0;
  padding-top: 16px;
}

.ctf-v5-shipping--product {
  background: #f7f8f8;
  border: 1px solid #d9dddd;
  margin-top: 28px;
  padding: 24px;
}

.ctf-v5-shipping--product h2 {
  color: var(--ctf-ink);
  font-size: clamp(22px, 2.5vw, 32px);
  line-height: 1;
  margin: 8px 0 12px;
}

.ctf-v5-shipping--product p {
  color: #4d5864;
  font-size: 15px;
  line-height: 1.55;
}

.ctf-v5-shipping--product .ctf-v5-shipping__rates {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 18px;
}

.ctf-v5-shipping--product .ctf-v5-shipping__rates div {
  background: #fff;
  border-color: #dfe3e6;
  min-height: 92px;
}

.ctf-v5-shipping--product .ctf-v5-shipping__rates div > span {
  color: #6c7783;
}

.ctf-v5-shipping--product .ctf-v5-shipping__rates strong {
  color: var(--ctf-ink);
  font-size: 28px;
}

.ctf-v5-shipping--product .ctf-v5-shipping__note {
  color: #596573;
  grid-column: auto;
  margin-top: 18px;
}

.ctf-v5-preorder {
  background:
    linear-gradient(135deg, rgba(255, 56, 21, 0.12), rgba(255, 179, 39, 0.09)),
    #09090a;
  border-bottom: 1px solid rgba(255, 179, 39, 0.2);
  border-top: 1px solid rgba(255, 179, 39, 0.2);
  max-width: none;
  padding-left: max(24px, calc((100vw - var(--ctf-max)) / 2));
  padding-right: max(24px, calc((100vw - var(--ctf-max)) / 2));
  scroll-margin-top: 132px;
}

.ctf-v5-preorder__cards {
  display: grid;
  gap: 18px;
  grid-column: 1 / -1;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.ctf-v5-preorder-card {
  background: rgba(250, 250, 247, 0.045);
  border: 1px solid rgba(255, 179, 39, 0.22);
  display: grid;
  gap: 0;
  grid-template-columns: minmax(190px, 0.62fr) minmax(0, 1fr);
  overflow: hidden;
}

.ctf-v5-preorder-card__image {
  align-items: center;
  background: radial-gradient(circle at 50% 50%, rgba(255, 92, 24, 0.22), rgba(0, 0, 0, 0.18) 66%);
  display: flex;
  min-height: 100%;
  padding: 18px;
}

.ctf-v5-preorder-card__image img {
  display: block;
  filter: drop-shadow(0 18px 34px rgba(0, 0, 0, 0.38));
  max-height: 300px;
  object-fit: contain;
  width: 100%;
}

.ctf-v5-preorder-card__body {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 28px;
}

.ctf-v5-preorder-card__body > span {
  color: #ffb327;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.ctf-v5-preorder-card h3 {
  color: var(--ctf-white);
  font-size: clamp(22px, 2.5vw, 32px);
  line-height: 1;
  margin: 0;
}

.ctf-v5-preorder-card p {
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
}

.ctf-v5-preorder-card dl {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: auto 0 0;
}

.ctf-v5-preorder-card dl div {
  border-top: 1px solid rgba(255, 179, 39, 0.24);
  padding-top: 12px;
}

.ctf-v5-preorder-card dt {
  color: rgba(250, 250, 247, 0.58);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.ctf-v5-preorder-card dd {
  color: var(--ctf-white);
  font-size: 19px;
  font-weight: 900;
  margin: 5px 0 0;
}

.ctf-v5-preorder-card .ctf-button {
  align-self: flex-start;
}

.ctf-v5-preorder__add-ons {
  background: rgba(250, 250, 247, 0.04);
  border: 1px solid rgba(54, 221, 242, 0.22);
  grid-column: 1 / -1;
  padding: 24px;
}

.ctf-v5-preorder__add-ons h3 {
  color: var(--ctf-white);
  font-size: clamp(22px, 2.6vw, 34px);
  line-height: 1;
  margin: 10px 0 12px;
  max-width: 820px;
}

.ctf-v5-preorder__add-ons p {
  font-size: 16px;
  line-height: 1.65;
  max-width: 880px;
}

.ctf-v5-slipmat-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 18px;
}

.ctf-v5-slipmat-empty {
  color: rgba(250, 250, 247, 0.72);
  margin: 16px 0 0;
}

.ctf-v5-slipmat-card {
  background: rgba(250, 250, 247, 0.045);
  border: 1px solid rgba(255, 179, 39, 0.22);
  display: grid;
  gap: 0;
  grid-template-columns: 148px minmax(0, 1fr);
  overflow: hidden;
}

.ctf-v5-slipmat-card__image {
  align-items: center;
  background: radial-gradient(circle at 50% 45%, rgba(255, 92, 24, 0.2), rgba(0, 0, 0, 0.18) 68%);
  display: flex;
  justify-content: center;
  min-height: 148px;
  padding: 14px;
}

.ctf-v5-slipmat-card__image img {
  display: block;
  height: auto;
  max-height: 128px;
  object-fit: contain;
  width: 100%;
}

.ctf-v5-slipmat-card__body {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 18px;
}

.ctf-v5-slipmat-card h4 {
  color: var(--ctf-white);
  font-size: 18px;
  line-height: 1.12;
  margin: 0;
}

.ctf-v5-slipmat-card p {
  color: rgba(250, 250, 247, 0.72);
  font-size: 14px;
  line-height: 1.45;
  margin: 0;
}

.ctf-v5-slipmat-card__meta {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  margin-top: auto;
}

.ctf-v5-slipmat-card__meta > span {
  color: var(--ctf-white);
  font-size: 18px;
  font-weight: 900;
}

.ctf-v5-slipmat-card__meta .ctf-button {
  min-height: 40px;
  padding: 10px 16px;
}

.ctf-v5-product-slipmats,
.ctf-v5-cart-slipmats {
  background: #f7f8f8;
  border: 1px solid #d9dddd;
  margin-top: 28px;
  padding: 24px;
}

.ctf-v5-product-slipmats h3,
.ctf-v5-cart-slipmats h3 {
  color: var(--ctf-ink);
  font-size: clamp(22px, 2.5vw, 32px);
  line-height: 1;
  margin: 8px 0 12px;
}

.ctf-v5-product-slipmats > p,
.ctf-v5-cart-slipmats > p {
  color: #4d5864;
  font-size: 15px;
  line-height: 1.55;
  margin: 0;
}

.ctf-v5-product-slipmats .ctf-v5-slipmat-card,
.ctf-v5-cart-slipmats .ctf-v5-slipmat-card {
  background: #fff;
  border-color: #dfe3e6;
}

.ctf-v5-product-slipmats .ctf-v5-slipmat-card__image,
.ctf-v5-cart-slipmats .ctf-v5-slipmat-card__image {
  background: #eef1f2;
}

.ctf-v5-product-slipmats .ctf-v5-slipmat-card h4,
.ctf-v5-cart-slipmats .ctf-v5-slipmat-card h4,
.ctf-v5-product-slipmats .ctf-v5-slipmat-card__meta > span,
.ctf-v5-cart-slipmats .ctf-v5-slipmat-card__meta > span {
  color: var(--ctf-ink);
}

.ctf-v5-product-slipmats .ctf-v5-slipmat-card p,
.ctf-v5-cart-slipmats .ctf-v5-slipmat-card p {
  color: #596573;
}

.ctf-v5-product-slipmats .ctf-v5-slipmat-grid {
  grid-template-columns: 1fr;
}

.ctf-v5-product-slipmats .ctf-v5-slipmat-card {
  grid-template-columns: 132px minmax(0, 1fr);
}

.ctf-v5-tracklist .ctf-section-heading p {
  color: rgba(250, 250, 247, 0.72);
}

.ctf-v5-tracklist__grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.ctf-v5-side {
  border: 1px solid rgba(255, 179, 39, 0.24);
  padding: 24px;
}

.ctf-v5-side span {
  color: var(--ctf-blue);
  display: block;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.ctf-v5-side ol {
  display: grid;
  gap: 14px;
  list-style-position: inside;
  margin: 0;
  padding: 0;
}

.ctf-v5-side li {
  color: rgba(250, 250, 247, 0.88);
  font-size: 18px;
}

.ctf-v5-track-notes {
  display: grid;
  gap: 14px;
  grid-column: 1 / -1;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.ctf-v5-track-notes article {
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 179, 39, 0.18);
  padding: 22px;
}

.ctf-v5-track-notes h3 {
  color: var(--ctf-white);
  font-size: 18px;
  line-height: 1.25;
  margin: 0 0 12px;
}

.ctf-v5-track-notes p {
  font-size: 16px;
  line-height: 1.6;
}

.ctf-v5-ambassadors {
  align-items: start;
  border-bottom: 1px solid rgba(255, 179, 39, 0.16);
  border-top: 1px solid rgba(255, 179, 39, 0.16);
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1fr);
}

.ctf-v5-faq {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.ctf-v5-faq__items {
  display: grid;
  gap: 12px;
  grid-column: 1 / -1;
}

.ctf-v5-faq details {
  border: 1px solid rgba(255, 179, 39, 0.2);
  padding: 0;
}

.ctf-v5-faq summary {
  color: var(--ctf-white);
  cursor: pointer;
  font-size: 17px;
  font-weight: 850;
  list-style: none;
  padding: 18px 20px;
}

.ctf-v5-faq summary::-webkit-details-marker {
  display: none;
}

.ctf-v5-faq summary::after {
  color: #ffb327;
  content: "+";
  float: right;
  font-weight: 900;
}

.ctf-v5-faq details[open] summary::after {
  content: "-";
}

.ctf-v5-faq details p {
  border-top: 1px solid rgba(255, 179, 39, 0.16);
  font-size: 16px;
  line-height: 1.65;
  padding: 0 20px 20px;
}

.ctf-v5-launch {
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1fr);
  padding-bottom: 104px;
}

.ctf-v5-launch__steps {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.ctf-v5-launch__steps span {
  border: 1px solid rgba(54, 221, 242, 0.28);
  color: rgba(250, 250, 247, 0.86);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.11em;
  padding: 14px;
  text-transform: uppercase;
}

@media (max-width: 920px) {
  .ctf-header__inner {
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 14px;
    min-height: 76px;
    padding: 14px 18px;
  }

  .ctf-menu-toggle {
    display: inline-flex;
  }

  .ctf-nav {
    align-items: stretch;
    border-top: 1px solid rgba(54, 221, 242, 0.18);
    display: grid;
    flex: 1 0 100%;
    gap: 0;
    justify-content: stretch;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    padding-top: 0;
    pointer-events: none;
    transition: max-height 220ms ease, opacity 160ms ease, padding-top 220ms ease, visibility 0s linear 220ms;
    visibility: hidden;
    width: 100%;
  }

  .ctf-nav.is-open {
    max-height: 720px;
    opacity: 1;
    padding-top: 10px;
    pointer-events: auto;
    transition-delay: 0s;
    visibility: visible;
  }

  .ctf-nav a {
    align-items: center;
    display: flex;
    min-height: 44px;
    padding: 12px 0;
  }

  .ctf-nav__item--has-menu {
    align-items: stretch;
    display: grid;
    gap: 0;
  }

  .ctf-nav__item--has-menu > .ctf-nav__link::before {
    display: none;
  }

  .ctf-nav__dropdown {
    background: transparent;
    border: 0;
    box-shadow: none;
    display: grid;
    gap: 0;
    left: auto;
    min-width: 0;
    opacity: 1;
    padding: 0 0 8px 18px;
    pointer-events: auto;
    position: static;
    transform: none;
  }

  .ctf-nav__dropdown::before {
    display: none;
  }

  .ctf-nav__dropdown a {
    color: var(--ctf-blue) !important;
    min-height: 44px;
    padding: 10px 0;
  }

  body.ctf-v5-body .ctf-nav__dropdown {
    background: transparent;
    border: 0;
    box-shadow: none;
  }

  body.ctf-v5-body .ctf-nav__dropdown a {
    color: #ffb327 !important;
  }

  .ctf-currency-switcher,
  .ctf-cart-link {
    justify-self: start;
    margin-top: 8px;
  }

  .ctf-cart-link {
    min-width: 132px;
  }

  .ctf-feature-strip,
  .woocommerce ul.products {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .woocommerce .related.products ul.products {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ctf-story-grid,
  .ctf-home-classic,
  .woocommerce div.product,
  .ctf-classics__hero,
  .ctf-sets-hero,
  .ctf-submit-hero,
  .ctf-merch-ideas-hero,
  .ctf-contact-hero,
  .ctf-feedback-hero,
  .ctf-scrapbook-hero,
  .ctf-set-single-hero,
  .ctf-set-single-layout,
  .ctf-sets-intro,
  .ctf-daily-pick,
  .ctf-suggest,
  .ctf-v5-home-preview,
  .ctf-v5-home-release,
  .ctf-v5-hero__inner,
  .ctf-v5-intro,
  .ctf-v5-deck,
  .ctf-v5-product,
  .ctf-v5-shipping,
  .ctf-v5-ambassadors,
  .ctf-v5-launch {
    grid-template-columns: 1fr;
  }

  .ctf-v5-preorder__cards,
  .ctf-v5-preorder-card,
  .ctf-v5-shipping__rates,
  .ctf-v5-slipmat-grid {
    grid-template-columns: 1fr;
  }

  .ctf-suggest > .ctf-form-note,
  .ctf-suggest > .ctf-suggest-form {
    grid-column: 1;
  }

  .ctf-track-grid,
  .ctf-submit-grid,
  .ctf-set-grid,
  .ctf-scrapbook-prompts,
  .ctf-scrapbook-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ctf-sets-intro,
  .ctf-scrapbook-intro {
    align-items: flex-start;
    flex-direction: column;
  }

  .ctf-home-hero::before,
  .ctf-home-hero::after {
    opacity: 0.42;
  }

  .ctf-v5-hero {
    min-height: 0;
  }

  .ctf-v5-hero__inner {
    min-height: 0;
  }

  .ctf-v5-hero__record img,
  .ctf-v5-home-preview__media img,
  .ctf-v5-product__art img {
    width: min(520px, 100%);
  }

  body.ctf-v5-product-body .ctf-woo {
    max-width: var(--ctf-max);
  }

  body.ctf-v5-product-body.woocommerce div.product {
    gap: 34px;
    grid-template-columns: 1fr;
  }

  body.ctf-v5-product-body.woocommerce div.product div.summary {
    max-width: none;
  }
}

@media (max-width: 620px) {
  .ctf-logo {
    max-width: 132px;
    width: 132px;
  }

  .ctf-home-section,
  .ctf-woo {
    padding-left: 18px;
    padding-right: 18px;
  }

  .ctf-home-hero {
    background-position: 58% center;
    padding-bottom: 70px;
    padding-top: 56px;
  }

  .ctf-home-hero__inner {
    min-height: 500px;
  }

  .ctf-home-hero .ctf-home-hero__culture {
    font-size: 16px;
    line-height: 1.58;
  }

  .ctf-button,
  .button,
  button,
  input[type="submit"],
  .wp-element-button,
  .woocommerce a.button,
  .woocommerce button.button,
  .woocommerce input.button,
  .woocommerce #respond input#submit {
    height: auto;
    min-height: 48px;
    padding-bottom: 16px;
    padding-top: 16px;
  }

  input:not([type="radio"]):not([type="checkbox"]):not([type="button"]):not([type="submit"]):not([type="reset"]),
  select,
  textarea,
  .woocommerce .woocommerce-ordering select,
  .woocommerce form .form-row input.input-text,
  .woocommerce form .form-row textarea,
  .woocommerce form .form-row select {
    min-height: 48px;
  }

  .ctf-feature-strip,
  .woocommerce ul.products,
  .ctf-track-grid,
  .ctf-v5-artwork-fields__list,
  .ctf-v5-cart-artwork-fields__grid,
  .ctf-v5-trackline,
  .ctf-v5-countdown__grid,
  .ctf-v5-preorder-card dl,
  .ctf-v5-slipmat-card,
  .ctf-v5-tracklist__grid,
  .ctf-v5-track-notes,
  .ctf-v5-specs,
  .ctf-v5-launch__steps {
    grid-template-columns: 1fr;
  }

  .woocommerce .related.products ul.products {
    grid-template-columns: 1fr;
  }

  .woocommerce ul.products {
    gap: 24px;
    margin-top: 24px;
  }

  .woocommerce ul.products li.product,
  .woocommerce-page ul.products li.product {
    padding-bottom: 20px;
  }

  .woocommerce ul.products li.product .woocommerce-loop-product__title {
    font-size: 20px;
    line-height: 1.18;
    min-height: 0;
    padding: 18px 18px 0;
  }

  .woocommerce ul.products li.product .price {
    font-size: 18px;
    padding: 8px 18px 0;
  }

  .woocommerce ul.products li.product .button {
    font-size: 13px;
    height: 52px;
    margin: 20px 18px 0;
    min-height: 52px;
    width: calc(100% - 36px);
  }

  .woocommerce nav.woocommerce-pagination ul li a,
  .woocommerce nav.woocommerce-pagination ul li span,
  .woocommerce-pagination .page-numbers {
    align-items: center;
    display: inline-flex;
    justify-content: center;
    min-height: 44px;
    min-width: 44px;
  }

  .ctf-section-heading,
  .ctf-merch-ideas-box,
  .ctf-footer__inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .ctf-footer__meta {
    justify-items: start;
  }

  .ctf-footer-signup {
    max-width: none;
    width: 100%;
  }

  .ctf-footer-signup__form {
    grid-template-columns: 1fr;
  }

  .ctf-footer-signup button {
    min-height: 48px;
    width: 100%;
  }

  .ctf-footer-social,
  .ctf-footer-links,
  .ctf-footer-payments {
    justify-content: flex-start;
  }

  .ctf-footer-signup input,
  .ctf-site .ctf-footer .ctf-footer-signup .ctf-footer-signup__form input[type="text"],
  .ctf-site .ctf-footer .ctf-footer-signup .ctf-footer-signup__form input[type="email"] {
    height: 48px;
    min-height: 48px;
  }

  .ctf-footer-social a,
  .ctf-footer-links a {
    align-items: center;
    display: inline-flex;
    min-height: 44px;
  }

  .ctf-footer-links a {
    justify-content: center;
    min-width: 44px;
  }

  .ctf-platforms a {
    height: auto;
    min-height: 44px;
    padding: 8px 12px;
  }

  .ctf-v5-slipmat-card__meta .ctf-button {
    min-height: 48px;
    padding: 14px 16px;
  }

  .ctf-card-player--missing a,
  .ctf-pagination button,
  .ctf-set-card h3 a,
  .ctf-set-card__head a,
  .ctf-set-card__meta a,
  .ctf-set-tracklisting summary,
  .ctf-set-pagination a {
    align-items: center;
    display: inline-flex;
    min-height: 44px;
  }

  .ctf-set-card__meta a,
  .ctf-set-tracklisting summary {
    width: 100%;
  }

  .ctf-radio-group label,
  .ctf-consent-check {
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
    display: flex;
    gap: 12px;
    min-height: 48px;
    padding: 10px 12px;
  }

  .ctf-radio-group input,
  .ctf-consent-check input {
    flex: 0 0 auto;
    min-height: 20px;
    min-width: 20px;
  }

  .ctf-consent-check span {
    letter-spacing: 0;
    text-transform: none;
  }

  .woocommerce-cart .wc-block-components-quantity-selector {
    min-height: 48px;
  }

  .woocommerce-cart .wc-block-components-quantity-selector__button {
    align-items: center;
    display: inline-flex;
    justify-content: center;
    min-height: 48px;
    min-width: 44px;
  }

  .woocommerce-cart .wc-block-cart-item__remove-link {
    align-items: center;
    display: inline-flex !important;
    justify-content: center;
    min-height: 44px;
    min-width: 44px;
  }

  body.woocommerce-checkout .wc-block-components-checkbox label {
    align-items: flex-start;
    display: flex;
    gap: 12px;
    min-height: 44px;
  }

  .woocommerce div.product form.cart {
    align-items: stretch;
    flex-direction: column;
  }

  .ctf-classics {
    padding-top: 112px;
  }

  .ctf-classic-sets {
    padding-top: 112px;
  }

  .ctf-classic-set-single {
    padding-top: 112px;
  }

  .ctf-submit-page {
    padding-top: 112px;
  }

  .ctf-merch-ideas-page {
    padding-top: 112px;
  }

  .ctf-contact-page,
  .ctf-feedback-page {
    padding-top: 112px;
  }

  .ctf-scrapbook-page {
    padding-top: 112px;
  }

  .ctf-v5-hero {
    padding: 64px 18px 58px;
  }

  .ctf-v5-home-preview,
  .ctf-v5-home-release,
  .ctf-v5-section {
    padding-left: 18px;
    padding-right: 18px;
  }

  .ctf-v5-home-preview {
    padding-bottom: 56px;
    padding-top: 56px;
  }

  .ctf-v5-home-release {
    background:
      linear-gradient(180deg, rgba(7, 8, 10, 0.62), rgba(7, 8, 10, 0.94) 46%, rgba(7, 8, 10, 0.98)),
      var(--ctf-v5-home-release-banner) 28% center / cover no-repeat,
      #07080a;
    justify-content: flex-start;
    min-height: 520px;
    padding-bottom: 68px;
    padding-top: 68px;
  }

  .ctf-v5-hero__copy h1 {
    font-size: clamp(39px, 10vw, 46px);
    line-height: 0.92;
  }

  .ctf-v5-section h2,
  .ctf-v5-home-preview h2,
  .ctf-v5-home-release__copy h2 {
    font-size: 34px;
  }

  .ctf-classics__stats,
  .ctf-sets-stats,
  .ctf-scrapbook-stats,
  .ctf-classics__toolbar,
  .ctf-suggest-form {
    grid-template-columns: 1fr;
  }

  .ctf-classics__stats span {
    border-bottom: 1px solid var(--ctf-line);
    border-right: 0;
  }

  .ctf-classics__stats span:last-child {
    border-bottom: 0;
  }

  .ctf-classics__meta {
    align-items: flex-start;
    flex-direction: column;
  }

  .ctf-sets-intro,
  .ctf-scrapbook-intro {
    align-items: flex-start;
    flex-direction: column;
  }

  .ctf-sets-toolbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .ctf-set-grid,
  .ctf-scrapbook-prompts,
  .ctf-scrapbook-grid {
    grid-template-columns: 1fr;
  }

  .ctf-submit-grid {
    grid-template-columns: 1fr;
  }

  .ctf-set-pagination {
    grid-template-columns: 1fr;
  }

  .ctf-set-pagination a:last-child {
    text-align: left;
  }

  .ctf-mini-player {
    bottom: 10px;
    gap: 10px;
    grid-template-columns: 128px minmax(0, 1fr);
    left: 10px;
    max-width: none;
    right: 10px;
    width: auto;
  }

  .ctf-mini-player__close {
    grid-column: 1 / -1;
    width: 100%;
  }

}
