:root {
  --wall-1: #9ea3a6;
  --wall-2: #8b8f93;
  --wall-3: #7b7f82;
  --ink: #111111;
  --accent: #ffb400;
  --accent-2: #ff3b3b;
  --text: #f5f5f5;
  /* Brand colors */
  --discord: #5865F2;
  --tiktok1: #25F4EE;
  --tiktok2: #FE2C55;
  --youtube: #FF0000;
  --instagram: #E4405F;
  --twitch: #9146FF;
  --pinterest: #BD081C;
  --telegram: #229ED9;
  --tumblr: #36465D;
  --facebook: #1877F2;
  --x: #000000;
  --bluesky: #0085FF;
}

* {
  box-sizing: border-box;
}

html, body {
  height: 100%;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, 'Helvetica Neue', Arial, 'Noto Sans', 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol';
  color: var(--text);
  background: radial-gradient(1200px 800px at 10% 0%, #a8adb1 0%, var(--wall-1) 30%, var(--wall-2) 60%, var(--wall-3) 100%);
  overflow-x: hidden; /* allow vertical scrolling for sections below hero */
  cursor: none;
}

/* Hide page scrollbars visually while preserving scroll */
html, body { scrollbar-width: none; -ms-overflow-style: none; }
html::-webkit-scrollbar, body::-webkit-scrollbar { width: 0; height: 0; }

/* Restore native cursor when modal is open */
body.is-modal-open { cursor: default; overflow: hidden; }
body.is-modal-open .btn,
body.is-modal-open .credits a,
body.is-modal-open .modal-close,
body.is-modal-open .social-list a { cursor: pointer; }
body.is-modal-open .back-btn { cursor: pointer; }
/* Also force default cursor across visible modal/backdrop so mouse is visible */
.modal[aria-hidden="false"],
.modal[aria-hidden="false"] *,
.modal-backdrop { cursor: default; }

/* Canvas covers entire viewport */
#graffiti-canvas {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  cursor: none;
  background-image:
    radial-gradient(120px 40px at 10% 20%, rgba(255,255,255,0.07) 0, rgba(255,255,255,0.03) 30%, rgba(0,0,0,0.12) 31%, rgba(0,0,0,0.2) 32%, transparent 33%),
    linear-gradient(90deg, rgba(0,0,0,0.25) 1px, transparent 1px),
    linear-gradient(0deg, rgba(0,0,0,0.25) 1px, transparent 1px),
    url('Media/background.png');
  background-size: auto, 80px 80px, 80px 80px, cover;
  background-position: center center;
  z-index: 0;
}

.spray-cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 72px;
  height: 72px;
  margin-left: -36px;
  margin-top: -36px;
  pointer-events: none;
  z-index: 4;
  background-image: url('Media/Cursor.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  filter: drop-shadow(0 4px 10px rgba(0,0,0,0.55));
}

.spray-color {
  position: fixed;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  margin-left: 26px; /* relative to cursor center via JS translate */
  margin-top: 24px;
  border-radius: 4px;
  border: 2px solid #111;
  box-shadow: 0 2px 0 rgba(0,0,0,0.6), 0 6px 12px rgba(0,0,0,0.45);
  pointer-events: none;
  z-index: 4;
}

 

.content {
  position: relative;
  z-index: 2;
  min-height: 100vh; /* hero height */
  width: 100vw;
  display: grid;
  place-items: center;
  padding: 96px 16px 24px;
  pointer-events: none; /* allow drawing anywhere; buttons will restore events */
}

.hero {
  width: min(84vw, 720px);
  max-width: 90vw;
  height: auto;
  margin: 0 auto 24px;
  display: block;
  filter: drop-shadow(0 8px 0 rgba(0,0,0,0.6)) drop-shadow(0 18px 26px rgba(0,0,0,0.5));
}

.cta-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  pointer-events: auto; /* re-enable on interactive elements */
}

