:root {
  --bg: #131111;
  --fg: #ede6e4;
  --accent: #ec564d;
  --secondary: #f4bc36;
  --border-subtle: rgba(237, 230, 228, 0.16);
  --header-height: 100px;
  --font-size-body: 19px;
  --font-body: "M PLUS Code Latin", monospace;
  --font-headline: "Noto Serif", serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-optical-sizing: auto;
  font-variation-settings: "wdth" 100;
  font-size: var(--font-size-body);
  background: var(--bg);
  color: var(--fg);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a {
  color: inherit;
  text-decoration: none;
}

h1,
h2,
h3,
.eyebrow,
.tagline,
.working-line-main {
  font-family: var(--font-headline);
}

p {
  margin: 0 0 24px;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--header-height);
  display: flex;
  align-items: center;
  transition: background-color 0.22s ease, border-color 0.22s ease, backdrop-filter 0.22s ease;
  background: transparent;
  pointer-events: none;
}

.site-header.is-scrolled {
  background: linear-gradient(to bottom, rgba(19, 17, 17, 0.95), rgba(19, 17, 17, 0));
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
  gap: 24px;
}

.header-tools {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-left: auto;
  pointer-events: auto;
}

.logo {
  display: inline-flex;
  align-items: center;
  min-height: 70px;
  transform: translateY(15px);
  transition: transform 0.5s ease;
  pointer-events: auto;
}

.site-header.is-scrolled .logo {
  transform: translateY(0);
}

.logo img {
  display: block;
  width: auto;
  height: 70px;
  max-width: min(250px, 48vw);
  -webkit-user-select: none;
  user-select: none;
  -webkit-user-drag: none;
  transform-origin: center center;
  transition: transform 0.5s ease;
}

.site-header.is-scrolled .logo img {
  transform: scale(0.885714);
}

.locale-switcher {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px;
  background: rgba(19, 17, 17, 0.7);
  border: 1px solid var(--border-subtle);
  border-radius: 999px;
  backdrop-filter: blur(8px);
}

.locale-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  padding: 8px 12px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 999px;
  color: rgba(237, 230, 228, 0.78);
  transition: background-color 0.2s ease, color 0.2s ease;
}

.locale-link:hover {
  color: var(--fg);
}

.locale-link.is-active {
  color: var(--bg);
  background: var(--secondary);
}

.locale-suggestion {
  position: sticky;
  top: 0;
  z-index: 60;
  padding: 12px 18px 0;
}

.locale-suggestion-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: rgba(244, 188, 54, 0.92);
  color: var(--bg);
  border: 1px solid rgba(19, 17, 17, 0.15);
  box-shadow: 10px 8px 0 #000;
}

.locale-suggestion-text {
  margin: 0;
  font-size: 15px;
  font-weight: 600;
}

.locale-suggestion-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.locale-suggestion-link,
.locale-suggestion-dismiss {
  font: inherit;
  font-size: 14px;
  font-weight: 700;
  border: 0;
  cursor: pointer;
  padding: 8px 12px;
}

.locale-suggestion-link {
  background: var(--bg);
  color: var(--fg);
}

.locale-suggestion-dismiss {
  background: transparent;
  color: rgba(19, 17, 17, 0.78);
}

.hero {
  position: relative;
  width: 100%;
  min-height: 97vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  margin-top: calc(-1 * var(--header-height));
  padding-top: var(--header-height);
  isolation: isolate;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -3;
  background-image: url("/Assets/img/Hero_Backgroud__Uraz_the_Journalist.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center top;
}

.hero-inner {
  width: 100%;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: stretch;
  min-height: calc(97vh - var(--header-height));
  gap: 24px;
}

.hero-spacer {
  position: relative;
  min-height: clamp(440px, 72vh, 760px);
  align-self: stretch;
  overflow: visible;
}

.hero-character {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%) scale(1.1);
  transform-origin: center bottom;
  width: min(92%, 630px);
  max-height: min(72vh, 760px);
  height: auto;
  display: block;
  object-fit: contain;
  object-position: center bottom;
}

.hero-content {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 15px;
  width: 100%;
  justify-self: end;
  text-align: center;
  transform: translateY(-56px);
}

.eyebrow {
  margin: 0 0 16px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
}

.game-logo {
  width: 100%;
  max-width: 360px;
}

.game-logo img {
  width: 100%;
  height: auto;
  display: block;
  -webkit-user-select: none;
  user-select: none;
  -webkit-user-drag: none;
}

.tagline {
  margin: 0 0 10px;
  font-size: clamp(18px, 2.3vw, 26px);
  font-weight: 600;
  color: var(--fg);
}

