:root {
  --bg:        #0e1410;
  --bg2:       #141a16;
  --bg3:       #1c2420;
  --green-dk:  #1f3d2a;
  --green-mid: #2e5e3e;
  --green-acc: #3d8c55;
  --yellow:    #d4b96a;
  --yellow-lt: #f0d484;
  --gray-dk:   #2a2e2b;
  --gray-mid:  #4a5249;
  --gray-lt:   #8a9688;
  --white:     #e8ede9;
  --off-white: #c5cec6;
  --nav-h:     64px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  opacity: 0.4;
}

nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 3rem;
  background: rgba(14, 20, 16, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(61, 140, 85, 0.15);
}

.nav-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.6rem;
  letter-spacing: 0.12em;
  color: var(--yellow);
  text-decoration: none;
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  color: var(--gray-lt);
  text-decoration: none;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.25s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 1px;
  background: var(--green-acc);
  transition: width 0.3s;
}

.nav-links a:hover {
  color: var(--white);
}

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

.nav-links a.active {
  color: var(--yellow);
}

.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 101;
}

.nav-burger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--white);
  transition: transform 0.3s, opacity 0.3s, width 0.3s;
  transform-origin: center;
}

.nav-burger.open span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.nav-burger.open span:nth-child(2) {
  opacity: 0;
  width: 0;
}

.nav-burger.open span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

.nav-mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  background: rgba(14, 20, 16, 0.97);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(61, 140, 85, 0.15);
  z-index: 99;
  padding: 1.5rem 2rem 2rem;
  flex-direction: column;
  gap: 0;
  transform: translateY(-8px);
  opacity: 0;
  transition: transform 0.3s, opacity 0.3s;
  pointer-events: none;
}

.nav-mobile-menu.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.nav-mobile-menu li {
  list-style: none;
  border-bottom: 1px solid rgba(61, 140, 85, 0.1);
}

.nav-mobile-menu li:last-child {
  border-bottom: none;
}

.nav-mobile-menu a {
  display: block;
  padding: 1rem 0;
  color: var(--gray-lt);
  text-decoration: none;
  font-size: 1rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 0.2s;
}

.nav-mobile-menu a:hover,
.nav-mobile-menu a.active {
  color: var(--yellow);
}

.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: calc(var(--nav-h) + 3rem) 3rem 3rem;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 70% 50%, rgba(31, 61, 42, 0.5) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 20% 80%, rgba(212, 185, 106, 0.05) 0%, transparent 60%);
}

.hero-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(61, 140, 85, 0.3) 30%, rgba(61, 140, 85, 0.3) 70%, transparent);
  transform: translateX(-50%);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding-right: 4rem;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--green-acc);
  margin-bottom: 1.5rem;
  animation: fadeUp 0.8s ease both;
}

.hero-eyebrow span.dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--yellow);
  animation: pulse 2s infinite;
}

h1 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(3rem, 7vw, 6.5rem);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.02em;
  animation: fadeUp 0.8s 0.1s ease both;
}

h1 em {
  font-style: normal;
  color: var(--yellow);
  display: block;
}

.hero-desc {
  margin-top: 1.8rem;
  max-width: 400px;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--gray-lt);
  animation: fadeUp 0.8s 0.2s ease both;
}

.hero-ctas {
  margin-top: 2.5rem;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  animation: fadeUp 0.8s 0.3s ease both;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.8rem;
  border-radius: 2px;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.25s;
  cursor: pointer;
  border: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--green-acc);
  color: var(--bg);
}

.btn-primary:hover {
  background: var(--yellow);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(61, 140, 85, 0.35);
}

.btn-outline {
  background: transparent;
  border: 1px solid var(--green-mid);
  color: var(--off-white);
}

.btn-outline:hover {
  border-color: var(--green-acc);
  color: var(--green-acc);
  transform: translateY(-2px);
}

.hero-visual {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeIn 1.2s 0.4s ease both;
}

.hero-card {
  width: min(340px, 100%);
  aspect-ratio: 3/4;
  background: var(--bg3);
  border: 1px solid rgba(61, 140, 85, 0.25);
  border-radius: 4px;
  padding: 2rem;
  position: relative;
  overflow: hidden;
}

.hero-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green-acc), var(--yellow));
}