.btn {
  appearance: none;
  border: 0;
  cursor: none;
  text-decoration: none;
  padding: 20px 36px;
  font-size: clamp(20px, 4vw, 30px);
  font-weight: 800;
  letter-spacing: 0.5px;
  border-radius: 12px;
  color: #111;
  transform: skewX(-6deg);
  transition: transform 0.08s ease, filter 0.08s ease, box-shadow 0.08s ease;
  box-shadow: 0 0 0 3px #111 inset, 0 10px 0 rgba(0,0,0,0.55), 0 18px 32px rgba(0,0,0,0.5);
  font-family: 'Bangers', cursive;
  text-transform: uppercase;
}

.btn.primary {
  background: linear-gradient(180deg, #ff6b6b, var(--accent-2));
}

/* Larger, high-visibility Steam CTA variant */
.btn.cta-steam {
  padding: 24px 42px;
  font-size: clamp(24px, 5vw, 38px);
  letter-spacing: 0.8px;
  background: linear-gradient(180deg, #ff7a7a 0%, #ff3b3b 80%);
  box-shadow: 0 0 0 4px #111 inset, 0 14px 0 rgba(0,0,0,0.6), 0 26px 40px rgba(0,0,0,0.6);
}
.btn.cta-steam:hover { filter: brightness(1.04) saturate(1.04); }
.btn.cta-steam:active { filter: brightness(0.98); }

/* Clickable Steam logo next to CTA */
.steam-logo-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}
.steam-logo-link img {
  height: 24px;
  width: 24px;
  display: block;
  object-fit: contain;
}
.steam-logo-link:hover { transform: translateY(-2px) scale(1.04); filter: saturate(1.08); }
.steam-logo-link:active { transform: translateY(2px) scale(0.98); }

.btn.secondary {
  background: transparent;
  color: #ffd24a;
  box-shadow: 0 0 0 2px var(--accent) inset, 0 10px 0 rgba(0,0,0,0.45), 0 18px 28px rgba(0,0,0,0.45);
}

.btn.outline-orange {
  background: transparent;
  color: #ffd24a;
  box-shadow: 0 0 0 3px #ffd24a inset, 0 10px 0 rgba(0,0,0,0.55), 0 18px 32px rgba(0,0,0,0.5);
}

.btn:hover { transform: skewX(-6deg) translateY(-2px) scale(1.02); }
.btn:active { transform: skewX(-6deg) translateY(2px) scale(0.98); box-shadow: 0 6px 0 rgba(0,0,0,0.55), 0 10px 20px rgba(0,0,0,0.45); }

/* Subtle fill on outlined secondary on hover/active */
.btn.secondary:hover {
  background: linear-gradient(180deg, rgba(255,210,74,0.14), rgba(255,180,0,0.08));
}
.btn.secondary:active {
  background: linear-gradient(180deg, rgba(255,210,74,0.22), rgba(255,180,0,0.12));
}

.hint {
  margin-top: 4px;
  font-size: 12px;
  opacity: 0.75;
  text-align: center;
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  z-index: 3;
  pointer-events: auto;
}
.scroll-indicator__link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: #ffd24a;
  text-decoration: none;
  font-family: 'Bangers', cursive;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-shadow: 0 3px 0 rgba(0,0,0,0.8), 0 10px 20px rgba(0,0,0,0.6);
  cursor: none;
}
.scroll-indicator__mouse {
  width: 34px;
  height: 52px;
  border: 3px solid #000;
  background: linear-gradient(180deg, rgba(255,210,74,0.25), rgba(0,0,0,0.15));
  border-radius: 16px;
  box-shadow: 0 0 0 3px #ffd24a inset, 0 8px 20px rgba(0,0,0,0.6);
  display: inline-flex;
  align-items: flex-start;
  justify-content: center;
  overflow: hidden;
}
.scroll-indicator__wheel {
  width: 5px;
  height: 10px;
  background: #ffd24a;
  border-radius: 2px;
  margin-top: 6px;
  animation: wheel-slide 1.6s ease-in-out infinite;
}
@keyframes wheel-slide {
  0% { transform: translateY(0); opacity: 1; }
  60% { transform: translateY(18px); opacity: 0.2; }
  100% { transform: translateY(0); opacity: 1; }
}
.scroll-indicator__text {
  font-size: 16px;
  opacity: 0.9;
}
.scroll-indicator__chevron {
  width: 14px;
  height: 14px;
  border-right: 4px solid #ffd24a;
  border-bottom: 4px solid #ffd24a;
  transform: rotate(45deg);
  filter: drop-shadow(0 2px 0 rgba(0,0,0,0.6));
  animation: chevron-bounce 1.6s cubic-bezier(.22,1.2,.32,1) infinite;
}
@keyframes chevron-bounce {
  0%, 100% { transform: translateY(0) rotate(45deg); opacity: 1; }
  50% { transform: translateY(6px) rotate(45deg); opacity: 0.6; }
}

