/* Playcrowniix unique design styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

body {
  background: #020617;
  background-image: radial-gradient(
      circle at 20% 30%,
      rgba(56, 189, 248, 0.08) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 70%,
      rgba(34, 197, 94, 0.08) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 50% 50%,
      rgba(15, 23, 42, 0.5) 0%,
      transparent 100%
    );
  background-attachment: fixed;
  color: #e5e7eb;
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: repeating-linear-gradient(
      0deg,
      transparent,
      transparent 2px,
      rgba(56, 189, 248, 0.02) 2px,
      rgba(56, 189, 248, 0.02) 4px
    ),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 2px,
      rgba(34, 197, 94, 0.02) 2px,
      rgba(34, 197, 94, 0.02) 4px
    );
  pointer-events: none;
  z-index: 0;
}

a {
  text-decoration: none;
  color: #38bdf8;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

a:hover {
  color: #0ea5e9;
  transform: translateY(-1px);
}

header {
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(148, 163, 184, 0.15);
  position: sticky;
  top: 0;
  z-index: 20;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.navbar {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0.85rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: 0.12em;
  color: #e5e7eb;
  font-size: 1.1rem;
  background: linear-gradient(135deg, #e5e7eb 0%, #38bdf8 50%, #22c55e 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  transition: all 0.3s ease;
}

.logo::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #38bdf8, #22c55e);
  transition: width 0.3s ease;
}

.logo:hover::after {
  width: 100%;
}

.nav-links {
  display: flex;
  gap: 1.8rem;
  font-size: 0.95rem;
  font-weight: 500;
}

.nav-links a {
  color: #e5e7eb;
  opacity: 0.85;
  position: relative;
  padding: 0.3rem 0;
}

.nav-links a::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #38bdf8, #22c55e);
  transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-links a:hover::before,
.nav-links a.active::before {
  width: 100%;
}

.nav-links a.active,
.nav-links a:hover {
  opacity: 1;
  color: #38bdf8;
}

.play-btn {
  padding: 0.6rem 1.3rem;
  border-radius: 50px;
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 50%, #4ade80 100%);
  color: #022c22;
  font-weight: 700;
  font-size: 0.9rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(34, 197, 94, 0.3);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.play-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: left 0.5s ease;
}

.play-btn:hover::before {
  left: 100%;
}

.play-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(34, 197, 94, 0.4);
  filter: brightness(1.1);
}

.play-btn:active {
  transform: translateY(0);
}

main {
  flex: 1;
  max-width: 1100px;
  margin: 0 auto;
  padding: 1.5rem 1.25rem 3rem;
  position: relative;
  z-index: 1;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1.6fr);
  gap: 2.5rem;
  align-items: center;
  padding: 3rem 2rem;
  border-radius: 24px;
  background: radial-gradient(
      circle at 0% 0%,
      rgba(29, 40, 58, 0.8) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 100% 100%,
      rgba(15, 23, 42, 0.6) 0%,
      transparent 50%
    ),
    linear-gradient(
      135deg,
      rgba(15, 23, 42, 0.95) 0%,
      rgba(29, 40, 58, 0.85) 100%
    );
  border: 1px solid rgba(148, 163, 184, 0.2);
  margin-top: 1.5rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.hero::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(56, 189, 248, 0.1) 0%,
    transparent 70%
  );
  animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 0.3;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(1.1);
  }
}

.hero h1 {
  font-size: 2.6rem;
  line-height: 1.1;
  margin-bottom: 1rem;
  color: #f9fafb;
  font-weight: 800;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #f9fafb 0%, #e5e7eb 50%, #cbd5f5 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  color: #cbd5f5;
  margin-bottom: 1.5rem;
  max-width: 30rem;
  font-size: 1.05rem;
  line-height: 1.7;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  font-size: 0.85rem;
  color: #9ca3af;
}

.hero-meta span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.8rem;
  background: rgba(15, 23, 42, 0.6);
  border-radius: 20px;
  border: 1px solid rgba(148, 163, 184, 0.2);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.8rem;
  padding: 0.4rem 0.9rem;
  border-radius: 50px;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(56, 189, 248, 0.4);
  color: #e0f2fe;
  margin-bottom: 0.9rem;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 12px rgba(56, 189, 248, 0.2);
}

.hero-badge-dot {
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 8px rgba(34, 197, 94, 0.6);
  animation: blink 2s ease-in-out infinite;
}

@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.hero-visual {
  justify-self: end;
  max-width: 360px;
  width: 100%;
  border-radius: 20px;
  padding: 1.6rem;
  background: radial-gradient(
      circle at 10% 0%,
      rgba(56, 189, 248, 0.25) 0%,
      transparent 55%
    ),
    radial-gradient(
      circle at 100% 100%,
      rgba(34, 197, 94, 0.25) 0%,
      transparent 55%
    ),
    linear-gradient(
      135deg,
      rgba(15, 23, 42, 0.95) 0%,
      rgba(29, 40, 58, 0.9) 100%
    );
  border: 1px solid rgba(148, 163, 184, 0.3);
  box-shadow: 0 24px 50px rgba(15, 23, 42, 0.7),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}

.hero-visual::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(56, 189, 248, 0.15) 0%,
    transparent 70%
  );
  animation: rotate 20s linear infinite;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
  font-size: 0.8rem;
  position: relative;
  z-index: 1;
}

.hero-game-card {
  padding: 0.85rem;
  border-radius: 12px;
  background: rgba(15, 23, 42, 0.95);
  border: 1px solid rgba(148, 163, 184, 0.3);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(10px);
}

.hero-game-card:hover {
  transform: translateY(-3px);
  border-color: rgba(56, 189, 248, 0.5);
  box-shadow: 0 8px 20px rgba(56, 189, 248, 0.2);
  background: rgba(15, 23, 42, 1);
}

.hero-game-title {
  font-weight: 600;
  color: #e5e7eb;
  font-size: 0.85rem;
  margin-bottom: 0.15rem;
}

.hero-game-tag {
  font-size: 0.7rem;
  color: #9ca3af;
}

.hero-label {
  font-size: 0.85rem;
  color: #9ca3af;
  margin-bottom: 0.5rem;
  position: relative;
  z-index: 1;
}

.hero-safe {
  margin-top: 1rem;
  padding: 0.85rem;
  border-radius: 12px;
  background: rgba(22, 101, 52, 0.15);
  border: 1px dashed rgba(34, 197, 94, 0.6);
  font-size: 0.8rem;
  color: #bbf7d0;
  backdrop-filter: blur(10px);
}

.section {
  margin-top: 3rem;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.section-title {
  font-size: 1.4rem;
  color: #e5e7eb;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.section-subtitle {
  font-size: 0.95rem;
  color: #9ca3af;
  max-width: 26rem;
  line-height: 1.6;
}

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

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

.card {
  background: rgba(15, 23, 42, 0.95);
  border-radius: 16px;
  border: 1px solid rgba(148, 163, 184, 0.25);
  padding: 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #38bdf8, #22c55e);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.card:hover::before {
  transform: scaleX(1);
}

.card:hover {
  transform: translateY(-5px);
  border-color: rgba(56, 189, 248, 0.4);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3), 0 0 20px rgba(56, 189, 248, 0.1);
  background: rgba(15, 23, 42, 1);
}

.card-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  background: radial-gradient(
      circle at 30% 0%,
      rgba(56, 189, 248, 0.3) 0%,
      transparent 60%
    ),
    linear-gradient(
      135deg,
      rgba(15, 23, 42, 0.95) 0%,
      rgba(29, 40, 58, 0.9) 100%
    );
  color: #e5e7eb;
  margin-bottom: 0.3rem;
  border: 1px solid rgba(148, 163, 184, 0.2);
  transition: all 0.3s ease;
}

.card:hover .card-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 4px 15px rgba(56, 189, 248, 0.3);
}

.card-title {
  font-weight: 600;
  color: #e5e7eb;
  font-size: 0.98rem;
}

.card-text {
  font-size: 0.87rem;
  color: #cbd5f5;
  line-height: 1.6;
}

.card-meta {
  font-size: 0.75rem;
  color: #6b7280;
}

.card-actions {
  margin-top: 0.8rem;
}

.card-play-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  border: 1px solid rgba(56, 189, 248, 0.6);
  font-size: 0.82rem;
  color: #e0f2fe;
  background: rgba(15, 23, 42, 0.95);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-weight: 500;
}

.card-play-btn:hover {
  background: linear-gradient(
    135deg,
    rgba(56, 189, 248, 0.2) 0%,
    rgba(34, 197, 94, 0.2) 100%
  );
  border-color: rgba(56, 189, 248, 0.8);
  transform: translateX(3px);
  box-shadow: 0 4px 12px rgba(56, 189, 248, 0.3);
}

.badge-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.6rem;
}

.badge {
  font-size: 0.75rem;
  padding: 0.25rem 0.65rem;
  border-radius: 50px;
  border: 1px solid rgba(148, 163, 184, 0.5);
  color: #e5e7eb;
  background: rgba(15, 23, 42, 0.9);
  transition: all 0.3s ease;
}

.badge:hover {
  border-color: rgba(56, 189, 248, 0.6);
  background: rgba(15, 23, 42, 1);
  transform: scale(1.05);
}

.text-muted {
  color: #9ca3af;
  font-size: 0.9rem;
}

.list {
  margin-left: 1.1rem;
  margin-top: 0.4rem;
}

.list li {
  margin-bottom: 0.3rem;
  color: #cbd5f5;
  font-size: 0.87rem;
  line-height: 1.6;
}

.page-title {
  font-size: 1.8rem;
  color: #e5e7eb;
  margin-bottom: 0.7rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.page-intro {
  color: #9ca3af;
  font-size: 0.98rem;
  max-width: 42rem;
  line-height: 1.7;
}

.content-block {
  margin-top: 1.8rem;
  max-width: 48rem;
}

.content-block h2 {
  font-size: 1.15rem;
  color: #e5e7eb;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.content-block p {
  font-size: 0.92rem;
  color: #cbd5f5;
  margin-bottom: 0.6rem;
  line-height: 1.7;
}

.content-block ul {
  margin-left: 1.1rem;
  margin-bottom: 0.7rem;
}

.content-block li {
  font-size: 0.88rem;
  color: #d1d5db;
  margin-bottom: 0.3rem;
  line-height: 1.6;
}

.notice {
  margin-top: 1rem;
  padding: 1rem 1.2rem;
  border-radius: 12px;
  font-size: 0.85rem;
  border: 1px dashed rgba(248, 250, 252, 0.4);
  color: #e5e7eb;
  background: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(10px);
  line-height: 1.6;
}

.notice-warning {
  border-color: rgba(248, 113, 113, 0.6);
  background: rgba(127, 29, 29, 0.25);
  box-shadow: 0 4px 15px rgba(248, 113, 113, 0.1);
}

.notice-success {
  border-color: rgba(74, 222, 128, 0.6);
  background: rgba(22, 101, 52, 0.25);
  box-shadow: 0 4px 15px rgba(74, 222, 128, 0.1);
}

.footer {
  border-top: 1px solid rgba(148, 163, 184, 0.2);
  background: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(20px);
  padding: 1.5rem 1.25rem 2rem;
  margin-top: auto;
  position: relative;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(56, 189, 248, 0.5),
    transparent
  );
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  font-size: 0.8rem;
  color: #9ca3af;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.1rem;
}

.footer-links a {
  color: #9ca3af;
  transition: all 0.3s ease;
  position: relative;
}

.footer-links a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: #38bdf8;
  transition: width 0.3s ease;
}

.footer-links a:hover {
  color: #e5e7eb;
}

.footer-links a:hover::after {
  width: 100%;
}

.footer-safe {
  color: #9ca3af;
  max-width: 52rem;
  line-height: 1.6;
}

.footer-meta {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  flex-wrap: wrap;
  color: #e5e7eb;
}

.form {
  max-width: 32rem;
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.form label {
  font-size: 0.85rem;
  color: #e5e7eb;
  font-weight: 500;
}

.form input,
.form textarea {
  padding: 0.65rem 0.85rem;
  border-radius: 10px;
  border: 1px solid rgba(148, 163, 184, 0.5);
  background: rgba(15, 23, 42, 0.95);
  color: #e5e7eb;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.form input:focus,
.form textarea:focus {
  outline: none;
  border-color: #38bdf8;
  box-shadow: 0 0 0 3px rgba(56, 189, 248, 0.1),
    0 4px 12px rgba(56, 189, 248, 0.2);
  background: rgba(15, 23, 42, 1);
}

.form textarea {
  min-height: 140px;
  resize: vertical;
}

.form button {
  align-self: flex-start;
  padding: 0.65rem 1.4rem;
  border-radius: 50px;
  border: none;
  background: linear-gradient(135deg, #38bdf8, #0ea5e9);
  color: #0f172a;
  font-weight: 600;
  font-size: 0.92rem;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 15px rgba(56, 189, 248, 0.3);
}

.form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(56, 189, 248, 0.4);
  filter: brightness(1.1);
}

.table-like {
  border-radius: 12px;
  border: 1px solid rgba(148, 163, 184, 0.3);
  overflow: hidden;
  font-size: 0.87rem;
  margin-top: 1rem;
  backdrop-filter: blur(10px);
}

.table-row {
  display: flex;
  padding: 0.65rem 1rem;
  border-bottom: 1px solid rgba(51, 65, 85, 0.6);
  background: rgba(15, 23, 42, 0.95);
  transition: background 0.3s ease;
}

.table-row:nth-child(even) {
  background: rgba(15, 23, 42, 0.85);
}

.table-row:hover {
  background: rgba(15, 23, 42, 1);
}

.table-label {
  width: 9rem;
  color: #9ca3af;
  font-weight: 500;
}

.table-value {
  flex: 1;
  color: #e5e7eb;
}

/* Contact page layout helpers */
.contact-layout {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.contact-main {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 2.5rem;
  align-items: flex-start;
}

/* Toast notification */
.toast {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 50;
  min-width: 240px;
  max-width: 340px;
  padding: 0.9rem 1.1rem;
  border-radius: 12px;
  background: rgba(22, 163, 74, 0.95);
  color: #ecfdf5;
  font-size: 0.87rem;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  opacity: 0;
  transform: translateY(10px) scale(0.95);
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(10px);
}

.toast-show {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.toast-icon {
  font-size: 1.1rem;
}

.toast-close {
  margin-left: auto;
  background: transparent;
  border: none;
  color: #bbf7d0;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.toast-close:hover {
  color: #ffffff;
  transform: scale(1.1);
}

/* Age & cookie consent variant */
.toast-age {
  background: rgba(15, 23, 42, 0.98);
  color: #e5e7eb;
  border: 1px solid rgba(148, 163, 184, 0.4);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
}

.toast-body {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.toast-links {
  font-size: 0.77rem;
  color: #9ca3af;
}

.toast-links a {
  color: #bfdbfe;
}

.toast-links a:hover {
  color: #e0f2fe;
}

.toast-actions {
  margin-top: 0.3rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.toast-btn {
  border-radius: 50px;
  border: 1px solid transparent;
  padding: 0.4rem 0.9rem;
  font-size: 0.8rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.toast-btn-primary {
  background: #22c55e;
  border-color: #16a34a;
  color: #022c22;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(34, 197, 94, 0.3);
}

.toast-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(34, 197, 94, 0.4);
}

.toast-btn-secondary {
  background: transparent;
  border-color: rgba(148, 163, 184, 0.7);
  color: #e5e7eb;
}

.toast-btn-secondary:hover {
  border-color: rgba(148, 163, 184, 1);
  background: rgba(148, 163, 184, 0.1);
}

.toast-btn-primary[disabled] {
  opacity: 0.55;
  cursor: not-allowed;
}

.toast-checkbox-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.77rem;
  color: #cbd5f5;
  margin-top: 0.3rem;
}

.toast-checkbox-row input[type="checkbox"] {
  width: 1rem;
  height: 1rem;
  accent-color: #22c55e;
  cursor: pointer;
}

/* Overlay used while age verification is pending */
.age-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(8px);
  z-index: 40;
  display: none;
  transition: opacity 0.3s ease;
}

.age-overlay-show {
  display: block;
}

@media (max-width: 900px) {
  .contact-main {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* Tablet layout */
@media (max-width: 900px) {
  .hero {
    grid-template-columns: minmax(0, 1fr);
    padding: 2rem 1.5rem;
    margin-top: 1.25rem;
  }
  .hero-visual {
    order: -1;
    justify-self: stretch;
    max-width: none;
    margin-bottom: 1.5rem;
  }
  .section-header {
    flex-direction: column;
    align-items: flex-start;
  }
  .grid-3 {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }
  main {
    padding: 1.25rem 1rem 2.5rem;
  }
  .content-block {
    max-width: 100%;
  }
  .form {
    max-width: 100%;
  }
}

/* Mobile layout */
@media (max-width: 640px) {
  .navbar {
    padding: 0.8rem 1rem;
  }
  .nav-links {
    display: none;
  }
  .hero {
    margin-top: 1.1rem;
    padding: 1.5rem 1.2rem;
  }
  .hero h1 {
    font-size: 1.95rem;
  }
  .grid-3,
  .grid-2 {
    grid-template-columns: minmax(0, 1fr);
  }
  .footer-inner {
    font-size: 0.78rem;
  }
  main {
    padding: 1.2rem 0.9rem 2.2rem;
  }
  .section {
    margin-top: 2.2rem;
  }
  .page-title {
    font-size: 1.5rem;
  }
  .card {
    padding: 1.2rem;
  }
}