.hero-card-tag {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green-acc);
  margin-bottom: 1.5rem;
}

.hero-card h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.2rem;
  letter-spacing: 0.08em;
  color: var(--yellow);
  margin-bottom: 0.5rem;
}

.hero-card p {
  font-size: 0.85rem;
  color: var(--gray-lt);
  line-height: 1.6;
  margin-bottom: 2rem;
}

.skills-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.skill-tag {
  padding: 0.25rem 0.75rem;
  background: var(--green-dk);
  border: 1px solid rgba(61, 140, 85, 0.3);
  border-radius: 2px;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green-acc);
}

.hero-card-deco {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(61, 140, 85, 0.12) 0%, transparent 70%);
}

.divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(61, 140, 85, 0.25) 30%, rgba(61, 140, 85, 0.25) 70%, transparent);
  max-width: 1200px;
  margin: 0 auto;
}

section {
  padding: 6rem 3rem;
  max-width: 1200px;
  margin: 0 auto;
}

.section-label {
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--green-acc);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.section-label::before {
  content: '';
  display: block;
  width: 30px;
  height: 1px;
  background: var(--green-acc);
}

h2 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 2rem;
}

h2 .accent {
  color: var(--yellow);
}

.mods-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.mod-card {
  background: var(--bg2);
  border: 1px solid rgba(61, 140, 85, 0.15);
  border-radius: 4px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
  display: block;
}

.mod-card:hover {
  transform: translateY(-6px);
  border-color: rgba(61, 140, 85, 0.5);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
}

.mod-thumb {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--bg3);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.mod-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.mod-card:hover .mod-thumb img {
  transform: scale(1.06);
}

.mod-thumb-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(14, 20, 16, 0.7) 0%, transparent 50%);
}

.mod-body {
  padding: 1.2rem 1.4rem;
}

.mod-platform {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green-acc);
  margin-bottom: 0.4rem;
}

.mod-title {
  font-family: 'Syne', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.3rem;
}

.mod-link-icon {
  display: inline-block;
  margin-top: 0.6rem;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-lt);
  transition: color 0.2s;
}

.mod-card:hover .mod-link-icon {
  color: var(--yellow);
}

.socials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.social-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 1.5rem 1.8rem;
  background: var(--bg2);
  border: 1px solid rgba(61, 140, 85, 0.15);
  border-radius: 4px;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.social-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--green-acc), var(--yellow));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}

.social-item:hover {
  transform: translateY(-4px);
  border-color: rgba(61, 140, 85, 0.4);
}

.social-item:hover::after {
  transform: scaleX(1);
}

.social-icon {
  width: 28px;
  height: 28px;
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.social-icon img {
  width: 28px;
  height: 28px;
  filter: invert(65%) sepia(8%) saturate(500%) hue-rotate(70deg) brightness(95%);
  transition: filter 0.3s;
}

.social-item:hover .social-icon img {
  filter: invert(80%) sepia(35%) saturate(600%) hue-rotate(10deg) brightness(100%);
}

.social-name {
  font-family: 'Syne', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.2rem;
}

.social-handle {
  font-size: 0.78rem;
  color: var(--gray-lt);
}

footer {
  border-top: 1px solid rgba(61, 140, 85, 0.15);
  padding: 2rem 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  color: var(--gray-mid);
}

footer a {
  color: var(--green-acc);
  text-decoration: none;
}

footer a:hover {
  color: var(--yellow);
}

.page-header {
  padding: calc(var(--nav-h) + 4rem) 3rem 4rem;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(61, 140, 85, 0.12);
}

.page-header-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 80% at 80% 50%, rgba(31, 61, 42, 0.4) 0%, transparent 70%),
    radial-gradient(ellipse 30% 50% at 10% 80%, rgba(212, 185, 106, 0.04) 0%, transparent 60%);
}

.page-header-content {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
}

.page-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--green-acc);
  margin-bottom: 1rem;
  animation: fadeUp 0.7s ease both;
}

.page-eyebrow a {
  color: var(--gray-lt);
  text-decoration: none;
  transition: color 0.2s;
}

.page-eyebrow a:hover {
  color: var(--yellow);
}

.page-eyebrow .sep {
  color: var(--gray-mid);
}