.hero-support {
  margin: 0 0 28px;
  color: rgba(237, 230, 228, 0.88);
}

.btn {
  border-radius: 3px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font: inherit;
  font-weight: 700;
  font-size: 19px;
  color: var(--bg);
  background: var(--secondary);
  border: 5px solid var(--fg);
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.btn:hover {
  background: var(--secondary);
}

.btn:active {
  transform: translateY(1px);
}

.btn-asym {
  position: relative;
  height: 62px;
  padding: 0 32px;
  border: 0;
  border-radius: 0;
  background: var(--fg);
  color: var(--bg);
  box-shadow: 10px 8px 0 #000;
  transform: skewX(-8deg) rotate(-1deg);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  width: auto;
  overflow: visible;
}

.hero .btn-asym {
  width: min(100%, 340px);
}

.btn-asym::before {
  content: "";
  position: absolute;
  inset: 8px;
  background: var(--secondary);
  clip-path: polygon(1% 0, 100% 0, 98% 100%, 0 94%);
  z-index: 0;
  transition: background-color 0.2s ease;
}

.btn-asym > span {
  position: relative;
  z-index: 1;
  transform: skewX(8deg) rotate(1deg);
}

.btn-asym:hover {
  background: var(--fg);
  color: var(--bg);
  transform: skewX(-8deg) rotate(-1deg) translateY(-1px);
  box-shadow: 12px 10px 0 #000;
}

.btn-asym:hover::before {
  background: var(--accent);
}

.btn-asym:active {
  transform: skewX(-8deg) rotate(-1deg) translateY(1px);
  box-shadow: 8px 6px 0 #000;
}

.btn:focus-visible,
.input:focus-visible,
a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--secondary);
  outline-offset: 2px;
}

.subscribe {
  padding: 80px 0;
  background: var(--bg);
}

.subscribe .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.section-title {
  margin: 0 0 10px;
  font-size: clamp(28px, 4.1vw, 34px);
  line-height: 1.1;
  letter-spacing: 0.01em;
}

.section-subtitle {
  margin: 0 0 28px;
  color: rgba(237, 230, 228, 0.86);
}

.benefit-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: -8px 0 20px;
  padding: 10px 14px;
  font-weight: 600;
  background: transparent;
  line-height: 1.3;
}

.pill-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary);
  flex: 0 0 auto;
}

.benefit-pill svg {
  width: 24px;
  height: 24px;
  display: block;
  fill: currentColor;
}

.subscribe-form {
  max-width: 720px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0;
  align-items: center;
  width: 100%;
}

.input {
  height: 48px;
  width: 100%;
  border-radius: 6px;
  border: 1px solid var(--fg);
  background: transparent;
  color: var(--fg);
  padding: 0 14px;
  font: inherit;
  font-size: 19px;
}

.input::placeholder {
  color: rgba(237, 230, 228, 0.6);
}

.asym-input-wrap {
  position: relative;
  height: 62px;
  padding: 6px;
  min-width: 300px;
  background: var(--fg);
  clip-path: polygon(0 0, 100% 0, 98% 100%, 0 100%);
  overflow: hidden;
  z-index: 1;
}

.asym-input-wrap .input {
  height: 100%;
  border: 0;
  border-radius: 0;
  background: var(--bg);
  clip-path: polygon(0 0, 100% 0, 98% 100%, 0 100%);
  padding: 0 16px;
}

.asym-input-wrap:focus-within {
  outline: 2px solid var(--secondary);
  outline-offset: 2px;
}

.btn-asym-form {
  position: relative;
  height: 62px;
  min-width: 170px;
  border: 0;
  border-radius: 0;
  background: var(--fg);
  color: var(--bg);
  clip-path: polygon(2% 0, 100% 0, 98% 100%, 0 100%);
  padding: 0 26px;
  margin-left: -6px;
  z-index: 2;
}

.btn-asym-form::before {
  content: "";
  position: absolute;
  inset: 6px;
  background: var(--secondary);
  clip-path: polygon(2% 0, 100% 0, 98% 100%, 0 100%);
  transition: background-color 0.2s ease;
  z-index: 0;
}

.btn-asym-form > span {
  position: relative;
  z-index: 1;
}

.btn-asym-form:hover::before {
  background: var(--accent);
}

.btn-asym-form:disabled {
  cursor: wait;
  opacity: 0.78;
}

.form-message {
  display: block;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  margin-top: 0;
  font-size: 15px;
  transition: max-height 0.3s ease, opacity 0.3s ease, margin-top 0.3s ease;
}

