/* ============================================================
   SHARED BUTTON STYLES
   ============================================================ */
.ctg-btn {
  font-family: 'Bungee', sans-serif;
  font-size: 15px;
  border-radius: 4px;
  padding: 13px 28px;
  text-decoration: none;
  display: inline-block;
  transition: transform .1s ease, box-shadow .1s ease;
  cursor: pointer;
  white-space: nowrap;
}

.ctg-btn--primary {
  background: #FFB81C;
  color: #0A0703;
  border: 3px solid #0A0703;
  box-shadow: 5px 5px 0 #0A0703;
}

.ctg-btn--primary:hover {
  color: #0A0703;
  transform: translate(2px, 2px);
  box-shadow: 3px 3px 0 #0A0703;
}

.ctg-btn--secondary {
  background: transparent;
  color: #FFF3D2;
  border: 3px solid #FFF3D2;
  box-shadow: 5px 5px 0 rgba(255,243,210,.18);
}

.ctg-btn--secondary:hover {
  color: #FFB81C;
  border-color: #FFB81C;
  box-shadow: 5px 5px 0 rgba(255,184,28,.22);
}

/* ============================================================
   SECTION A: HERO  (id="top")
   ============================================================ */
.ctg-hero {
  position: relative;
  overflow: hidden;
  min-height: 88vh;
  display: flex;
  align-items: center;
  padding: 100px 24px 80px;
}

/* --- Background layers --- */
.ctg-hero__bg-radial {
  position: absolute; inset: 0; z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(1100px 600px at 72% 24%, rgba(255,184,28,.20), transparent 60%),
    radial-gradient(800px 500px at 10% 90%,  rgba(242,106,27,.16), transparent 60%);
}

.ctg-hero__bg-grid {
  position: absolute; inset: 0; z-index: 1;
  pointer-events: none;
  opacity: .10;
  background:
    repeating-linear-gradient( 45deg, #FFB81C 0 2px, transparent 2px 22px),
    repeating-linear-gradient(-45deg, #FFB81C 0 2px, transparent 2px 22px);
  animation: ctgGrid 6s linear infinite;
}

.ctg-hero__bg-floor {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 260px;
  z-index: 1;
  pointer-events: none;
  background:
    repeating-linear-gradient(90deg, rgba(255,184,28,.16) 0 1px, transparent 1px 64px),
    repeating-linear-gradient(0deg,  rgba(255,184,28,.16) 0 1px, transparent 1px 32px);
  transform: perspective(400px) rotateX(62deg);
  transform-origin: bottom center;
  -webkit-mask-image: linear-gradient(to top, rgba(0,0,0,.7) 0%, transparent 100%);
          mask-image: linear-gradient(to top, rgba(0,0,0,.7) 0%, transparent 100%);
}

/* --- Content grid --- */
.ctg-hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 48px;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  align-items: center;
}

/* --- Left column --- */
.ctg-hero__badge {
  display: inline-block;
  font-family: 'Press Start 2P', monospace;
  font-size: 9px;
  color: var(--ctg-lime);
  margin-bottom: 22px;
}

.ctg-hero__heading { margin: 0; line-height: 1; }

.ctg-hero__heading-display {
  display: block;
  font-family: 'Bungee Shade', sans-serif;
  font-size: clamp(52px, 8vw, 96px);
  color: #FFB81C;
  text-shadow: 6px 6px 0 #0A0703;
  animation: ctgRise .7s ease both;
  line-height: .92;
}

.ctg-hero__heading-sub {
  display: block;
  font-family: 'Bungee', sans-serif;
  font-size: clamp(20px, 3vw, 32px);
  color: #FFF3D2;
  margin-top: 10px;
  animation: ctgRise .7s .18s ease both;
}

.ctg-hero__ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 36px;
}

.ctg-hero__stats {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  margin-top: 44px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,184,28,.14);
}

.ctg-hero__stat { display: flex; flex-direction: column; gap: 5px; }

.ctg-stat__number {
  font-family: 'Bungee', sans-serif;
  font-size: 28px;
  color: #FFB81C;
  line-height: 1;
}

.ctg-stat__label {
  font-family: 'Press Start 2P', monospace;
  font-size: 8px;
  color: #9C8A60;
  line-height: 1.5;
}

/* --- Right column --- */
.ctg-hero__right {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.ctg-hero__image-wrap {
  width: 100%;
  animation: ctgBob 4s ease-in-out infinite;
}

.ctg-hero__image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 4px;
}

.ctg-hero__image-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  aspect-ratio: 1;
  font-size: 120px;
  background: rgba(255,184,28,.06);
  border-radius: 4px;
  border: 2px dashed rgba(255,184,28,.2);
}