.credits {
  position: relative;
  z-index: 1;
  text-align: center;
  font-size: 12px;
  opacity: 1;
  text-shadow: 0 2px 8px rgba(0,0,0,0.6);
  pointer-events: auto;
  padding: 16px 0 24px;
  background: #000;
  border-top: 3px solid rgba(0,0,0,0.7);
  box-shadow: 0 -10px 30px rgba(0,0,0,0.5);
}
.credits a { color: var(--accent); text-decoration: none; border-bottom: 1px dashed rgba(255,180,0,0.55); cursor: none; }
.credits a:hover { filter: brightness(1.06); }

/* Section below hero */
.section {
  position: relative;
  z-index: 1; /* under floating UI but above background */
  width: 100vw; /* ensure full viewport width, covering right edge */
  background: linear-gradient(180deg, rgba(10,10,10,0.8), rgba(10,10,10,0.92));
  border-top: 3px solid rgba(0,0,0,0.7);
  box-shadow: 0 -10px 30px rgba(0,0,0,0.5);
  min-height: 100vh; /* cover full screen height */
}
.section-inner {
  max-width: 100vw; /* allow inner container to span full width */
  margin: 0 auto;
  padding: 56px 20px 72px;
}
.media-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr; /* make video column wider */
  gap: 28px;
  align-items: start;
}
.video-col {
  display: flex;
  flex-direction: column; /* stack video and buttons */
  align-items: center;
  grid-column: 1;
  width: 100%;
}
.video-embed {
  position: relative;
  width: 100%;
  /* 16:9 aspect ratio */
  padding-top: 56.25%;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 0 0 3px #0b0b0b, 0 16px 28px rgba(0,0,0,0.55);
  max-width: 960px; /* wider video for desktop */
  margin: 0 auto; /* ensure centering inside the block */
}
.text-col { grid-column: 2; margin-top: 0; justify-self: start; max-width: 760px; }
.video-embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.text-col .lede {
  font-size: clamp(16px, 2.6vw, 20px);
  opacity: 0.98;
}
.section h2 {
  margin: 0 0 40px;
  font-family: 'Bangers', cursive;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #ffd24a;
  text-shadow: 0 3px 0 #000, 0 12px 24px rgba(0,0,0,0.55);
  text-align: center;
  font-size: clamp(28px, 5vw, 54px);
}
.section p {
  margin: 0 0 14px;
  line-height: 1.7;
  opacity: 0.92;
}

.btn-row {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
  margin: 24px 0 40px; /* more space from content above */
}

/* Extra spacing in About section */
.text-col .lede { margin-bottom: 24px; }
.text-col p:last-child { margin-bottom: 40px; }

.section h3 {
  margin: 14px 0 8px;
  font-size: clamp(16px, 2.6vw, 22px);
  color: #ffd24a;
  text-shadow: 0 2px 0 #000, 0 8px 16px rgba(0,0,0,0.5);
}

.feature-list {
  margin: 8px 0 16px 18px;
  padding: 0 0 0 6px;
}
.feature-list li { margin: 6px 0; }

/* Modal */
.modal {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 5;
}

.modal[aria-hidden="false"] { display: block; }
.modal[aria-hidden="false"] .modal-card { animation: modal-pop 260ms cubic-bezier(.2,1.1,.2,1); }
@keyframes modal-pop { from { transform: scale(.92); opacity: 0; } to { transform: scale(1); opacity: 1; } }

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.65);
  backdrop-filter: blur(4px) saturate(110%);
}

