/* Hunters Gateway — Split-screen division selector */
:root {
  --red: #e31e24;
  --red-deep: #8f1219;
  --teal: #006064;
  --teal-deep: #062e33;
  --ink: #0a0f14;
  --white: #ffffff;
  --font-display: "Syne", system-ui, sans-serif;
  --font-body: "DM Sans", system-ui, sans-serif;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  height: 100%;
}

body {
  font-family: var(--font-body);
  background: var(--ink);
  color: var(--white);
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

/* Top bar */
.gw-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  padding: 1.75rem 1.5rem 1.25rem;
  text-align: center;
}

.gw-brand {
  height: 74px;
  width: auto;
  border-radius: 14px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5);
}

.gw-tag {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.02em;
}

/* Split layout */
.gw-split {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  min-height: 66vh;
  gap: 4px;
  padding: 0 4px;
}

.gw-panel {
  position: relative;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  border-radius: 20px;
  isolation: isolate;
}

.gw-panel-media {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.9s var(--ease), filter 0.9s var(--ease);
  filter: saturate(0.85);
  z-index: -2;
}

.gw-panel:hover .gw-panel-media {
  transform: scale(1.06);
  filter: saturate(1.05);
}

.gw-panel-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  transition: opacity 0.6s var(--ease);
}

.gw-panel--digital .gw-panel-overlay {
  background: linear-gradient(200deg, rgba(6, 46, 51, 0.55) 0%, rgba(6, 46, 51, 0.92) 72%, #041e22 100%);
}

.gw-panel--events .gw-panel-overlay {
  background: linear-gradient(200deg, rgba(143, 18, 25, 0.45) 0%, rgba(143, 18, 25, 0.9) 72%, #5c0a10 100%);
}

.gw-panel-content {
  position: relative;
  padding: clamp(1.5rem, 4vw, 3rem);
  width: 100%;
  transform: translateY(0.5rem);
  transition: transform 0.6s var(--ease);
}

.gw-panel:hover .gw-panel-content {
  transform: translateY(0);
}

.gw-panel-logo {
  height: 84px;
  width: auto;
  margin-bottom: 1.25rem;
  filter: drop-shadow(0 6px 24px rgba(0, 0, 0, 0.45));
}

.gw-panel-logo--rounded {
  border-radius: 16px;
}

.gw-panel h2 {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3.4vw, 2.6rem);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -0.02em;
  margin-bottom: 0.6rem;
}

.gw-panel-sub {
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 1.1rem;
}

.gw-panel-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1.6rem;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.85);
}

.gw-panel-list li::before {
  content: "›";
  margin-right: 0.55rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.6);
}

.gw-panel-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.9rem 1.9rem;
  border-radius: 100px;
  font-weight: 700;
  font-size: 0.95rem;
  background: var(--white);
  transition: gap 0.35s var(--ease), transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.gw-panel--digital .gw-panel-cta {
  color: var(--teal-deep);
}

.gw-panel--events .gw-panel-cta {
  color: var(--red-deep);
}

.gw-panel:hover .gw-panel-cta {
  gap: 1rem;
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
}

.gw-panel-cta svg {
  width: 18px;
  height: 18px;
}

/* Center emblem */
.gw-divider {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 5;
  pointer-events: none;
}

.gw-divider-badge {
  width: 78px;
  height: 78px;
  border-radius: 50%;
  background: var(--ink);
  border: 2px solid rgba(255, 255, 255, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 8px rgba(10, 15, 20, 0.55), 0 8px 40px rgba(0, 0, 0, 0.6);
}

.gw-divider-badge svg {
  width: 38px;
  height: 38px;
  color: var(--white);
}

/* Footer */
.gw-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 1.2rem 2rem;
  font-size: 0.83rem;
  color: rgba(255, 255, 255, 0.45);
}

.gw-footer a {
  color: rgba(255, 255, 255, 0.65);
  transition: color 0.3s;
}

.gw-footer a:hover {
  color: var(--white);
}

/* Responsive */
@media (max-width: 820px) {
  .gw-split {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .gw-panel {
    min-height: 60vh;
  }

  .gw-divider {
    display: none;
  }

  .gw-brand {
    height: 60px;
  }

  .gw-footer {
    justify-content: center;
    text-align: center;
  }
}