/* LIVE badge (hero variant) */
.ctg-hero__live-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #FF3B2F;
  color: #fff;
  font-family: 'Press Start 2P', monospace;
  font-size: 9px;
  padding: 9px 18px;
  border-radius: 2px;
  animation: ctgPulse 2s infinite;
}

.ctg-hero__live-dot {
  display: inline-block;
  width: 8px; height: 8px;
  background: #fff;
  border-radius: 50%;
  flex-shrink: 0;
  animation: ctgBlink 1s steps(1) infinite;
}

/* --- Responsive --- */
@media (max-width: 900px) {
  .ctg-hero__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .ctg-hero__right { order: -1; max-width: 380px; margin: 0 auto; }

  .ctg-hero__ctas,
  .ctg-hero__stats  { justify-content: center; }
}

@media (max-width: 480px) {
  .ctg-hero { padding: 80px 16px 60px; }
  .ctg-hero__stats { gap: 20px; }
}

/* ============================================================
   SECTION B: WATCH LIVE  (id="watch")
   ============================================================ */
.ctg-watch {
  background: #120C05;
  border-top: 3px solid #0A0703;
  padding: 74px 24px;
}

.ctg-watch__inner {
  max-width: 1200px;
  margin: 0 auto;
}

/* --- Section header --- */
.ctg-watch__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 48px;
}

.ctg-watch__pre-label {
  display: block;
  font-family: 'Press Start 2P', monospace;
  font-size: 10px;
  color: var(--ctg-lime);
  margin-bottom: 12px;
}

.ctg-watch__heading {
  font-family: 'Bungee', sans-serif;
  font-size: clamp(32px, 5vw, 52px);
  line-height: 1;
  margin: 0;
}

.ctg-watch__heading-cream { color: #FFF3D2; }
.ctg-watch__heading-gold  { color: #FFB81C; }

.ctg-watch__schedule {
  font-family: 'Press Start 2P', monospace;
  font-size: 9px;
  color: #9C8A60;
  line-height: 1.9;
  text-align: right;
  max-width: 280px;
  margin: 0;
}

/* --- Content grid --- */
.ctg-watch__grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 40px;
  align-items: start;
}

/* --- Video embed --- */
.ctg-watch__embed-wrap {
  position: relative;
  aspect-ratio: 16 / 9;
  border: 4px solid #0A0703;
  border-radius: 8px;
  box-shadow: 8px 8px 0 #0A0703;
  overflow: hidden;
  background: #0a0703;
}

.ctg-watch__embed-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
}

.ctg-watch__offline {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  font-family: 'Press Start 2P', monospace;
  font-size: 10px;
  color: #9C8A60;
  text-align: center;
  line-height: 2;
}

.ctg-watch__offline-icon { font-size: 52px; opacity: .35; }

/* --- Sidebar --- */
.ctg-watch__sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Stat card (viewers + uptime) */
.ctg-watch__stat-card {
  background: #15100A;
  border: 2px solid rgba(255,184,28,.15);
  border-radius: 4px;
  padding: 20px;
}

.ctg-watch__viewer-count {
  display: block;
  font-family: 'Bungee', sans-serif;
  font-size: 38px;
  color: #FFB81C;
  line-height: 1;
}

.ctg-watch__stat-label {
  display: block;
  font-family: 'Press Start 2P', monospace;
  font-size: 8px;
  color: #9C8A60;
  margin-top: 5px;
}

.ctg-watch__uptime {
  font-family: 'Press Start 2P', monospace;
  font-size: 9px;
  color: #FFF3D2;
  margin: 14px 0 0;
}

/* Chat panel */
.ctg-watch__chat {
  background: #15100A;
  border: 2px solid rgba(255,184,28,.15);
  border-radius: 4px;
  overflow: hidden;
}

.ctg-watch__chat-header {
  font-family: 'Press Start 2P', monospace;
  font-size: 8px;
  color: #9C8A60;
  padding: 10px 14px;
  border-bottom: 1px solid rgba(255,184,28,.1);
}

.ctg-watch__chat-messages {
  list-style: none;
  margin: 0;
  padding: 10px 0;
  max-height: 220px;
  overflow-y: auto;
}

/* Thin gold scrollbar for chat */
.ctg-watch__chat-messages::-webkit-scrollbar { width: 4px; }
.ctg-watch__chat-messages::-webkit-scrollbar-track { background: transparent; }
.ctg-watch__chat-messages::-webkit-scrollbar-thumb { background: rgba(255,184,28,.3); border-radius: 2px; }