.page-desc {
  margin-top: 1.2rem;
  max-width: 480px;
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--gray-lt);
  animation: fadeUp 0.7s 0.2s ease both;
}

.gallery-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 3rem 6rem;
}

.gallery-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2.5rem;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid rgba(61, 140, 85, 0.12);
  flex-wrap: wrap;
  gap: 1rem;
}

.gallery-count {
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray-lt);
}

.gallery-count strong {
  color: var(--yellow);
  font-weight: 500;
}

.back-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-lt);
  text-decoration: none;
  transition: color 0.2s;
}

.back-btn:hover {
  color: var(--green-acc);
}

.gallery-featured {
  margin-bottom: 2rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
}

.video-card {
  background: var(--bg2);
  border: 1px solid rgba(61, 140, 85, 0.15);
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
  animation: fadeUp 0.6s ease both;
}

.video-card:hover {
  transform: translateY(-5px);
  border-color: rgba(61, 140, 85, 0.45);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.45);
}

.video-card:nth-child(1) { animation-delay: 0.1s; }
.video-card:nth-child(2) { animation-delay: 0.15s; }
.video-card:nth-child(3) { animation-delay: 0.2s; }
.video-card:nth-child(4) { animation-delay: 0.25s; }
.video-card:nth-child(5) { animation-delay: 0.3s; }
.video-card:nth-child(6) { animation-delay: 0.35s; }
.video-card:nth-child(7) { animation-delay: 0.4s; }

.video-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--bg3);
  overflow: hidden;
}

.video-wrapper::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--bg3) 0%, var(--green-dk) 100%);
  z-index: 0;
}

.video-wrapper iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  z-index: 1;
}

.video-meta {
  padding: 1.1rem 1.4rem 1.3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(61, 140, 85, 0.1);
}

.video-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.1rem;
  letter-spacing: 0.1em;
  color: var(--green-acc);
}

.video-label {
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray-mid);
}

.video-accent {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--yellow);
  opacity: 0.6;
  transition: opacity 0.3s;
}

.video-card:hover .video-accent {
  opacity: 1;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

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

@media (max-width: 1024px) {
  nav {
    padding: 0 2rem;
  }

  .hero {
    padding: calc(var(--nav-h) + 2rem) 2rem 3rem;
  }

  .hero-content {
    padding-right: 2rem;
  }

  section {
    padding: 5rem 2rem;
  }

  .gallery-section {
    padding: 3.5rem 2rem 5rem;
  }

  .page-header {
    padding: calc(var(--nav-h) + 3rem) 2rem 3rem;
  }

  footer {
    padding: 2rem;
  }
}

@media (max-width: 768px) {
  nav {
    padding: 0 1.5rem;
  }

  .nav-links {
    display: none;
  }

  .nav-burger {
    display: flex;
  }

  .nav-mobile-menu {
    display: flex;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: calc(var(--nav-h) + 3rem) 1.5rem 4rem;
    gap: 0;
  }

  .hero-content {
    padding-right: 0;
  }

  .hero-visual {
    display: none;
  }

  .hero-line {
    display: none;
  }

  .hero-bg {
    background: radial-gradient(ellipse 80% 60% at 50% 30%, rgba(31, 61, 42, 0.45) 0%, transparent 70%);
  }

  section {
    padding: 4rem 1.5rem;
  }

  .mods-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  .socials-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .social-item {
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem 1.4rem;
  }

  .social-icon {
    margin-bottom: 0;
    flex-shrink: 0;
  }

  .social-info {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
  }

  .page-header {
    padding: calc(var(--nav-h) + 2.5rem) 1.5rem 2.5rem;
  }

  .gallery-section {
    padding: 2.5rem 1.5rem 4rem;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  footer {
    flex-direction: column;
    gap: 0.6rem;
    text-align: center;
    padding: 1.8rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .nav-logo {
    font-size: 1.35rem;
  }

  h1 {
    font-size: clamp(2.6rem, 13vw, 3.5rem);
  }

  .hero-ctas {
    flex-direction: column;
    gap: 0.75rem;
  }

  .btn {
    justify-content: center;
    width: 100%;
  }

  h2 {
    font-size: clamp(1.8rem, 8vw, 2.4rem);
  }

  .divider {
    margin: 0 1.5rem;
    width: auto;
  }
}