.modal-card {
  position: relative;
  max-width: 560px;
  margin: 12vh auto 0;
  background:
    linear-gradient(rgba(10,10,10,0.92), rgba(10,10,10,0.9)),
    url('Media/background.png');
  background-size: cover;
  color: #fff;
  border-radius: 20px;
  padding: 26px 26px 30px;
  box-shadow: 0 0 0 4px #0b0b0b, 0 14px 0 rgba(0,0,0,0.65), 0 22px 36px rgba(0,0,0,0.6), 0 0 0 6px rgba(255,180,0,0.08) inset;
  max-height: 80vh;
  overflow: hidden;
  display: grid;
  grid-template-rows: auto 1fr;
}

/* Konfa modal responsive tweaks */
#konfa-modal .modal-card { max-width: 720px; }
@media (min-width: 980px) { #konfa-modal .modal-card { max-width: 860px; padding: 28px 28px 30px; } }
#konfa-modal .btn-row { margin: 16px 0 24px; }
#konfa-modal .konfa-steps h3 { font-size: clamp(16px, 2.4vw, 22px); }
@media (max-width: 640px) {
  #konfa-modal .modal-card { max-width: 96vw; }
  #konfa-modal .form-field input { font-size: 16px; }
}

/* Smaller Konfa copy-steam button */
#konfa-modal .kf-copy-steam {
  padding: 14px 20px;
  font-size: clamp(16px, 3.4vw, 22px);
  border-radius: 10px;
}

/* Inline links in Konfa text: use body color with underline, accent on hover */
#konfa-modal .modal-content p a {
  color: inherit;
  text-decoration: underline;
  text-decoration-color: rgba(255,210,74,0.7);
  text-underline-offset: 3px;
}
#konfa-modal .modal-content p a:hover { color: #ffd24a; }

.modal-card h2 {
  margin: 0 0 10px;
  font-family: 'Bangers', cursive;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #ffd24a;
  text-shadow: 0 4px 0 #000, 0 10px 22px rgba(0,0,0,0.6);
}

/* Konfa form & layout */
.modal-content {
  margin-top: 6px;
  max-height: 100%;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
}
/* Hide scrollbars visually while preserving scroll */
.modal-content::-webkit-scrollbar { width: 0; height: 0; }
.modal-content { scrollbar-width: none; -ms-overflow-style: none; }
.konfa-steps { margin: 0; padding-left: 18px; }
.konfa-steps li { margin: 12px 0 18px; }
.konfa-steps { list-style: none; counter-reset: none; }
.konfa-steps li::marker { content: none; }
.konfa-form { display: grid; gap: 12px; margin-top: 8px; }
.form-field { display: grid; gap: 6px; }
.form-field span { font-size: 14px; opacity: 0.9; }
.form-field input {
  appearance: none;
  width: 100%;
  padding: 12px 12px;
  border-radius: 10px;
  border: 2px solid #222;
  background: #0b0b0b;
  color: #fff;
  box-shadow: 0 0 0 3px #000 inset, 0 10px 20px rgba(0,0,0,0.5);
}
.checkbox-row { display: flex; align-items: center; gap: 10px; margin-top: 4px; }
.checkbox-row input { width: 18px; height: 18px; }

/* Back button for All Socials */
.modal-header { position: relative; padding: 8px 44px 6px; }
.back-btn {
  position: absolute;
  left: 6px;
  top: 10px;
  height: 36px;
  padding: 0 12px;
  border-radius: 8px;
  border: 0;
  font-weight: 700;
  background: #333;
  color: #fff;
  box-shadow: 0 0 0 2px #000 inset, 0 8px 14px rgba(0,0,0,0.45);
  cursor: pointer;
}

.modal-close {
  position: absolute;
  right: 8px;
  top: 8px;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 8px;
  background: #333;
  color: #fff;
  font-size: 22px;
  cursor: pointer;
  box-shadow: 0 0 0 2px #000 inset, 0 8px 14px rgba(0,0,0,0.45);
}