.ctg-watch__chat-msg {
  padding: 5px 14px;
  opacity: 0;
  animation: ctgChatIn .35s ease forwards;
}

.ctg-chat-username {
  font-family: 'Press Start 2P', monospace;
  font-size: 9px;
  color: #FFB81C;
  margin-right: 5px;
}

.ctg-chat-text {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 13px;
  color: #FFF3D2;
  vertical-align: middle;
}

/* Twitch CTA */
.ctg-watch__twitch-btn {
  display: block;
  text-align: center;
  background: #6441A4;
  color: #fff;
  font-family: 'Bungee', sans-serif;
  font-size: 14px;
  padding: 14px 20px;
  border-radius: 4px;
  text-decoration: none;
  border: 3px solid #0A0703;
  box-shadow: 4px 4px 0 #0A0703;
  transition: transform .1s ease, box-shadow .1s ease;
}

.ctg-watch__twitch-btn:hover {
  color: #fff;
  transform: translate(2px, 2px);
  box-shadow: 2px 2px 0 #0A0703;
}

/* --- Responsive --- */
@media (max-width: 860px) {
  .ctg-watch__grid { grid-template-columns: 1fr; }

  .ctg-watch__sidebar {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .ctg-watch__twitch-btn { grid-column: 1 / -1; }
}

@media (max-width: 560px) {
  .ctg-watch { padding: 52px 16px; }
  .ctg-watch__header { flex-direction: column; }
  .ctg-watch__schedule { text-align: left; max-width: 100%; }
  .ctg-watch__sidebar { grid-template-columns: 1fr; }
}

/* ============================================================
   SECTION C: MERCH  (id="merch")
   ============================================================ */
.ctg-merch {
  background: #0E0A04;
  padding: 78px 24px;
}

.ctg-merch__inner {
  max-width: 1200px;
  margin: 0 auto;
}

/* --- Section header --- */
.ctg-merch__header {
  text-align: center;
  margin-bottom: 56px;
}

.ctg-merch__pre-label {
  display: block;
  font-family: 'Press Start 2P', monospace;
  font-size: 10px;
  color: var(--ctg-lime);
  margin-bottom: 16px;
}

.ctg-merch__heading {
  font-family: 'Bungee', sans-serif;
  font-size: clamp(32px, 5vw, 52px);
  text-shadow: 4px 4px 0 #0A0703;
  line-height: 1;
  margin: 0 0 18px;
}

.ctg-merch__heading-cream { color: #FFF3D2; }
.ctg-merch__heading-gold  { color: #FFB81C; }

.ctg-merch__subtext {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 15px;
  color: #9C8A60;
  max-width: 440px;
  margin: 0 auto;
  line-height: 1.65;
}

/* --- Product grid --- */
.ctg-merch__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 52px;
}

/* --- Product card --- */
.ctg-merch__card {
  background: #15100A;
  border: 4px solid #0A0703;
  border-radius: 10px;
  box-shadow: 6px 6px 0 #0A0703;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .2s ease, box-shadow .2s ease;
}

.ctg-merch__card:hover {
  transform: translate(-2px, -6px);
  box-shadow: 8px 12px 0 #0A0703;
}

/* Image area */
.ctg-merch__image-wrap {
  position: relative;
  aspect-ratio: 1;
  background: #1C140B;
  overflow: hidden;
}

.ctg-merch__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .3s ease;
}

.ctg-merch__card:hover .ctg-merch__image {
  transform: scale(1.04);
}

/* Stock badges */
.ctg-merch__badge {
  position: absolute;
  top: 10px; left: 10px;
  font-family: 'Press Start 2P', monospace;
  font-size: 10px;
  padding: 6px 10px;
  border-radius: 2px;
  line-height: 1;
  z-index: 2;
  pointer-events: none;
}

.ctg-merch__badge--sold-out {
  background: #FF3B2F;
  color: #fff;
}

.ctg-merch__badge--last-one {
  background: #FFB81C;
  color: #0A0703;
}

/* Card body */
.ctg-merch__card-body {
  padding: 14px 14px 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.ctg-merch__product-name {
  font-family: 'Bungee', sans-serif;
  font-size: 18px;
  color: #FFF3D2;
  margin: 0;
  line-height: 1.2;
}

.ctg-merch__product-link {
  color: inherit;
  text-decoration: none;
}

.ctg-merch__product-link:hover { color: #FFB81C; }

.ctg-merch__price,
.ctg-merch__price .woocommerce-Price-amount {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #FFB81C;
  margin: 0;
}

/* Add-to-cart button (shared by template markup + WC loop filter).
   !important beats the parent theme's `.woocommerce a.button:not(.alt)`
   (bundle.css), which otherwise wins on specificity and renders this as a
   plain Bootstrap-blue outlined link instead of the branded button. */
.ctg-merch__add-btn {
  display: block;
  width: 100%;
  text-align: center;
  font-family: 'Press Start 2P', monospace;
  font-size: 10px;
  background: #FFB81C !important;
  color: #0A0703 !important;
  border: 3px solid #0A0703 !important;
  border-radius: 6px;
  box-shadow: 3px 3px 0 #0A0703;
  padding: 11px 0;
  text-decoration: none;
  cursor: pointer;
  transition: transform .1s ease, box-shadow .1s ease, background .15s ease;
  margin-top: auto;
  line-height: 1;
}

.ctg-merch__add-btn:hover:not(.ctg-merch__add-btn--disabled) {
  color: #0A0703;
  transform: translate(1px, 1px);
  box-shadow: 2px 2px 0 #0A0703;
}

/* WC states */
.ctg-merch__add-btn.loading {
  opacity: .55;
  pointer-events: none;
}

.ctg-merch__add-btn.added,
.ctg-merch__add-btn.ctg-btn-added {
  background: var(--ctg-lime);
  color: #0A0703;
}

.ctg-merch__add-btn--disabled {
  background: rgba(255,184,28,.12);
  color: #9C8A60;
  border-color: rgba(10,7,3,.4);
  box-shadow: none;
  cursor: not-allowed;
}

/* Empty state */
.ctg-merch__empty {
  text-align: center;
  font-family: 'Press Start 2P', monospace;
  font-size: 9px;
  color: #9C8A60;
  line-height: 2;
  padding: 48px 24px;
  margin-bottom: 40px;
}

/* --- Footer / View All --- */
.ctg-merch__footer { text-align: center; }

.ctg-merch__view-all {
  display: inline-block;
  font-family: 'Bungee', sans-serif;
  font-size: 15px;
  color: #FFB81C;
  border: 3px solid #FFB81C;
  border-radius: 4px;
  padding: 13px 40px;
  text-decoration: none;
  transition: background .15s ease, color .15s ease;
}

.ctg-merch__view-all:hover {
  background: #FFB81C;
  color: #0A0703;
}

/* --- Responsive --- */
@media (max-width: 900px) {
  .ctg-merch__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .ctg-merch { padding: 52px 16px; }
  .ctg-merch__grid { grid-template-columns: 1fr; gap: 20px; }
  .ctg-merch__card { flex-direction: row; border-radius: 8px; }
  .ctg-merch__image-wrap { width: 120px; min-width: 120px; aspect-ratio: auto; }
}

/* ============================================================
   SECTION D: ABOUT  (id="about")
   ============================================================ */
.ctg-about {
  background: #120C05;
  border-top: 3px solid #0A0703;
  padding: 80px 24px;
}

.ctg-about__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 54px;
  align-items: center;
}

/* --- Left: Polaroid --- */
.ctg-about__photo-col {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
}

.ctg-about__photo-wrap {
  position: relative;
  width: 100%;
  max-width: 320px;
}

/* Yellow tilted backing */
.ctg-about__photo-tilt {
  position: absolute;
  inset: 0;
  background: #FFB81C;
  border-radius: 14px;
  transform: rotate(-3deg);
  z-index: 0;
}

/* Dark polaroid card */
.ctg-about__photo-card {
  position: relative;
  z-index: 1;
  background: #0A0703;
  padding: 14px 14px 52px;
  border: 4px solid #0A0703;
  border-radius: 14px;
  box-shadow: 10px 10px 0 rgba(0, 0, 0, .4);
  transform: rotate(2deg);
}

.ctg-about__photo-frame {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 8px;
  background: #1C140B;
}

.ctg-about__photo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ctg-about__photo-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 72px;
  background: #1C140B;
}

/* Caption inside the 52px bottom padding */
.ctg-about__photo-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Press Start 2P', monospace;
  font-size: 9px;
  color: #FFB81C;
  letter-spacing: .06em;
}

