*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --black:        #0d0d0d;
  --white:        #ffffff;
  --grey-5:       #f4f4f0;
  --grey-10:      #eaeae4;
  --grey-80:      #2a2a2a;
  --palette-1:    #f0ede6;
  --warning-bg:   #1a2636;
  --accent:       #c8a96e;
  --accent-dark:  #a8884e;
  --text-body:    #2e2e2e;
  --text-muted:   #6b6b6b;
  --font-head:    'Unbounded', sans-serif;
  --font-body:    'Roboto', sans-serif;
  --max-width:    1140px;
  --transition:   0.25s ease;
  --radius:       6px;
}
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--text-body);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a   { text-decoration: none; color: inherit; transition: color var(--transition); }
ul  { list-style: none; }
.sheet {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}
.grey-bg  { background-color: var(--grey-5); }
.black-bg { background-color: var(--black); color: var(--white); }
.grey-80  { background-color: var(--grey-80); color: var(--white); }
.section-title {
  font-family: var(--font-head);
  font-size: clamp(1.875rem, 3vw, 3rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 30px;
  color: inherit;
  letter-spacing: -0.5px;
}
.btn {
  display: inline-block;
  padding: 13px 32px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  border-radius: var(--radius);
  transition: background var(--transition), color var(--transition), transform var(--transition), box-shadow var(--transition);
  letter-spacing: 0.4px;
}
.btn-black {
  background: var(--accent);
  color: var(--black);
}
.btn-black:hover {
  background: var(--accent-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(200, 169, 110, 0.35);
}
.btn-full { width: 100%; text-align: center; padding: 14px; }
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 9000;
  background: rgba(13, 13, 13, 0.97);
  min-height: 76px;
  border-bottom: 1px solid rgba(200, 169, 110, 0.18);
  backdrop-filter: blur(8px);
}
.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.site-logo {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.3px;
  white-space: nowrap;
}
.site-logo span {
  color: var(--accent);
}
.main-nav ul {
  display: flex;
  gap: 2px;
  align-items: center;
}
.main-nav a {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: rgba(255,255,255,0.78);
  padding: 10px 18px;
  display: block;
  transition: color var(--transition);
  border-radius: var(--radius);
}
.main-nav a:hover { color: var(--accent); }
.hamburger-btn {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  cursor: pointer;
  padding: 8px;
  flex-shrink: 0;
}
.offcanvas-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.80);
  z-index: 9100;
}
.offcanvas-overlay.active { display: block; }
.offcanvas-menu {
  position: fixed;
  top: 0; right: -320px;
  width: 280px;
  height: 100%;
  background: #141414;
  z-index: 9200;
  transition: right 0.3s ease;
  padding: 64px 28px 28px;
  overflow-y: auto;
  border-left: 1px solid rgba(200,169,110,0.15);
}
.offcanvas-menu.active { right: 0; }
.offcanvas-close {
  position: absolute;
  top: 18px; right: 22px;
  background: none;
  border: none;
  color: rgba(255,255,255,0.70);
  font-size: 1.4rem;
  cursor: pointer;
  transition: color var(--transition);
}
.offcanvas-close:hover { color: var(--accent); }
.offcanvas-menu ul { display: flex; flex-direction: column; gap: 0; }
.offcanvas-menu a {
  display: block;
  font-size: 1.1rem;
  color: rgba(255,255,255,0.80);
  padding: 15px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: color var(--transition), padding-left var(--transition);
}
.offcanvas-menu a:hover {
  color: var(--accent);
  padding-left: 6px;
}
.section-hero {
  padding-top: 76px;
  min-height: 665px;
  background-image:
    linear-gradient(to bottom, rgba(13,13,13,0.55), rgba(13,13,13,0.70)),
    url("https://pureluckhaven.com/wp-content/themes/pureluckhaven-com/img/hero.png");
  background-size: cover;
  background-position: 50% 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.section-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(to right, transparent, var(--accent), transparent);
}
.hero-wrapper {
  max-width: var(--max-width);
  width: 100%;
  margin: 0 auto;
  padding: 60px 20px;
}
.hero-content {
  min-height: 340px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.hero-title {
  font-family: var(--font-head);
  font-size: clamp(1.875rem, 4vw, 3.2rem);
  font-weight: 700;
  color: var(--white);
  margin: 0 10px 20px;
  line-height: 1.2;
  letter-spacing: -0.5px;
}
.hero-title em {
  color: var(--accent);
  font-style: normal;
}
.hero-subtitle {
  max-width: 680px;
  font-size: 1.05rem;
  color: rgba(255,255,255,0.80);
  line-height: 1.8;
  margin: 0 auto 44px;
}
.section-warning {
  background: var(--warning-bg);
  color: var(--white);
  padding: 64px 20px;
  text-align: center;
  border-top: 3px solid var(--accent);
}
.warning-container {
  max-width: 800px;
  margin: 0 auto;
}
.section-warning h2 {
  font-family: var(--font-head);
  font-size: clamp(1.4rem, 3vw, 1.875rem);
  font-weight: 700;
  margin-bottom: 28px;
  color: var(--accent);
  letter-spacing: -0.3px;
}
.section-warning p {
  font-size: 0.97rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.72);
  margin-bottom: 18px;
}
.section-warning p:last-child { margin-bottom: 0; }
.section-split { overflow: hidden; }
.split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 628px;
}
.split-text {
  padding: 60px 90px 60px 90px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--white);
}
.section-challenges .split-text {
  background: var(--grey-5);
  padding: 30px 90px 30px 40px;
}
.split-text h2 {
  font-family: var(--font-head);
  font-size: clamp(1.875rem, 3vw, 2.8rem);
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
  letter-spacing: -0.5px;
  color: var(--black);
}
.split-text p {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 14px;
}
.split-text .btn { margin-top: 20px; align-self: flex-start; }
.split-image {
  min-height: 628px;
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  filter: brightness(0.92);
  transition: filter 0.4s ease;
}
.split-image:hover { filter: brightness(1); }
.section-features {
  padding: 80px 0;
  background: var(--white);
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, calc(33.3333% - 20px));
  gap: 30px;
  margin-top: 24px;
  min-height: 235px;
}
.feature-item {
  padding: 36px 28px;
  text-align: center;
  border-radius: var(--radius);
  border: 1px solid var(--grey-10);
  background: var(--grey-5);
  transition: box-shadow var(--transition), transform var(--transition);
}
.feature-item:hover {
  box-shadow: 0 8px 28px rgba(0,0,0,0.08);
  transform: translateY(-4px);
}
.feature-item h3 {
  font-family: var(--font-head);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--accent);
  margin: 8px auto 0;
  text-align: center;
  line-height: 1;
}
.feature-item h6 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  color: var(--black);
  margin: 18px auto 0;
  text-align: center;
}
.feature-item p {
  font-size: 0.93rem;
  color: var(--text-muted);
  margin: 12px auto 0;
  text-align: center;
  line-height: 1.7;
}
.section-logos {
  background-color: var(--palette-1);
  padding: 0;
  border-top: 1px solid rgba(0,0,0,0.06);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.logos-grid {
  display: grid;
  grid-template-columns: repeat(5, calc(20% - 8px));
  gap: 10px;
  min-height: 123px;
  padding: 40px 0;
}
.logo-cell {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 20px;
}
.logo-cell img {
  height: 70px;
  width: 159px;
  object-fit: contain;
  opacity: 0.45;
  transition: opacity var(--transition), filter var(--transition);
  display: block;
  filter: grayscale(1);
}
.logo-cell:hover img {
  opacity: 0.85;
  filter: grayscale(0);
}
.section-games {
  padding: 80px 20px;
  background: var(--black);
}
.games-header {
  text-align: center;
  margin-bottom: 48px;
}
.games-header h2 {
  font-family: var(--font-head);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--white);
  letter-spacing: -0.4px;
}
.games-header p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.55);
}
.games-header p strong { color: var(--accent); }
.games-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  max-width: var(--max-width);
  margin: 0 auto;
}
.game-thumb {
  width: 22%;
  cursor: pointer;
  border-radius: 10px;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
  border: 1px solid rgba(200,169,110,0.15);
}
.game-thumb:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(200,169,110,0.25);
  border-color: var(--accent);
}
.game-thumb img {
  width: 100%;
  height: 100%;
  max-height: 260px;
  object-fit: cover;
  display: block;
  border-radius: 10px;
  transition: filter 0.3s ease;
}
.game-thumb:hover img { filter: brightness(1.08); }
.game-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}
.game-modal.open { display: flex; }
.game-modal-inner {
  background: var(--white);
  width: 90%;
  max-width: 900px;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 24px 64px rgba(0,0,0,0.50);
}
.game-modal-header {
  padding: 15px 20px;
  font-size: 1.2rem;
  font-weight: 700;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #0d0d0d;
  color: var(--white);
  border-bottom: 2px solid var(--accent);
}
.game-modal-close {
  cursor: pointer;
  font-size: 1.2rem;
  line-height: 1;
  color: rgba(255,255,255,0.65);
  transition: color var(--transition);
}
.game-modal-close:hover { color: var(--accent); }
#gameIframe {
  width: 100%;
  height: 500px;
  border: none;
  display: block;
}
.section-team {
  padding: 80px 0;
  background: #0f0f0f;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, calc(33.3333% - 6.67px));
  gap: 10px;
}
.team-member {
  padding: 36px 28px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: background var(--transition);
  border-radius: var(--radius);
}
.team-member:hover { background: rgba(255,255,255,0.04); }
.team-member img {
  width: 200px;
  height: 200px;
  object-fit: cover;
  margin: 0 auto;
  display: block;
  border-radius: 50%;
  border: 3px solid rgba(200,169,110,0.30);
  transition: border-color var(--transition);
}
.team-member:hover img { border-color: var(--accent); }
.team-member h5 {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin: 20px 0 0;
  letter-spacing: 0.2px;
}
.team-member p {
  font-size: 0.88rem;
  color: var(--accent);
  margin: 6px 0 0;
  letter-spacing: 0.3px;
}
.section-services {
  padding: 80px 0;
  background: var(--grey-5);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  min-height: 735px;
}
.service-card {
  padding: 48px 44px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--grey-10);
  transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
}
.service-card:hover {
  box-shadow: 0 10px 36px rgba(0,0,0,0.08);
  transform: translateY(-4px);
  border-color: var(--accent);
}
.service-card h5 {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.service-card h3 {
  font-family: var(--font-head);
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  font-weight: 700;
  color: var(--black);
  margin-bottom: 16px;
  line-height: 1.3;
  letter-spacing: -0.3px;
}
.service-card h6 {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--text-muted);
  line-height: 1.75;
}
.section-gallery { line-height: 0; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 4px;
  width: 100%;
  min-height: 803px;
  background: var(--black);
}
.gallery-cell {
  overflow: hidden;
  position: relative;
}
.gallery-cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease, filter 0.5s ease;
  filter: brightness(0.75) saturate(0.85);
}
.gallery-cell:hover img {
  transform: scale(1.06);
  filter: brightness(1) saturate(1.1);
}
.section-accordion {
  padding: 80px 0;
  background: var(--grey-5);
}
.accordion-list {
  max-width: var(--max-width);
  margin: 30px auto 60px;
  border-top: 1px solid #d8d8d0;
}
.accordion-item {
  border-bottom: 1px solid #d8d8d0;
}
.accordion-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 20px 30px 20px 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-head);
  font-size: clamp(0.95rem, 1.5vw, 1.15rem);
  font-weight: 700;
  color: var(--black);
  text-align: left;
  transition: color var(--transition);
  letter-spacing: -0.2px;
}
.accordion-link:hover { color: var(--accent); }
.accordion-icon {
  fill: var(--accent);
  flex-shrink: 0;
  margin-left: 16px;
  transition: transform var(--transition);
}
.accordion-item.open .accordion-icon { transform: rotate(180deg); }
.accordion-pane {
  display: none;
  padding: 0 30px 0 0;
}
.accordion-item.open .accordion-pane { display: block; }
.accordion-pane p {
  font-size: 0.97rem;
  color: var(--text-muted);
  line-height: 1.8;
  padding: 0 207px 30px 0;
}
.section-testimonial {
  min-height: 496px;
  background-image:
    linear-gradient(to bottom, rgba(13,13,13,0.60), rgba(13,13,13,0.60)),
    url("https://pureluckhaven.com/wp-content/themes/pureluckhaven-com/img/img9.png");
  background-size: cover;
  background-position: 50% 50%;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  position: relative;
}
.section-testimonial::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(to right, transparent, var(--accent), transparent);
}
.section-testimonial .sheet {
  padding: 60px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.testimonial-avatar {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 22px;
  border: 3px solid var(--accent);
}
.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.testimonial-quote {
  max-width: 640px;
  font-size: 1.05rem;
  line-height: 1.85;
  color: rgba(255,255,255,0.88);
  margin: 0 auto 36px;
  font-style: italic;
}
.testimonial-name {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--accent);
  margin-bottom: 6px;
}
.testimonial-role {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-style: italic;
  color: rgba(255,255,255,0.55);
  font-weight: 400;
}
.section-stats {
  padding: 80px 0;
  background: var(--black);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, calc(33.3333% - 20px));
  gap: 30px;
  min-height: 287px;
}
.stat-cell {
  padding: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.stat-cell:last-child { border-right: none; }
.stat-number {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 4rem);
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin: 0;
}
.stat-cell h5 {
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--white);
  margin: 18px 0 0;
  letter-spacing: 0.3px;
}
.stat-cell p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.45);
  margin: 8px 0 0;
}
.section-contact {
  min-height: 714px;
  background-image:
    linear-gradient(to bottom, rgba(13,13,13,0.50), rgba(13,13,13,0.60)),
    url("https://pureluckhaven.com/wp-content/themes/pureluckhaven-com/img/img10.png");
  background-size: cover;
  background-position: 50% 50%;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
}
.contact-overlay {
  width: 100%;
  max-width: var(--max-width);
  display: flex;
  justify-content: center;
}
.contact-box {
  background: rgba(255,255,255,0.94);
  border-radius: 10px;
  padding: 48px 60px;
  width: 720px;
  max-width: 100%;
  box-shadow: 0 20px 60px rgba(0,0,0,0.30);
  border-top: 4px solid var(--accent);
}
.contact-box h2 {
  font-family: var(--font-head);
  font-size: clamp(1.4rem, 3vw, 1.875rem);
  font-weight: 700;
  text-align: center;
  color: var(--black);
  margin-bottom: 28px;
  letter-spacing: -0.4px;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.form-group {
  margin-bottom: 14px;
}
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 5px;
  letter-spacing: 0.3px;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 11px 14px;
  border: none;
  border-bottom: 2px solid #d4d4cc;
  background: rgba(244,244,240,0.70);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--black);
  outline: none;
  transition: border-color var(--transition), background var(--transition);
  resize: vertical;
  border-radius: 0;
}
.form-group input:focus,
.form-group textarea:focus {
  border-bottom-color: var(--accent);
  background: rgba(244,244,240,1);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #aaa;
}
.form-success,
.form-error {
  display: none;
  text-align: center;
  padding: 10px;
  font-size: 0.9rem;
  margin-top: 8px;
  border-radius: var(--radius);
}
.form-success { background: #d4edda; color: #155724; }
.form-error   { background: #f8d7da; color: #721c24; }
.site-footer {
  background-color: #111111;
  color: var(--white);
  text-align: center;
  border-top: 1px solid rgba(200,169,110,0.20);
}
.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  min-height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
}
.footer-copy {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
}
.footer-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 28px;
  padding: 16px 20px;
  border-top: 1px solid rgba(255,255,255,0.07);
}
.footer-links a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.45);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--accent); }
@media (max-width: 1199px) {
  .split-text { padding: 60px 50px; }
  .section-challenges .split-text { padding: 30px 30px 30px 50px; }
  .split-layout { min-height: 518px; }
  .split-image  { min-height: 518px; }
  .section-hero { min-height: 548px; }
  .gallery-grid { min-height: 662px; }
  .accordion-pane p { padding-right: 30px; }
}
@media (max-width: 991px) {
  .features-grid {
    grid-template-columns: repeat(2, calc(50% - 15px));
  }
  .team-grid {
    grid-template-columns: repeat(2, calc(50% - 5px));
  }
  .gallery-grid {
    grid-template-columns: repeat(2, auto);
    min-height: 1141px;
  }
  .stats-grid {
    grid-template-columns: repeat(2, calc(50% - 15px));
  }
  .section-hero { min-height: 420px; }
  .split-text h2 { font-size: 2.1rem; }
  .section-challenges .split-text { padding-right: 30px; padding-left: 49px; }
}
@media (max-width: 767px) {
  .main-nav { display: none; }
  .hamburger-btn { display: flex; }
  .split-layout { grid-template-columns: 1fr; min-height: auto; }
  .split-image  { min-height: 480px; order: -1; }
  .split-text   { padding: 40px 30px; }
  .section-challenges .split-layout .split-image { order: -1; }
  .section-challenges .split-text { padding: 30px; }
  .split-text .btn { align-self: center; }
  .features-grid  { grid-template-columns: 1fr; }
  .logos-grid     { grid-template-columns: repeat(2, 1fr); }
  .games-grid     { gap: 16px; }
  .game-thumb     { width: calc(50% - 8px); }
  .team-grid      { grid-template-columns: repeat(2, calc(50% - 5px)); }
  .services-grid  { grid-template-columns: 1fr; min-height: auto; }
  .gallery-grid   { grid-template-columns: 1fr; min-height: auto; }
  .stats-grid     { grid-template-columns: 1fr; }
  .contact-box    { padding: 30px 20px; }
  .accordion-link { font-size: 1rem; }
  .section-hero   { min-height: 315px; }
  .hero-subtitle  { max-width: 90%; }
  .stat-cell      { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .stat-cell:last-child { border-bottom: none; }
}
@media (max-width: 575px) {
  .logos-grid  { grid-template-columns: repeat(2, 1fr); }
  .game-thumb  { width: 100%; }
  .team-grid   { grid-template-columns: 1fr; }
  .section-hero    { min-height: 198px; }
  .hero-title      { font-size: 1.875rem; }
  .section-testimonial { background-attachment: scroll; }
  .section-contact     { background-attachment: scroll; }
}
.page-hero {
  padding-top: 76px;
  min-height: 280px;
  background-image:
    linear-gradient(to bottom, rgba(13, 13, 13, 0.75), rgba(13, 13, 13, 0.75)),
    url("https://pureluckhaven.com/wp-content/themes/pureluckhaven-com/img/hero.png");
  background-size: cover;
  background-position: 50% 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-bottom: 3px solid var(--accent);
}
.page-hero-inner {
  max-width: 720px;
  padding: 60px 24px;
  color: #ffffff;
}
.page-hero-inner h1 {
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(1.75rem, 4vw, 3rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 16px;
  line-height: 1.2;
  letter-spacing: -0.5px;
}
.page-hero-inner p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.75;
  max-width: 560px;
  margin: 0 auto;
}
.legal-main {
  background: #ffffff;
  padding: 72px 0 80px;
}
.legal-container {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 28px;
}
.legal-intro {
  background: var(--grey-5);
  border-left: 4px solid var(--accent);
  padding: 28px 32px;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin-bottom: 52px;
}
.legal-intro p {
  font-size: 1rem;
  color: #444444;
  line-height: 1.8;
  margin-bottom: 12px;
}
.legal-intro p:last-child { margin-bottom: 0; }
.legal-section {
  margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid #e4e4de;
}
.legal-section:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}
.legal-section h2 {
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 700;
  color: var(--black);
  margin-bottom: 20px;
  line-height: 1.3;
  position: relative;
  padding-bottom: 12px;
  letter-spacing: -0.3px;
}
.legal-section h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--accent);
}
.legal-section p {
  font-size: 0.97rem;
  color: #444444;
  line-height: 1.85;
  margin-bottom: 16px;
}
.legal-section p:last-child { margin-bottom: 0; }
.legal-list {
  margin: 16px 0 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.legal-list li {
  font-size: 0.97rem;
  color: #444444;
  line-height: 1.75;
  list-style: disc;
  padding-left: 6px;
}
.legal-list li strong {
  color: var(--black);
  font-weight: 700;
}
.legal-section a,
.legal-intro a {
  color: var(--accent-dark);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s ease;
}
.legal-section a:hover,
.legal-intro a:hover {
  color: var(--black);
}
.legal-contact-block {
  background: var(--grey-5);
  border-radius: var(--radius);
  padding: 36px 40px;
  border-bottom: none;
  margin-top: 8px;
  border-left: 4px solid var(--accent);
}
.legal-contact-block h2 { color: var(--black); }
.legal-contact-block p  { color: #444444; }
@media (max-width: 767px) {
  .legal-main       { padding: 48px 0 56px; }
  .legal-container  { padding: 0 18px; }
  .legal-intro      { padding: 20px 22px; }
  .legal-contact-block { padding: 28px 22px; }
  .page-hero        { min-height: 220px; }
  .page-hero-inner  { padding: 48px 18px; }
}
@media (max-width: 480px) {
  .page-hero-inner h1 { font-size: 1.5rem; }
  .legal-section h2   { font-size: 1.1rem; }
}