:root {
  --cubebustcraze-bg-main: #0f0f0f;
  --cubebustcraze-bg-deep: #1a0a00;
  --cubebustcraze-card: #1a0f00;
  --cubebustcraze-accent-hot: #ea580c;
  --cubebustcraze-accent-red: #dc2626;
  --cubebustcraze-accent-amber: #fbbf24;
  --cubebustcraze-text: #fffbf0;
  --cubebustcraze-border: rgba(251, 191, 36, 0.18);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  background: radial-gradient(circle at 80% 0%, #351100 0%, var(--cubebustcraze-bg-main) 48%, var(--cubebustcraze-bg-deep) 100%);
  color: var(--cubebustcraze-text);
  font-family: "Open Sans", sans-serif;
}

img {
  max-width: 100%;
  display: block;
  object-fit: contain;
}

html.cubebustcraze-age-lock body {
  overflow: hidden;
}

html.cubebustcraze-age-lock body > *:not(#cubebustcraze-age) {
  visibility: hidden;
}

html.cubebustcraze-age-lock #cubebustcraze-age {
  visibility: visible;
}

.cubebustcraze-wrap {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.cubebustcraze-topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(15, 15, 15, 0.94);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(220, 38, 38, 0.45);
}

.cubebustcraze-topbar-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 16px;
}

.cubebustcraze-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--cubebustcraze-text);
  text-decoration: none;
}

.cubebustcraze-brand-mark {
  width: 42px;
  height: 42px;
}

.cubebustcraze-brand-name {
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 1.2px;
  font-size: 30px;
}

.cubebustcraze-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.cubebustcraze-nav-link {
  font-family: "Bebas Neue", sans-serif;
  text-transform: uppercase;
  letter-spacing: 1.3px;
  color: var(--cubebustcraze-text);
  text-decoration: none;
  font-size: 22px;
  position: relative;
}

.cubebustcraze-nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: var(--cubebustcraze-accent-hot);
  transition: width 0.2s ease;
}

.cubebustcraze-nav-link:hover::after,
.cubebustcraze-nav-link.cubebustcraze-nav-live::after {
  width: 100%;
}

.cubebustcraze-flamebox {
  background: linear-gradient(140deg, rgba(26, 15, 0, 0.97), rgba(24, 10, 0, 0.95));
  border: 1px solid var(--cubebustcraze-border);
  border-top: 3px solid transparent;
  border-image: linear-gradient(90deg, var(--cubebustcraze-accent-red), var(--cubebustcraze-accent-hot), var(--cubebustcraze-accent-amber)) 1;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
}

.cubebustcraze-main {
  padding: 28px 0 50px;
}

.cubebustcraze-landing {
  position: relative;
  overflow: hidden;
  padding: 30px;
}

.cubebustcraze-landing::before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  right: -130px;
  top: -170px;
  background: radial-gradient(circle, rgba(234, 88, 12, 0.4), rgba(220, 38, 38, 0.06) 55%, transparent 72%);
  animation: cubebustcraze-flamepulse 4.6s ease-in-out infinite;
}

@keyframes cubebustcraze-flamepulse {
  0%, 100% { transform: scale(0.95); opacity: 0.65; }
  50% { transform: scale(1.08); opacity: 1; }
}

.cubebustcraze-kicker {
  margin: 0;
  text-transform: uppercase;
  color: var(--cubebustcraze-accent-amber);
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 1.6px;
  font-size: 24px;
}

.cubebustcraze-title {
  margin: 8px 0 12px;
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: clamp(40px, 7vw, 78px);
  line-height: 0.95;
}

.cubebustcraze-copy {
  line-height: 1.7;
  max-width: 760px;
}

.cubebustcraze-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 12px 0 0;
  padding: 8px 11px;
  border-radius: 999px;
  background: rgba(220, 38, 38, 0.18);
  border: 1px solid rgba(234, 88, 12, 0.46);
  font-size: 14px;
}

.cubebustcraze-badge img {
  width: 20px;
  height: 20px;
}

.cubebustcraze-btn {
  display: inline-block;
  text-decoration: none;
  color: #fff8ec;
  font-weight: 700;
  letter-spacing: 0.5px;
  border: none;
  border-radius: 10px;
  padding: 12px 20px;
  margin-top: 15px;
  background: linear-gradient(120deg, var(--cubebustcraze-accent-red), var(--cubebustcraze-accent-hot));
  box-shadow: 0 10px 20px rgba(220, 38, 38, 0.28);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cubebustcraze-btn:hover {
  animation: cubebustcraze-flicker 0.35s linear 2;
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(234, 88, 12, 0.45);
}

@keyframes cubebustcraze-flicker {
  0%, 100% { filter: brightness(1); }
  40% { filter: brightness(1.2); }
  70% { filter: brightness(0.9); }
}

.cubebustcraze-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 18px;
  margin-top: 20px;
}