.social-list {
  list-style: none;
  padding: 6px 10px 14px;
  margin: 16px auto 0;
  display: grid;
  gap: 16px;
  max-width: 100%;
  max-height: 100%;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  scrollbar-gutter: auto;
  grid-template-columns: 1fr;
}

/* Hide scrollbars visually while preserving scroll */
.social-list::-webkit-scrollbar { width: 0; height: 0; }
.social-list { scrollbar-width: none; -ms-overflow-style: none; }

.social-list li { position: relative; }
.social-list li::after {
  content: '';
  position: absolute;
  left: 10%;
  right: 10%;
  bottom: -8px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.08), transparent);
  pointer-events: none;
}

.social-list a {
  color: #111;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  padding: 18px 22px;
  border-radius: 18px;
  background: linear-gradient(180deg, #ffd24a, var(--accent));
  box-shadow: 0 0 0 3px #111 inset, 0 12px 0 rgba(0,0,0,0.55), 0 22px 36px rgba(0,0,0,0.55);
  font-family: 'Bangers', cursive;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  cursor: pointer;
}

#all-socials-title { text-align: center; margin: 0; }

.social-list a::before { display: none !important; content: none; }

.social-list a::after {
  content: '›';
  font-size: 22px;
  line-height: 1;
  padding-left: 6px;
  filter: drop-shadow(0 2px 0 rgba(0,0,0,0.5));
  transition: transform 120ms ease;
}

.social-list a:hover { transform: translateY(-2px) scale(1.02); }
.social-list a:hover::after { transform: translateX(2px); }
.social-list a:active { transform: translateY(2px) scale(0.98); box-shadow: 0 8px 0 rgba(0,0,0,0.55), 0 12px 20px rgba(0,0,0,0.45); }
.social-list a:focus-visible { outline: 3px solid #ffe27a; outline-offset: 3px; }

/* Brand color overrides */
.social-list a[href*="discord.gg"] { background: linear-gradient(180deg, #8a96ff, var(--discord)); }
.social-list a[href*="discord.gg"]::before { display: none !important; content: none; }
.social-list a[href*="tiktok.com"] { background: linear-gradient(180deg, #46f7f0, #fe2c55); color: #111; }
.social-list a[href*="tiktok.com"]::before { display: none !important; content: none; }
.social-list a[href*="youtube.com"] { background: linear-gradient(180deg, #ff6b6b, var(--youtube)); }
.social-list a[href*="youtube.com"]::before { display: none !important; content: none; }
.social-list a[href*="instagram.com"] { background: linear-gradient(180deg, #ff8aa5, var(--instagram)); }
.social-list a[href*="instagram.com"]::before { display: none !important; content: none; }
.social-list a[href*="twitch.tv"] { background: linear-gradient(180deg, #b391ff, var(--twitch)); }
.social-list a[href*="twitch.tv"]::before { display: none !important; content: none; }
.social-list a[href*="pinterest.com"] { background: linear-gradient(180deg, #ff6f7e, var(--pinterest)); }
.social-list a[href*="pinterest.com"]::before { display: none !important; content: none; }
.social-list a[href*="t.me"] { background: linear-gradient(180deg, #63cfff, var(--telegram)); }
.social-list a[href*="t.me"]::before { display: none !important; content: none; }
.social-list a[href*="tumblr.com"] { background: linear-gradient(180deg, #5e6f85, var(--tumblr)); color: #f5f5f5; }
.social-list a[href*="tumblr.com"]::before { display: none !important; content: none; }
.social-list a[href*="facebook.com"] { background: linear-gradient(180deg, #6ea5ff, var(--facebook)); }
.social-list a[href*="facebook.com"]::before { display: none !important; content: none; }
.social-list a[href*="x.com"] { background: linear-gradient(180deg, #444444, var(--x)); color: #f5f5f5; }
.social-list a[href*="x.com"]::before { display: none !important; content: none; }
.social-list a[href*="bsky.app"] { background: linear-gradient(180deg, #7cc0ff, var(--bluesky)); }
.social-list a[href*="bsky.app"]::before { display: none !important; content: none; }
.social-list a[href^="mailto:"] { background: linear-gradient(180deg, #ffe27a, #ffb400); }
.social-list a[href^="mailto:"]::before { display: none !important; content: none; }

@media (max-width: 640px) {
  .content { padding: 80px 12px 120px; }
  .hero { margin: 0 auto 16px; width: min(88vw, 560px); }
  .cta-group { gap: 12px; margin-bottom: 8px; }
  .btn { padding: 14px 22px; }
  .btn.cta-steam { padding: 18px 26px; font-size: clamp(20px, 6vw, 28px); }
  .steam-logo-link img { height: clamp(28px, 9vw, 40px); width: auto; }
  .hint { margin-top: 10px; margin-bottom: 18px; }
  .scroll-indicator { bottom: 28px; }
  .modal-card {
    margin: 6vh auto 0;
    max-width: 92vw;
    max-height: 88vh;
    padding: 20px 16px 22px;
    border-radius: 16px;
  }
  .social-list { gap: 12px; }
  /* Konfa modal: use normal system fonts on mobile */
  #konfa-modal .modal-card h2,
  #konfa-modal .konfa-steps h3 {
    font-family: inherit;
    text-transform: none;
    letter-spacing: 0;
  }
  #konfa-modal .btn {
    font-family: inherit;
    text-transform: none;
    letter-spacing: 0;
    font-weight: 700;
  }
}

@media (max-width: 400px) {
  .content { padding-bottom: 140px; }
  .btn { padding: 12px 18px; font-size: 18px; }
  .hint { font-size: 11px; margin-bottom: 20px; }
  .scroll-indicator { bottom: 34px; }
}

/* Two-column socials on wider screens */
@media (min-width: 640px) {
  .social-list { grid-template-columns: 1fr 1fr; }
}

/* Responsive layout for media grid */
@media (max-width: 980px) {
  .media-grid {
    grid-template-columns: 1fr; /* stack */
  }
  .text-col { grid-column: 1; margin-top: 16px; justify-self: center; max-width: 1000px; }
  .video-embed { max-width: 960px; }
}


/* Consent banner */
.consent-banner[hidden] { display: none !important; }
.consent-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 6;
  padding: 12px;
}
.consent-inner {
  max-width: 980px;
  margin: 0 auto;
  background: rgba(15,15,15,0.92);
  border-radius: 16px;
  box-shadow: 0 0 0 3px #0b0b0b, 0 14px 30px rgba(0,0,0,0.6);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 16px 16px 16px 18px;
}
.consent-text h2 {
  margin: 0 0 6px;
  font-family: 'Bangers', cursive;
  letter-spacing: 1px;
  color: #ffd24a;
  text-shadow: 0 3px 0 #000;
}
.consent-text p { margin: 0; font-size: 14px; opacity: 0.9; }
.consent-actions { display: flex; gap: 10px; }
.consent-btn { cursor: pointer !important; }

@media (max-width: 720px) {
  .consent-inner { grid-template-columns: 1fr; gap: 10px; padding: 12px; }
  .consent-text h2 { font-size: 18px; }
  .consent-text p { font-size: 12px; }
  .consent-actions { justify-content: flex-end; gap: 8px; }
  /* Make banner buttons compact on mobile */
  .consent-banner .consent-btn {
    padding: 10px 14px;
    font-size: 14px;
    border-radius: 10px;
    box-shadow: 0 0 0 2px #111 inset, 0 8px 0 rgba(0,0,0,0.5), 0 16px 26px rgba(0,0,0,0.5);
  }
}

/* Extra-small phones: tighten further */
@media (max-width: 480px) {
  .consent-inner { padding: 8px 10px; gap: 8px; }
  .consent-text h2 { font-size: 16px; }
  .consent-text p { font-size: 11px; }
  .consent-banner .consent-btn { padding: 8px 12px; font-size: 13px; border-radius: 8px; }
}