.form-message.is-visible {
  margin-top: 12px;
  opacity: 1;
}

.form-message.error {
  color: var(--accent);
}

.form-message.success {
  color: var(--fg);
}

.form-microcopy {
  font-size: 14px;
  color: rgba(237, 230, 228, 0.7);
}

.working-banner {
  background: var(--secondary);
  color: var(--bg);
  padding: 34px 0 36px;
}

.working-inner {
  text-align: center;
}

.working-line-small {
  margin: 0;
  font-size: 14px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 600;
}

.working-divider {
  width: 54px;
  height: 2px;
  border-radius: 2px;
  margin: 10px auto;
  background: rgba(19, 17, 17, 0.5);
}

.working-line-main {
  margin: 0;
  font-size: clamp(28px, 4vw, 34px);
  line-height: 1.15;
  font-weight: 800;
}

.working-line-date {
  margin: 8px 0 0;
  font-size: 19px;
  font-weight: 600;
  opacity: 0.9;
}

.site-footer {
  padding: 40px 0;
  background: var(--bg);
  color: var(--fg);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: start;
}

.footer-title {
  margin: 0 0 8px;
  font-size: 22px;
  line-height: 1.2;
}

.footer-logo {
  display: block;
  width: auto;
  height: 46px;
  margin: 0 0 10px;
  -webkit-user-select: none;
  user-select: none;
  -webkit-user-drag: none;
}

.footer-text {
  margin: 0 0 12px;
  color: rgba(237, 230, 228, 0.88);
}

.footer-mail {
  display: inline-block;
  color: var(--fg);
  font-size: 15px;
}

.footer-mail:hover {
  color: var(--accent);
}

.footer-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
  color: rgba(237, 230, 228, 0.9);
  font-size: 15px;
}

.footer-ataturk {
  margin-top: 20px;
}

.footer-quote {
  max-width: 260px;
  margin: 0 0 10px;
  color: rgba(237, 230, 228, 0.82);
  font-style: italic;
}

.footer-signature-link {
  display: inline-flex;
  margin: 0 0 12px;
  color: inherit;
}

.footer-signature-link:hover .footer-signature,
.footer-signature-link:focus-visible .footer-signature {
  opacity: 1;
  transform: translateY(-1px);
}

.footer-signature {
  display: block;
  width: auto;
  height: 40px;
  opacity: 0.88;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.footer-right .footer-text-copy {
  font-family: var(--font-headline);
  font-weight: 600;
}

.footer-right p {
  margin: 0 0 12px;
}

.footer-contact-row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.copy-btn {
  width: 29px;
  height: 29px;
  border-radius: 8px;
  border: 1px solid var(--border-subtle);
  background: transparent;
  color: var(--fg);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color 0.2s ease, color 0.2s ease, background-color 0.2s ease;
  padding: 0;
}

.copy-btn svg {
  width: 15px;
  height: 15px;
  display: block;
  fill: currentColor;
  transform: translateY(-1px);
}

.copy-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.copy-status {
  font-size: 13px;
  color: rgba(237, 230, 228, 0.7);
  min-width: 60px;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.copy-status.is-visible {
  opacity: 1;
}

.copy-status.success {
  color: var(--secondary);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (min-width: 1240px) {
  .hero {
    min-height: 97vh;
  }

  .hero-inner {
    min-height: calc(97vh - var(--header-height));
  }
}

@media (max-width: 767.98px) {
  .header-inner,
  .container {
    padding-left: 18px;
    padding-right: 18px;
  }

  .site-header {
    height: auto;
    min-height: 92px;
  }

  .header-inner {
    align-items: flex-start;
    padding-top: 14px;
  }

  .header-tools {
    padding-top: 10px;
  }

  .locale-suggestion {
    padding: 10px 12px 0;
  }

  .locale-suggestion-inner {
    flex-direction: column;
    align-items: flex-start;
    box-shadow: 6px 6px 0 #000;
  }

  .hero {
    min-height: 88vh;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .hero-content {
    width: 100%;
    align-items: center;
    text-align: center;
    justify-self: center;
    transform: none;
    padding-top: 52px;
  }

  .hero-spacer {
    display: none;
  }

  .game-logo {
    margin-left: auto;
    margin-right: auto;
    max-width: min(300px, 78vw);
  }

  .btn {
    width: 100%;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .btn-asym-form {
    margin-left: 0;
    width: 100%;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }

  .footer-right {
    justify-self: center;
    align-items: center;
    text-align: center;
  }

  .benefit-pill {
    border-radius: 16px;
  }
}