/* --- Right: Bio content --- */
.ctg-about__pre-label {
  display: block;
  font-family: 'Press Start 2P', monospace;
  font-size: 10px;
  color: var(--ctg-lime);
  margin-bottom: 16px;
}

.ctg-about__heading {
  font-family: 'Bungee', sans-serif;
  font-size: clamp(30px, 4.6vw, 50px);
  text-shadow: 4px 4px 0 #0A0703;
  line-height: 1;
  margin: 0 0 24px;
}

.ctg-about__heading-cream { color: #FFF3D2; }
.ctg-about__heading-gold  { color: #FFB81C; }

.ctg-about__bio {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 15px;
  color: #C9B894;
  line-height: 1.75;
  margin-bottom: 28px;
}

.ctg-about__bio p { margin: 0 0 1em; }
.ctg-about__bio p:last-child { margin-bottom: 0; }

.ctg-about__pullquote {
  border-left: 4px solid #FFB81C;
  padding-left: 18px;
  margin: 0 0 32px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 17px;
  font-weight: 600;
  font-style: italic;
  color: #FFF3D2;
  line-height: 1.5;
}

.ctg-about__stats {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  padding-top: 24px;
  border-top: 1px solid rgba(255,184,28,.14);
}

.ctg-about__stat { display: flex; flex-direction: column; gap: 5px; }

/* Responsive */
@media (max-width: 860px) {
  .ctg-about__inner { grid-template-columns: 1fr; }
  .ctg-about__photo-col { order: -1; }
  .ctg-about__stats { justify-content: center; }
}

@media (max-width: 480px) {
  .ctg-about { padding: 56px 16px; }
  .ctg-about__photo-col { padding: 30px 10px; }
}

/* ============================================================
   SECTION E: JOIN THE COBRA PIT  (id="join")
   ============================================================ */
.ctg-join {
  position: relative;
  overflow: hidden;
  background: #FFB81C;
  border-top: 4px solid #0A0703;
  border-bottom: 4px solid #0A0703;
  padding: 84px 24px;
}

/* Diagonal hatch overlay */
.ctg-join__hatch {
  position: absolute; inset: 0;
  pointer-events: none;
  opacity: .12;
  background-image: repeating-linear-gradient(45deg, #0A0703 0 3px, transparent 3px 26px);
}

.ctg-join__inner {
  position: relative;
  z-index: 1;
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}

.ctg-join__pre-label {
  display: block;
  font-family: 'Press Start 2P', monospace;
  font-size: 10px;
  color: #7A3E00;
  margin-bottom: 20px;
}

.ctg-join__heading {
  font-family: 'Bungee Shade', sans-serif;
  font-size: clamp(36px, 6vw, 68px);
  color: #0A0703;
  text-shadow: 4px 4px 0 #FFF3D2;
  line-height: 1;
  margin: 0 0 20px;
}

.ctg-join__body {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 18px;
  color: #3A2A06;
  line-height: 1.6;
  margin: 0 0 36px;
}

/* Email form */
.ctg-join__form {
  display: flex;
  max-width: 440px;
  margin: 0 auto 12px;
  gap: 0;
}

.ctg-join__input {
  flex: 1;
  min-width: 0;
  background: #FFF3D2;
  border: 3px solid #0A0703;
  border-right: none;
  box-shadow: 4px 4px 0 #0A0703;
  padding: 12px 16px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 14px;
  color: #0A0703;
  border-radius: 4px 0 0 4px;
  outline: none;
}

.ctg-join__input::placeholder { color: #9C8A60; }
.ctg-join__input:focus { background: #fff; }

.ctg-join__submit {
  font-family: 'Bungee', sans-serif;
  font-size: 15px;
  background: #0A0703;
  color: #FFB81C;
  border: 3px solid #0A0703;
  padding: 12px 20px;
  cursor: pointer;
  border-radius: 0 4px 4px 0;
  white-space: nowrap;
  transition: background .15s ease;
}

.ctg-join__submit:hover   { background: #1C1409; }
.ctg-join__submit:disabled { opacity: .6; cursor: not-allowed; }

/* Form response message */
.ctg-join__form-msg {
  font-family: 'Press Start 2P', monospace;
  font-size: 9px;
  min-height: 1.5em;
  margin: 0 0 24px;
  line-height: 1.8;
}

.ctg-join__form-msg.is-success { color: #1A4A00; }
.ctg-join__form-msg.is-error   { color: #7A0000; }

/* Social buttons */
.ctg-join__socials {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 12px;
}

.ctg-join__social-btn {
  font-family: 'Press Start 2P', monospace;
  font-size: 9px;
  background: #0A0703;
  color: #FFB81C;
  padding: 10px 16px;
  border-radius: 4px;
  text-decoration: none;
  transition: background .15s ease;
  white-space: nowrap;
}

.ctg-join__social-btn:hover { background: #1C1409; color: #FFB81C; }

/* Responsive */
@media (max-width: 520px) {
  .ctg-join { padding: 60px 16px; }
  .ctg-join__form { flex-direction: column; }
  .ctg-join__input  { border-right: 3px solid #0A0703; border-radius: 4px; }
  .ctg-join__submit { border-radius: 4px; }
}
