:root {
  --bg: #08090d;
  --bg-soft: #101117;
  --text: #f4f0e9;
  --muted: #8e9bb0;
  --orange: #f18400;
  --border: #292c36;

  --serif: "Playfair Display", Georgia, serif;
  --sans: "DM Sans", Arial, sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  line-height: 1.6;
}

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

header {
  height: 74px;
  padding: 0 3.5vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #090a0e;
  border-bottom: 1px solid #272a35;
  position: relative;
  z-index: 10;
}

.logo {
  align-items: center;
  display: flex;
  gap: 9px;
}

.logo-bird {
  content: url(images/warbler_logo.png);
  position: relative;
  width: 500px;
}

.logo-bird::before {
  position: relative;
  width: 8px;
  height: 8px;
  right: 5px;
  top: 7px;
  background: #090a0e;
  border-radius: 50%;
}

nav {
  display: flex;
  gap: 17px;
}

nav a {
  color: #a9afbb;
  font-size: 14px;
  transition: color .2s ease;
}

nav a:hover {
  color: white;
}

/* HERO */

.hero {
  min-height: 700px;
  position: relative;
  display: flex;
  align-items: center;
  background-image: var(--hero-bg, url(images/monster.png));
  background-size: cover;
  background-position: center;
}

.hero-content {
  width: min(1180px, 91%);
  margin: auto;
  position: relative;
  z-index: 2;
}

.eyebrow,
.game-type {
  color: var(--orange);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .5px;
  text-transform: uppercase;
}

.eyebrow {
  margin-bottom: 36px;
}

.hero h1 {
  max-width: 1050px;
  font-family: var(--serif);
  font-size: clamp(58px, 7vw, 88px);
  line-height: .98;
  font-weight: 500;
  letter-spacing: -4px;
  margin-bottom: 30px;
}

.hero-description {
  color: #9aabc2;
  font-size: 17px;
  margin-bottom: 40px;
}

.button {
  display: inline-flex;
  align-items: center;
  gap: 25px;
  padding: 17px 30px;
  background: var(--orange);
  color: #090909;
  font-size: 14px;
  font-weight: 500;
  transition: .2s ease;
}

.button:hover {
  background: #ff9411;
  transform: translateY(-2px);
}

.arrow {
  font-size: 20px;
}

/* INTRO */

.intro {
  width: min(1190px, 91%);
  margin: auto;
  padding: 100px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.orange-line {
  width: 48px;
  height: 2px;
  background: var(--orange);
  margin-bottom: 10px;
}

.intro h2,
.section-heading h2,
.newsletter h2,
.game-content h3,
.game-card h3 {
  font-family: var(--serif);
  font-weight: 500;
}

.intro h2 {
  font-size: clamp(42px, 5vw, 55px);
  line-height: 1.05;
  letter-spacing: -2px;
}

.intro-copy {
  padding-top: 38px;
}

.intro-copy p {
  color: #9aabc0;
  font-size: 18px;
  line-height: 1.55;
  max-width: 540px;
  margin-bottom: 30px;
}

.text-link {
  color: var(--orange);
  font-size: 14px;
  font-weight: 500;
}

.text-link span {
  margin-left: 7px;
  font-size: 17px;
}

/* GAMES */

.games {
  width: min(1150px, 91%);
  margin: auto;
  padding-bottom: 115px;
}

.section-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 45px;
}

.section-heading h2 {
  font-size: 44px;
  letter-spacing: -1.5px;
}

.view-all {
  color: #9aabc0;
  font-size: 14px;
}

.view-all span {
  color: var(--orange);
  margin-left: 8px;
}

.game-feature,
.game-card {
  position: relative;
  overflow: hidden;
  background: #18191f;
}

.game-feature {
  min-height: 520px;
  display: flex;
  align-items: flex-end;
}

.game-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.game-feature::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10,10,14,.92) 0%, rgba(10,10,14,.62) 42%, rgba(10,10,14,.15) 100%), linear-gradient(0deg, rgba(5,5,8,.7) 0%, transparent 55%);
  z-index: 1;
  pointer-events: none;
}

.game-content {
  position: relative;
  z-index: 2;
  width: 470px;
  padding: 50px 40px 45px;
}

.game-type {
  margin-bottom: 13px;
}

.game-content h3 {
  font-size: 32px;
  margin-bottom: 12px;
}

.game-content p,
.game-card p {
  color: #8994a5;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 22px;
}

.games-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 16px;
}