.cubebustcraze-col-4 {
  grid-column: span 4;
}

.cubebustcraze-col-5 {
  grid-column: span 5;
}

.cubebustcraze-col-6 {
  grid-column: span 6;
}

.cubebustcraze-col-7 {
  grid-column: span 7;
}

.cubebustcraze-col-8 {
  grid-column: span 8;
}

.cubebustcraze-col-12 {
  grid-column: span 12;
}

.cubebustcraze-headline {
  margin: 0 0 14px;
  text-transform: uppercase;
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 1.5px;
  font-size: 37px;
}

.cubebustcraze-subhead {
  margin: 0;
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 1px;
  font-size: 28px;
}

.cubebustcraze-feature {
  min-height: 170px;
}

.cubebustcraze-feature-icon {
  font-size: 30px;
}

.cubebustcraze-feature p {
  margin-top: 8px;
  line-height: 1.6;
}

.cubebustcraze-slider {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(251, 191, 36, 0.25);
  background: #140900;
}

.cubebustcraze-slide {
  display: none;
}

.cubebustcraze-slide.cubebustcraze-slide-live {
  display: block;
}

.cubebustcraze-slide img {
  width: 100%;
  height: 430px;
}

.cubebustcraze-slider-controls {
  display: flex;
  justify-content: center;
  gap: 12px;
  padding: 12px;
}

.cubebustcraze-slider-btn {
  border: 1px solid rgba(251, 191, 36, 0.4);
  background: #200d00;
  color: var(--cubebustcraze-text);
  padding: 8px 12px;
  border-radius: 8px;
  cursor: pointer;
}

.cubebustcraze-thumbrow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.cubebustcraze-thumbrow button {
  border: 1px solid rgba(220, 38, 38, 0.33);
  background: #160a00;
  padding: 4px;
  border-radius: 8px;
  cursor: pointer;
}

.cubebustcraze-thumbrow img {
  width: 100%;
  height: 88px;
}

.cubebustcraze-tabrow {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}

.cubebustcraze-tabrow button {
  border: 1px solid rgba(251, 191, 36, 0.37);
  background: #1c0d00;
  color: var(--cubebustcraze-text);
  border-radius: 999px;
  padding: 8px 14px;
  cursor: pointer;
}

.cubebustcraze-tabrow button.cubebustcraze-tab-live {
  background: linear-gradient(120deg, var(--cubebustcraze-accent-red), var(--cubebustcraze-accent-hot));
}

.cubebustcraze-tabpanel {
  display: none;
}

.cubebustcraze-tabpanel.cubebustcraze-tabpanel-live {
  display: block;
}

.cubebustcraze-review-name {
  margin: 0 0 4px;
  font-weight: 700;
}

.cubebustcraze-stars {
  margin: 0 0 10px;
  color: var(--cubebustcraze-accent-amber);
  letter-spacing: 1.5px;
}

.cubebustcraze-faq-item {
  border: 1px solid rgba(251, 191, 36, 0.2);
  border-radius: 10px;
  margin-bottom: 10px;
  overflow: hidden;
}

.cubebustcraze-faq-btn {
  width: 100%;
  text-align: left;
  border: none;
  color: var(--cubebustcraze-text);
  background: #1d0d00;
  padding: 12px 14px;
  cursor: pointer;
  font-weight: 600;
}

.cubebustcraze-faq-panel {
  display: none;
  padding: 12px 14px;
  background: #130900;
  line-height: 1.6;
}

.cubebustcraze-faq-item.cubebustcraze-faq-open .cubebustcraze-faq-panel {
  display: block;
}

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

.cubebustcraze-statcard {
  padding: 14px;
  border-radius: 12px;
  background: rgba(251, 191, 36, 0.07);
  border: 1px solid rgba(251, 191, 36, 0.22);
}

.cubebustcraze-statnum {
  margin: 0;
  font-family: "Bebas Neue", sans-serif;
  font-size: 40px;
  color: var(--cubebustcraze-accent-amber);
}

.cubebustcraze-mini {
  margin: 2px 0 0;
}

.cubebustcraze-contact-form {
  display: grid;
  gap: 10px;
}

.cubebustcraze-contact-form input,
.cubebustcraze-contact-form textarea {
  width: 100%;
  border: 1px solid rgba(251, 191, 36, 0.24);
  background: #120900;
  color: var(--cubebustcraze-text);
  border-radius: 8px;
  padding: 10px;
  font: inherit;
}

.cubebustcraze-contact-form textarea {
  resize: vertical;
  min-height: 130px;
}

.cubebustcraze-lists {
  margin: 0;
  padding-left: 18px;
  line-height: 1.7;
}