.game-card {
  height: 380px;
  display: flex;
  align-items: flex-end;
}

.game-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(5,5,8,.92) 0%, rgba(5,5,8,.45) 50%, rgba(5,5,8,.1) 100%);
  z-index: 1;
  pointer-events: none;
}

.game-card-content {
  position: relative;
  z-index: 2;
  padding: 34px 40px;
  width: 100%;
}

.game-card h3 {
  font-size: 32px;
  margin-bottom: 12px;
}

/* STATEMENT */

.statement {
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 100px 20px;

  background:
    radial-gradient(circle at center, #171722, #101017 60%, #0c0d12);

  border-top: 1px solid #171923;
  border-bottom: 1px solid #171923;
}

.statement h2 {
  font-family: var(--serif);
  font-size: clamp(48px, 6vw, 76px);
  line-height: 1.05;
  letter-spacing: -3px;
  font-weight: 500;
}

.statement .orange {
  color: var(--orange);
}

/* NEWSLETTER */

.newsletter {
  text-align: center;
  padding: 90px 20px 100px;
}

.newsletter .orange-line {
  margin: 0 auto 30px;
}

.newsletter h2 {
  font-size: 40px;
  margin-bottom: 14px;
}

.newsletter p {
  max-width: 620px;
  margin: 0 auto 40px;
  color: #91a0b4;
  font-size: 17px;
}

.newsletter-form {
  display: flex;
  justify-content: center;
  gap: 12px;
}

.newsletter input {
  width: 273px;
  background: transparent;
  border: 1px solid #343744;
  padding: 15px 19px;
  color: white;
  font-family: var(--sans);
  font-size: 14px;
  outline: none;
}

.newsletter input:focus {
  border-color: #777b88;
}

.newsletter button {
  border: none;
  padding: 0 27px;
  background: var(--orange);
  color: #080808;
  font-family: var(--sans);
  font-weight: 500;
  cursor: pointer;
}

/* FOOTER */

footer {
  border-top: 1px solid #2b2d36;
  padding: 65px 3.5vw 30px;
}

.footer-top {
  max-width: 1190px;
  margin: auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 50px;
  padding-bottom: 55px;
}

.footer-logo {
  margin-bottom: 1px;
}

.footer-description,
.footer-links a,
.socials a {
  color: #91a0b4;
  font-size: 14px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a:hover {
  color: white;
}

.follow-title {
  color: #91a0b4;
  font-size: 11px;
  letter-spacing: 1px;
  margin-bottom: 14px;
}

.socials {
  display: flex;
  gap: 20px;
}

.footer-bottom {
  max-width: 1190px;
  margin: auto;
  padding-top: 25px;
  border-top: 1px solid #292b34;
  display: flex;
  justify-content: space-between;
  color: #8290a3;
  font-size: 12px;
}

.legal {
  display: flex;
  gap: 28px;
}

/* RESPONSIVE */

@media (max-width: 800px) {
  header {
    height: 65px;
  }

  .logo {
    font-size: 24px;
  }

  nav {
    gap: 14px;
  }

  nav a {
    font-size: 12px;
  }

  .hero {
    min-height: 620px;
  }

  .hero h1 {
    letter-spacing: -2px;
  }

  .intro {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 75px 0;
  }

  .intro-copy {
    padding-top: 0;
  }

  .games {
    padding-bottom: 75px;
  }

  .section-heading h2 {
    font-size: 38px;
  }

  .game-feature {
    min-height: 550px;
  }

  .game-content {
    width: 100%;
    padding: 35px 28px;
  }

  .games-grid {
    grid-template-columns: 1fr;
  }

  .game-card {
    height: 430px;
  }

  .newsletter-form {
    flex-direction: column;
    align-items: stretch;
    max-width: 400px;
    margin: auto;
  }

  .newsletter input {
    width: 100%;
    height: 52px;
  }

  .newsletter button {
    height: 52px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}

@media (max-width: 520px) {
  nav {
    display: none;
  }

  .hero-content {
    width: 88%;
  }

  .hero h1 {
    font-size: 52px;
  }

  .hero-description {
    font-size: 15px;
  }

  .game-card-content {
    padding: 28px;
  }

  .game-card h3 {
    font-size: 27px;
  }

  .legal {
    flex-direction: column;
    gap: 5px;
  }
}

/* GAMES PAGE SECTION */

.games-page-section {
  padding: 80px 0 120px;
  background: var(--bg);
}

.games-page-container {
  width: min(1000px, 91%);
  margin: auto;
}

.games-page-header {
  margin-bottom: 60px;
}

.games-page-header .orange-line {
  width: 24px;
  height: 2px;
  background: var(--orange);
  margin-bottom: 24px;
}

.games-page-header h1 {
  font-family: var(--serif);
  font-size: clamp(48px, 6vw, 68px);
  font-weight: 500;
  letter-spacing: -2px;
  margin: 12px 0 20px;
  line-height: 1.05;
}

.games-page-intro {
  color: #8e9bb0;
  font-family: var(--sans);
  font-size: 16px;
  max-width: 500px;
  line-height: 1.5;
}

/* GAMES SHOWCASE LIST */

.games-showcase {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.game-showcase-card {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  background: #0b0c10;
  border: 1px solid #1c1f2a;
  overflow: hidden;
  min-height: 380px;
}

/* Media Side with Fade Overlay */

.game-media {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 280px;
  background: #000;
}

.game-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.media-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    transparent 60%,
    #0b0c10 100%
  );
  pointer-events: none;
}

/* Details Side */

.game-details {
  padding: 40px 48px 40px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.status-tags {
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 20px;
}

.status-tags .orange {
  color: var(--orange);
}

.status-tags .purple {
  color: #8c52ff;
}

.game-details h2 {
  font-family: var(--serif);
  font-size: clamp(32px, 4vw, 42px);
  font-weight: 500;
  letter-spacing: -1.5px;
  margin-bottom: 14px;
}

.game-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.meta-item {
  color: #636e80;
  font-family: var(--sans);
  font-size: 13px;
}

.game-details p {
  color: #8e9bb0;
  font-family: var(--sans);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 28px;
}

.game-cta {
  color: var(--orange);
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: flex-start;
  transition: opacity 0.2s ease;
}

.game-cta:hover {
  opacity: 0.85;
}

/* Mobile Responsiveness */

@media (max-width: 800px) {
  .game-showcase-card {
    grid-template-columns: 1fr;
  }

  .media-overlay {
    background: linear-gradient(
      180deg,
      transparent 60%,
      #0b0c10 100%
    );
  }

  .game-details {
    padding: 24px 28px 36px;
  }
}

/* VALUES SECTION */

.values {
  padding: 100px 0;
  background: var(--bg);
}

.values-container {
  width: min(1150px, 91%);
  margin: auto;
}

.values-header {
  margin-bottom: 50px;
}

.values-header h2 {
  font-family: var(--serif);
  font-size: clamp(42px, 5vw, 56px);
  font-weight: 500;
  letter-spacing: -2px;
  margin-top: 12px;
}

/* 2x2 Grid with subtle interior borders */
.values-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--bg-soft);
  border: 1px solid var(--border);
}

.value-card {
  padding: 55px 48px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

/* Remove outer borders on edge items */
.value-card:nth-child(2n) {
  border-right: none;
}

.value-card:nth-last-child(-n+2) {
  border-bottom: none;
}

.value-card .orange-line {
  width: 24px;
  height: 2px;
  margin-bottom: 28px;
}

.value-card h3 {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 500;
  margin-bottom: 14px;
  color: var(--text);
}

.value-card p {
  color: var(--muted);
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.6;
}

/* CONTACT SECTION */

.contact-section {
  padding: 100px 0 140px;
  background: var(--bg);
  /* Subtle dark radial highlight at the top right as seen in the image */
  background-image: radial-gradient(circle at 60% 10%, #171226 0%, transparent 50%);
}

.contact-container {
  width: min(1000px, 91%);
  margin: auto;
}

/* Header Typography */

.contact-hero {
  margin-bottom: 90px;
  max-width: 600px;
}

.contact-hero h1 {
  font-family: var(--serif);
  font-size: clamp(52px, 6vw, 72px);
  font-weight: 500;
  letter-spacing: -2.5px;
  margin: 16px 0 24px;
  line-height: 1;
}

.contact-intro {
  color: #8e9bb0;
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
}

/* Form Section Typography & Layout */

.contact-form-wrapper {
  max-width: 640px;
}

.contact-form-wrapper h2 {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 500;
  letter-spacing: -1px;
  margin-bottom: 10px;
}

.form-subheading {
  color: #8e9bb0;
  font-family: var(--sans);
  font-size: 14px;
  margin-bottom: 36px;
}

/* Form Fields */

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.form-group label {
  color: #8e9bb0;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: #0d0e13;
  border: 1px solid #1e212b;
  padding: 14px 16px;
  color: var(--text);
  font-family: var(--sans);
  font-size: 14px;
  outline: none;
  border-radius: 0;
  transition: border-color 0.2s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #434956;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #3b4050;
}

/* Select Box Custom Arrow */

.select-wrapper {
  position: relative;
}

.select-wrapper::after {
  content: "▾";
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: #8e9bb0;
  pointer-events: none;
  font-size: 12px;
}

.form-group select {
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  padding-right: 36px;
}

.form-group textarea {
  resize: vertical;
}

/* Submit Button */

.submit-button {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: var(--orange);
  color: #000;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  margin-top: 10px;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.submit-button:hover {
  background: #ff9411;
  transform: translateY(-1px);
}

.send-icon {
  font-size: 14px;
  transform: rotate(45deg);
  display: inline-block;
}

/* NEWS SECTION */

.news-section {
  padding: 80px 0 120px;
  background: var(--bg);
}

.news-container {
  width: min(960px, 91%);
  margin: auto;
}

.news-header {
  margin-bottom: 50px;
}

.news-header h1 {
  font-family: var(--serif);
  font-size: clamp(52px, 6vw, 72px);
  font-weight: 500;
  letter-spacing: -2.5px;
  margin-top: 12px;
}

/* Common Meta Styling */

.news-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: var(--sans);
  font-size: 11px;
}

.news-meta .category {
  color: var(--orange);
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.news-meta .date {
  color: #5d6778;
}

/* Featured Card */

.news-featured {
  position: relative;
  background: #0d0e14;
  border: 1px solid #1c1e28;
  padding: 50px 48px 45px;
  margin-bottom: 50px;
}


.featured-badge {
  position: absolute;
  top: 24px;
  right: 24px;
  border: 1px solid #3c3218;
  background: #14110b;
  color: #d19428;
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1px;
  padding: 4px 10px;
}

.news-featured .news-meta {
  margin-bottom: 20px;
}

.news-featured h2 {
  font-family: var(--serif);
  font-size: clamp(32px, 4vw, 42px);
  font-weight: 500;
  letter-spacing: -1.5px;
  margin-bottom: 16px;
}

.news-featured p {
  color: #8e9bb0;
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.6;
  max-width: 580px;
  margin-bottom: 30px;
}

.read-more {
  color: var(--orange);
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* Filters Row */

.news-filters {
  display: flex;
  gap: 10px;
  margin-bottom: 35px;
  flex-wrap: wrap;
}

.filter-btn {
  background: transparent;
  border: 1px solid #1e212b;
  color: #5d6778;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.8px;
  padding: 10px 18px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.filter-btn:hover,
.filter-btn.active {
  border-color: var(--orange);
  color: var(--orange);
}

/* News List Items */

.news-list {
  border-top: 1px solid #1c1e28;
}

.news-item {
  padding: 32px 0;
  border-bottom: 1px solid #1c1e28;
}

.news-item-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}

.action-link {
  color: #8e9bb0;
  font-family: var(--sans);
  font-size: 12px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s ease;
}

.action-link span {
  color: var(--orange);
}

.action-link:hover {
  color: var(--text);
}

.news-item h3 {
  font-family: var(--serif);
  font-size: clamp(24px, 3vw, 30px);
  font-weight: 500;
  letter-spacing: -0.8px;
  margin-bottom: 12px;
}

.news-item .summary {
  color: #8e9bb0;
  font-family: var(--sans);
  font-size: 14px;
  line-height: 1.6;
}

/* Expanded Item Details */

/* Hide extended body by default */
.news-item .news-body {
  display: none;
  margin-top: 24px;
  max-width: 620px;
}

/* Show extended body when expanded */
.news-item.expanded .news-body {
  display: block;
}

/* Highlight title when expanded */
.news-item.expanded h3 {
  color: var(--orange);
}

.news-body p {
  color: #8e9bb0;
  font-family: var(--sans);
  font-size: 13px;
  line-height: 1.65;
  margin-bottom: 16px;
}

.news-body p:last-child {
  margin-bottom: 0;
}

/* Expandable body hidden by default for featured card */
.news-featured .news-body {
  display: none;
  margin-bottom: 24px;
}

/* Show body when expanded */
.news-featured.expanded .news-body {
  display: block;
}

.news-featured.expanded h2 {
  color: var(--orange);
}