.cubebustcraze-ck {
  position: fixed;
  left: 16px;
  bottom: 16px;
  z-index: 50;
  width: min(420px, calc(100% - 32px));
  background: linear-gradient(145deg, rgba(26, 15, 0, 0.98), rgba(39, 15, 0, 0.95));
  border: 1px solid rgba(251, 191, 36, 0.26);
  border-top: 3px solid transparent;
  border-image: linear-gradient(90deg, var(--cubebustcraze-accent-red), var(--cubebustcraze-accent-hot)) 1;
  border-radius: 14px;
  padding: 14px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.45);
}

.cubebustcraze-ck p {
  margin: 0 0 10px;
  line-height: 1.5;
}

.cubebustcraze-ck a {
  color: var(--cubebustcraze-accent-amber);
}

.cubebustcraze-ck-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.cubebustcraze-ck-accept,
.cubebustcraze-ck-decline {
  border: none;
  border-radius: 8px;
  padding: 8px 12px;
  cursor: pointer;
  font-weight: 600;
}

.cubebustcraze-ck-accept {
  background: linear-gradient(120deg, var(--cubebustcraze-accent-red), var(--cubebustcraze-accent-hot));
  color: #fff6ec;
}

.cubebustcraze-ck-decline {
  background: #281100;
  color: var(--cubebustcraze-text);
  border: 1px solid rgba(251, 191, 36, 0.24);
}

.cubebustcraze-age {
  position: fixed;
  inset: 0;
  z-index: 70;
  background: rgba(7, 2, 0, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.cubebustcraze-age-shell {
  width: min(560px, 100%);
  background: linear-gradient(150deg, rgba(24, 10, 0, 0.98), rgba(40, 15, 0, 0.96));
  border: 1px solid rgba(251, 191, 36, 0.26);
  border-top: 3px solid transparent;
  border-image: linear-gradient(90deg, var(--cubebustcraze-accent-red), var(--cubebustcraze-accent-hot), var(--cubebustcraze-accent-amber)) 1;
  border-radius: 16px;
  padding: 24px;
  text-align: center;
}

.cubebustcraze-age-mark {
  margin: 0 auto 12px;
  width: 66px;
  height: 66px;
}

.cubebustcraze-age h2 {
  margin: 0 0 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: "Bebas Neue", sans-serif;
  font-size: 42px;
}

.cubebustcraze-age p {
  margin: 0 0 16px;
  line-height: 1.6;
}

.cubebustcraze-age-actions {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.cubebustcraze-age-yes,
.cubebustcraze-age-no {
  border: none;
  border-radius: 9px;
  padding: 10px 14px;
  cursor: pointer;
  font-weight: 700;
}

.cubebustcraze-age-yes {
  background: linear-gradient(120deg, var(--cubebustcraze-accent-red), var(--cubebustcraze-accent-hot));
  color: #fff6ec;
}

.cubebustcraze-age-no {
  background: #281100;
  color: var(--cubebustcraze-text);
  border: 1px solid rgba(251, 191, 36, 0.24);
}

.cubebustcraze-foot {
  margin-top: 30px;
  border-top: 1px solid rgba(251, 191, 36, 0.2);
  padding: 24px 0 40px;
}

.cubebustcraze-foot-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 18px;
}

.cubebustcraze-foot-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
}

.cubebustcraze-foot-links a {
  color: var(--cubebustcraze-text);
  text-decoration: none;
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 1px;
  font-size: 22px;
}

.cubebustcraze-foot-note {
  margin: 10px 0;
  line-height: 1.6;
  font-size: 14px;
}

.cubebustcraze-playstrip {
  margin-top: 10px;
}

.cubebustcraze-playstrip a {
  display: inline-block;
}

.cubebustcraze-pagelead {
  display: flex;
  align-items: center;
  gap: 12px;
}

.cubebustcraze-pagelead img {
  width: 34px;
  height: 34px;
}

.cubebustcraze-pagelead .cubebustcraze-headline {
  margin: 0;
}

.cubebustcraze-grid figure {
  margin: 0;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(251, 191, 36, 0.22);
  background: #140900;
}

.cubebustcraze-grid figure img {
  width: 100%;
  object-fit: cover;
}

@media (max-width: 900px) {
  .cubebustcraze-col-4,
  .cubebustcraze-col-5,
  .cubebustcraze-col-6,
  .cubebustcraze-col-7,
  .cubebustcraze-col-8 {
    grid-column: span 12;
  }

  .cubebustcraze-foot-grid {
    grid-template-columns: 1fr;
  }

  .cubebustcraze-title {
    font-size: 52px;
  }

  .cubebustcraze-slide img {
    height: 340px;
  }
}

@media (max-width: 640px) {
  .cubebustcraze-topbar-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .cubebustcraze-nav {
    gap: 8px 12px;
  }

  .cubebustcraze-nav-link {
    font-size: 20px;
  }

  .cubebustcraze-title {
    font-size: 44px;
  }

  .cubebustcraze-landing {
    padding: 20px;
  }

  .cubebustcraze-statgrid {
    grid-template-columns: 1fr;
  }

  .cubebustcraze-slide img {
    height: 280px;
  }
}
