/* ── EPIC INDUSTRIES — Golden Luxury ── */
:root {
  --black:       #0a0807;
  --dark-brown:  #1a0f0a;
  --deep-brown:  #221508;
  --brown:       #2d1f14;
  --grey:        #261e18;
  --grey-mid:    #342920;
  --grey-light:  #443628;
  --white:       #f5f0e8;
  --white-dim:   rgba(245,240,232,0.6);
  --white-faint: rgba(245,240,232,0.12);
  --gold:        #f59e0b;
  --gold-light:  #fbbf24;
  --gold-bright: #fcd34d;
  --gold-dim:    rgba(245,158,11,0.3);
  --amber:       #d97706;
  --bronze:      #b45309;
  --copper:      #92400e;
  --max-w:       1280px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; max-width: 100vw; }

body {
  background: var(--black);
  color: var(--white);
  font-family: 'Outfit', sans-serif;
  font-weight: 300;
  font-size: 17px;
  line-height: 1.7;
  overflow-x: hidden;
  position: relative;
  width: 100%;
  max-width: 100vw;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background: 
    radial-gradient(ellipse 100% 100% at 0% 0%, rgba(245,158,11,0.12) 0%, transparent 50%),
    radial-gradient(ellipse 80% 80% at 100% 100%, rgba(217,119,6,0.08) 0%, transparent 50%),
    radial-gradient(ellipse 60% 60% at 50% 50%, rgba(180,83,9,0.05) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image: 
    repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(245,158,11,0.02) 2px, rgba(245,158,11,0.02) 4px);
  pointer-events: none;
  z-index: 1;
  opacity: 0.3;
}

/* ─────────────────────────────────────────
   NAV
───────────────────────────────────────── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.4rem 3rem;
  transition: all 0.4s;
  max-width: 100vw;
  width: 100%;
}

nav.scrolled {
  background: rgba(10,8,7,0.85);
  border-bottom: 1px solid rgba(245,158,11,0.2);
  backdrop-filter: blur(20px);
  box-shadow: 0 8px 32px rgba(245,158,11,0.1);
}

.nav-logo img {
  height: 32px;
  width: auto;
  display: block;
  filter: drop-shadow(0 0 10px rgba(245,158,11,0.5));
  transition: filter 0.3s;
}
.nav-logo img:hover { filter: drop-shadow(0 0 20px rgba(245,158,11,0.8)); }

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

.nav-links a {
  color: var(--white);
  text-decoration: none;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.7;
  transition: all 0.3s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transition: width 0.3s;
}

.nav-links a:hover { 
  opacity: 1;
  color: var(--gold);
  text-shadow: 0 0 20px rgba(245,158,11,0.6);
}

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

.nav-links a.active {
  color: var(--gold);
  opacity: 1;
}

/* Mobile Nav Toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
  z-index: 101;
}

.nav-toggle span {
  width: 25px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s;
  opacity: 0.7;
}

.nav-toggle:hover span {
  opacity: 1;
  background: var(--gold);
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(7px, 7px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* ─────────────────────────────────────────
   HERO — dynamic asymmetric layout
───────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8rem 3rem 6rem;
  position: relative;
  z-index: 2;
  overflow: hidden;
  width: 100%;
}

.hero::before {
  content: '';
  position: absolute;
  top: 10%;
  right: 0%;
  width: min(600px, 80vw);
  height: min(600px, 80vw);
  background: radial-gradient(circle, rgba(245,158,11,0.15) 0%, transparent 70%);
  filter: blur(80px);
  pointer-events: none;
  animation: pulse 8s ease-in-out infinite;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 10%;
  left: 5%;
  width: min(400px, 60vw);
  height: min(400px, 60vw);
  background: radial-gradient(circle, rgba(217,119,6,0.12) 0%, transparent 70%);
  filter: blur(60px);
  pointer-events: none;
  animation: pulse 6s ease-in-out infinite reverse;
}

@keyframes pulse {
  0%, 100% { opacity: 0.4; transform: scale(1); }
  50% { opacity: 0.8; transform: scale(1.1); }
}

.hero-inner {
  max-width: var(--max-w);
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-tag {
  font-size: 0.7rem;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeUp 0.7s 0.2s forwards;
  text-shadow: 0 0 20px rgba(245,158,11,0.6);
}

.hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(4rem, 12vw, 11rem);
  line-height: 0.95;
  letter-spacing: 0.02em;
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeUp 0.7s 0.35s forwards;
  color: var(--white);
  position: relative;
}

.hero-title em {
  font-style: normal;
  display: block;
  color: var(--gold);
  text-shadow: 0 0 30px rgba(245,158,11,0.5);
}

.hero-meta {
  display: flex;
  align-items: center;
  gap: 3rem;
  margin-bottom: 3rem;
  opacity: 0;
  animation: fadeUp 0.7s 0.5s forwards;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  position: relative;
  padding: 1.2rem 1.8rem;
  background: rgba(52,41,32,0.5);
  border: 1px solid rgba(245,158,11,0.2);
  backdrop-filter: blur(10px);
  border-radius: 4px;
}

.hero-stat::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 4px;
  padding: 1px;
  background: linear-gradient(135deg, var(--gold), var(--amber));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  opacity: 0.3;
}

.hero-stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.8rem;
  line-height: 1;
  color: var(--gold);
}

.hero-stat-label {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white-dim);
}

.hero-divider {
  width: 2px;
  height: 3.5rem;
  background: linear-gradient(to bottom, transparent, var(--gold), transparent);
}

.hero-sub {
  max-width: 560px;
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--white-dim);
  margin-bottom: 3rem;
  opacity: 0;
  animation: fadeUp 0.7s 0.65s forwards;
}

.hero-cta {
  display: flex;
  gap: 1.2rem;
  align-items: center;
  opacity: 0;
  animation: fadeUp 0.7s 0.8s forwards;
}



/* ─────────────────────────────────────────
   INTRO BAND
───────────────────────────────────────── */
.intro-band {
  border-top: 1px solid rgba(245,158,11,0.2);
  border-bottom: 1px solid rgba(245,158,11,0.2);
  padding: 3.5rem 3rem;
  text-align: center;
  background: rgba(34,21,8,0.4);
  backdrop-filter: blur(10px);
  position: relative;
  z-index: 2;
  box-shadow: 0 8px 32px rgba(245,158,11,0.1);
}

.intro-band p {
  max-width: 680px;
  margin: 0 auto;
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--white-dim);
}

/* ─────────────────────────────────────────
   SECTION WORK
───────────────────────────────────────── */
.section-work {
  padding: 7rem 3rem;
  max-width: var(--max-w);
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header--spaced {
  margin-top: 8rem;
}

.section-kicker {
  font-size: 0.68rem;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  text-shadow: 0 0 20px rgba(245,158,11,0.4);
}

.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  line-height: 0.95;
  letter-spacing: 0.02em;
  margin-bottom: 1rem;
  color: var(--white);
}

.section-desc {
  font-size: 0.9rem;
  color: var(--white-dim);
  max-width: 420px;
  margin: 0 auto;
}

/* ─────────────────────────────────────────
   GAMES GRIDS
───────────────────────────────────────── */
.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
  gap: 1rem;
}

.games-grid--services {
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
}

.game-card {
  aspect-ratio: 5/4;
  overflow: hidden;
  position: relative;
  background: var(--grey);
  cursor: pointer;
  border-radius: 8px;
  border: 1px solid rgba(245,158,11,0.1);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.game-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), filter 0.4s;
  filter: brightness(1) saturate(1);
}

.game-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold);
  box-shadow: 0 20px 60px rgba(245,158,11,0.3), 0 0 40px rgba(217,119,6,0.2);
}

.game-card:hover img {
  transform: scale(1.1);
  filter: brightness(1.1) saturate(1.2);
}

.game-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(245,158,11,0.2), rgba(217,119,6,0.2));
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
  border-radius: 8px;
}

.game-card:hover::after { opacity: 1; }

.game-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,10,15,0.95) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s;
  display: flex;
  align-items: flex-end;
  padding: 1.2rem 1.5rem;
  border-radius: 8px;
}

.game-card:hover .game-card-overlay { opacity: 1; }

.game-card-name {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  text-shadow: 0 0 10px rgba(245,158,11,0.6);
  word-break: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
  line-height: 1.4;
  width: 100%;
}

.game-card-placeholder {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem;
  background: linear-gradient(135deg, rgba(34,21,8,0.6), rgba(38,30,24,0.6));
  text-align: center;
  transition: all 0.4s;
  border-radius: 8px;
}

.game-card:hover .game-card-placeholder { 
  background: linear-gradient(135deg, rgba(34,21,8,0.9), rgba(52,41,32,0.9));
}

.game-card-placeholder span {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.3);
  line-height: 1.5;
  transition: color 0.4s;
}

.game-card:hover .game-card-placeholder span { 
  color: var(--gold);
  text-shadow: 0 0 10px rgba(245,158,11,0.6);
}

/* ─────────────────────────────────────────
   ABOUT
───────────────────────────────────────── */
.section-about {
  background: linear-gradient(135deg, rgba(34,21,8,0.6) 0%, rgba(26,15,10,0.8) 100%);
  border-top: 1px solid rgba(245,158,11,0.2);
  border-bottom: 1px solid rgba(245,158,11,0.2);
  padding: 8rem 3rem;
  position: relative;
  z-index: 2;
  backdrop-filter: blur(10px);
}

.about-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 6rem;
  align-items: start;
}

.about-left .section-kicker { margin-bottom: 1.5rem; }

.about-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 0.95;
  letter-spacing: 0.02em;
  color: var(--white);
}

.about-right p {
  color: var(--white-dim);
  font-size: 1rem;
  line-height: 1.85;
  max-width: 58ch;
  margin-bottom: 1.5rem;
}

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

.about-stat {
  padding: 2rem 1.5rem;
  background: rgba(52,41,32,0.5);
  border: 1px solid rgba(245,158,11,0.2);
  border-radius: 8px;
  backdrop-filter: blur(10px);
  transition: all 0.4s;
  position: relative;
  overflow: hidden;
}

.about-stat::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(245,158,11,0.1), rgba(217,119,6,0.1));
  opacity: 0;
  transition: opacity 0.4s;
}

.about-stat:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
  box-shadow: 0 10px 40px rgba(245,158,11,0.2);
}

.about-stat:hover::before { opacity: 1; }

.about-stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3.5rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.5rem;
  position: relative;
}

.about-stat-label {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white-dim);
  position: relative;
}

/* ─────────────────────────────────────────
   CONTACT
───────────────────────────────────────── */
.section-contact {
  padding: 10rem 3rem;
  text-align: center;
  position: relative;
  z-index: 2;
}

.section-contact::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(245,158,11,0.15) 0%, transparent 70%);
  filter: blur(80px);
  pointer-events: none;
}

.contact-inner {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
}

.contact-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3rem, 8vw, 7rem);
  line-height: 0.92;
  letter-spacing: 0.02em;
  margin-bottom: 1.5rem;
  color: var(--white);
}

.contact-sub {
  font-size: 1rem;
  color: var(--white-dim);
  line-height: 1.75;
  max-width: 50ch;
  margin: 0 auto 3rem;
}

.contact-email {
  display: inline-block;
  font-size: clamp(1.1rem, 2.5vw, 1.6rem);
  font-weight: 500;
  letter-spacing: 0.03em;
  color: var(--gold);
  text-decoration: none;
  padding: 1rem 2rem;
  background: rgba(52,41,32,0.5);
  border: 2px solid rgba(245,158,11,0.3);
  border-radius: 8px;
  backdrop-filter: blur(10px);
  transition: all 0.4s;
  text-shadow: 0 0 20px rgba(245,158,11,0.4);
}

.contact-email:hover { 
  color: var(--gold-light);
  border-color: var(--gold);
  box-shadow: 0 10px 40px rgba(245,158,11,0.4);
  transform: translateY(-4px);
  text-shadow: 0 0 30px rgba(245,158,11,0.8);
}

/* ─────────────────────────────────────────
   FOOTER
───────────────────────────────────────── */
footer {
  border-top: 1px solid rgba(245,158,11,0.2);
  padding: 2.5rem 3rem;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 2rem;
  background: rgba(26,15,10,0.6);
  backdrop-filter: blur(10px);
  position: relative;
  z-index: 2;
}

.footer-logo img {
  height: 26px;
  width: auto;
  filter: drop-shadow(0 0 8px rgba(245,158,11,0.4));
}

.footer-copy {
  font-size: 0.7rem;
  color: rgba(245,240,232,0.25);
  letter-spacing: 0.1em;
  text-align: center;
}

.footer-links {
  text-align: right;
}

.footer-links a {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.3);
  text-decoration: none;
  transition: all 0.3s;
}

.footer-links a:hover { 
  color: var(--gold);
  text-shadow: 0 0 15px rgba(245,158,11,0.6);
}

/* ─────────────────────────────────────────
   BUTTONS
───────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--gold), var(--amber));
  color: var(--black);
  text-decoration: none;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 1.1rem 2.8rem;
  border: none;
  cursor: pointer;
  font-family: 'Outfit', sans-serif;
  transition: all 0.3s;
  border-radius: 4px;
  box-shadow: 0 10px 30px rgba(245,158,11,0.3);
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--gold-light), var(--gold-bright));
  opacity: 0;
  transition: opacity 0.3s;
  z-index: 0;
}

.btn-primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 50px rgba(245,158,11,0.5);
}

.btn-primary:hover::before { opacity: 1; }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(245,158,11,0.3);
  color: var(--gold);
  text-decoration: none;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 1rem 2.5rem;
  background: rgba(52,41,32,0.3);
  backdrop-filter: blur(10px);
  cursor: pointer;
  font-family: 'Outfit', sans-serif;
  transition: all 0.3s;
  border-radius: 4px;
  position: relative;
  z-index: 1;
}

.btn-ghost:hover { 
  border-color: var(--gold);
  color: var(--gold-light);
  background: rgba(52,41,32,0.6);
  box-shadow: 0 10px 40px rgba(245,158,11,0.3);
  transform: translateY(-4px);
  text-shadow: 0 0 15px rgba(245,158,11,0.6);
}

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

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

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; }
  50%       { opacity: 1; }
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─────────────────────────────────────────
   NAV SCROLL BEHAVIOUR
───────────────────────────────────────── */

/* ─────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────── */
@media (max-width: 900px) {
  nav { padding: 1.2rem 1.5rem; }
  .section-work { padding: 5rem 1.5rem; }
  .section-about { padding: 5rem 1.5rem; }
  .about-inner { grid-template-columns: 1fr; gap: 3rem; }
  .section-contact { padding: 6rem 1.5rem; }
  footer { grid-template-columns: 1fr; text-align: center; }
  .footer-links { text-align: center; }
}

/* ─────────────────────────────────────────
   CAREERS PAGE
───────────────────────────────────────── */
.page-hero { 
  padding: 12rem 3rem 6rem; 
  text-align: center; 
  border-bottom: 1px solid rgba(245,158,11,0.2);
  position: relative;
  z-index: 2;
}

.page-hero .section-kicker { margin-bottom: 1.5rem; }

.page-hero-title { 
  font-family: 'Bebas Neue', sans-serif; 
  font-size: clamp(3.5rem, 8vw, 8rem); 
  line-height: 0.92; 
  letter-spacing: 0.02em; 
  margin-bottom: 1.5rem;
  color: var(--white);
}

.page-hero-sub { 
  font-size: 1rem; 
  color: var(--white-dim); 
  max-width: 50ch; 
  margin: 0 auto; 
}

.jobs-section { 
  max-width: var(--max-w); 
  margin: 0 auto; 
  padding: 6rem 3rem;
  position: relative;
  z-index: 2;
}

.jobs-section-title { 
  font-family: 'Bebas Neue', sans-serif; 
  font-size: 1.6rem; 
  letter-spacing: 0.1em; 
  color: var(--gold);
  margin-bottom: 2.5rem; 
  padding-bottom: 1rem; 
  border-bottom: 1px solid rgba(245,158,11,0.2);
  text-shadow: 0 0 20px rgba(245,158,11,0.4);
}

.job-card { 
  display: flex; 
  justify-content: space-between; 
  align-items: center; 
  padding: 2rem 2rem;
  margin-bottom: 1rem;
  background: rgba(52,41,32,0.3);
  border: 1px solid rgba(245,158,11,0.1);
  border-radius: 8px;
  backdrop-filter: blur(10px);
  text-decoration: none; 
  color: var(--white);
  transition: all 0.4s;
}

.job-card:hover { 
  transform: translateX(12px);
  border-color: var(--gold);
  background: rgba(52,41,32,0.5);
  box-shadow: 0 10px 40px rgba(245,158,11,0.2);
}

.job-card:hover .job-arrow { 
  color: var(--gold);
  transform: translateX(8px);
  text-shadow: 0 0 15px rgba(245,158,11,0.8);
}

.job-title { 
  font-family: 'Bebas Neue', sans-serif; 
  font-size: clamp(1.6rem, 3vw, 2.4rem); 
  letter-spacing: 0.03em; 
  margin-bottom: 0.5rem;
  color: var(--white);
}

.job-meta { 
  display: flex; 
  gap: 1.5rem; 
  font-size: 0.75rem; 
  letter-spacing: 0.1em; 
  text-transform: uppercase; 
  color: var(--white-dim); 
}

.job-meta span { 
  display: flex; 
  align-items: center; 
  gap: 0.4rem; 
}

.job-meta .tag { 
  background: rgba(245,158,11,0.15);
  border: 1px solid rgba(245,158,11,0.3);
  padding: 0.3rem 0.9rem; 
  font-size: 0.65rem;
  border-radius: 4px;
  color: var(--gold);
}

.job-arrow { 
  font-size: 1.8rem; 
  color: rgba(245,158,11,0.4);
  transition: all 0.4s;
  flex-shrink: 0; 
  margin-left: 2rem; 
}

.speculative { 
  background: linear-gradient(135deg, rgba(34,21,8,0.6) 0%, rgba(26,15,10,0.8) 100%);
  border-top: 1px solid rgba(245,158,11,0.2);
  padding: 6rem 3rem; 
  text-align: center;
  position: relative;
  z-index: 2;
}

.speculative-inner { 
  max-width: 560px; 
  margin: 0 auto; 
}

.speculative h2 { 
  font-family: 'Bebas Neue', sans-serif; 
  font-size: clamp(2rem, 4vw, 3.5rem); 
  margin-bottom: 1rem;
  color: var(--white);
}

.speculative p { 
  color: var(--white-dim); 
  font-size: 0.95rem; 
  margin-bottom: 2.5rem; 
}

/* ─────────────────────────────────────────
   JOB DETAIL PAGE
───────────────────────────────────────── */
.job-hero { 
  padding: 12rem 3rem 5rem; 
  border-bottom: 1px solid rgba(245,158,11,0.2);
  max-width: var(--max-w); 
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.back-link { 
  display: inline-flex; 
  align-items: center; 
  gap: 0.5rem; 
  font-size: 0.7rem; 
  letter-spacing: 0.2em; 
  text-transform: uppercase; 
  color: var(--white-dim); 
  text-decoration: none; 
  margin-bottom: 3rem; 
  transition: all 0.3s; 
}

.back-link:hover { 
  color: var(--gold);
  text-shadow: 0 0 15px rgba(245,158,11,0.6);
}

.job-hero-meta { 
  display: flex; 
  gap: 1rem; 
  margin-bottom: 2rem; 
  flex-wrap: wrap; 
}

.job-tag { 
  font-size: 0.65rem; 
  letter-spacing: 0.15em; 
  text-transform: uppercase; 
  padding: 0.4rem 1rem; 
  border: 1px solid rgba(245,158,11,0.2);
  color: var(--white-dim);
  background: rgba(52,41,32,0.3);
  backdrop-filter: blur(10px);
  border-radius: 4px;
}

.job-tag.highlight { 
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(245,158,11,0.1);
  box-shadow: 0 0 20px rgba(245,158,11,0.2);
}

.job-hero-title { 
  font-family: 'Bebas Neue', sans-serif; 
  font-size: clamp(3rem, 7vw, 7rem); 
  line-height: 0.92; 
  letter-spacing: 0.02em; 
  margin-bottom: 1.5rem;
  color: var(--white);
}

.job-hero-sub { 
  font-size: 1rem; 
  color: var(--white-dim); 
  max-width: 55ch; 
  line-height: 1.75; 
}

.job-body { 
  max-width: var(--max-w); 
  margin: 0 auto; 
  padding: 5rem 3rem; 
  display: grid; 
  grid-template-columns: 2fr 1fr; 
  gap: 6rem; 
  align-items: start;
  position: relative;
  z-index: 2;
}

.job-content h2 { 
  font-family: 'Bebas Neue', sans-serif; 
  font-size: 2.2rem; 
  letter-spacing: 0.05em; 
  margin: 3rem 0 1.2rem; 
  color: var(--white);
}

.job-content h2:first-child { margin-top: 0; }

.job-content p { 
  color: var(--white-dim); 
  line-height: 1.85; 
  margin-bottom: 1.2rem; 
  font-size: 0.95rem; 
  white-space: pre-line; 
}

.job-content ul { 
  padding-left: 1.5rem; 
  margin-bottom: 1.5rem; 
}

.job-content ul li { 
  color: var(--white-dim); 
  font-size: 0.95rem; 
  line-height: 1.9; 
  margin-bottom: 0.6rem; 
}

.job-content ul li::marker { 
  color: var(--gold);
}

.job-sidebar { 
  position: sticky; 
  top: 7rem; 
}

.sidebar-card { 
  background: rgba(52,41,32,0.5);
  border: 1px solid rgba(245,158,11,0.2);
  border-top: 3px solid var(--gold);
  padding: 2rem; 
  margin-bottom: 1.5rem;
  border-radius: 8px;
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 30px rgba(245,158,11,0.1);
}

.sidebar-card-title { 
  font-size: 0.65rem; 
  letter-spacing: 0.3em; 
  text-transform: uppercase; 
  color: var(--gold);
  margin-bottom: 1.2rem;
  text-shadow: 0 0 15px rgba(245,158,11,0.4);
}

.sidebar-item { 
  display: flex; 
  justify-content: space-between; 
  align-items: baseline; 
  padding: 0.8rem 0; 
  border-bottom: 1px solid rgba(245,158,11,0.1);
  font-size: 0.85rem; 
}

.sidebar-item:last-child { border-bottom: none; }

.sidebar-item-label { 
  color: var(--white-dim); 
  font-size: 0.75rem; 
  letter-spacing: 0.05em; 
}

.sidebar-item-value { 
  color: var(--white); 
  font-weight: 500; 
  text-align: right; 
}

.apply-btn { 
  display: block; 
  text-align: center; 
  background: linear-gradient(135deg, var(--gold), var(--amber));
  color: var(--black); 
  text-decoration: none; 
  font-size: 0.75rem; 
  font-weight: 600; 
  letter-spacing: 0.2em; 
  text-transform: uppercase; 
  padding: 1.2rem 2rem; 
  width: 100%; 
  transition: all 0.3s;
  font-family: 'Outfit', sans-serif;
  border-radius: 6px;
  box-shadow: 0 10px 30px rgba(245,158,11,0.3);
}

.apply-btn:hover { 
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  box-shadow: 0 15px 50px rgba(245,158,11,0.5);
  transform: translateY(-4px);
}

/* ─────────────────────────────────────────
   ADMIN
───────────────────────────────────────── */
#login-screen { min-height: 100vh; display: flex; align-items: center; justify-content: center; position: relative; z-index: 2; }

.login-box { 
  background: rgba(52,41,32,0.6);
  border: 1px solid rgba(245,158,11,0.3);
  border-top: 3px solid var(--gold);
  padding: 3rem; 
  width: 100%; 
  max-width: 380px;
  border-radius: 8px;
  backdrop-filter: blur(20px);
  box-shadow: 0 20px 60px rgba(245,158,11,0.2);
}

.login-logo { 
  font-family: 'Bebas Neue', sans-serif; 
  font-size: 1.4rem; 
  letter-spacing: .15em; 
  color: var(--gold);
  margin-bottom: 1.5rem;
  text-shadow: 0 0 20px rgba(245,158,11,0.6);
}

.login-box h2 { 
  font-family: 'Bebas Neue', sans-serif; 
  font-size: 2rem; 
  margin-bottom: 1.5rem;
  color: var(--white);
}

.form-group { margin-bottom: 1rem; }

.form-group label { 
  display: block; 
  font-size: .7rem; 
  letter-spacing: .2em; 
  text-transform: uppercase; 
  color: var(--white-dim);
  margin-bottom: .5rem; 
}

input[type="password"], input[type="text"], input[type="url"], select { 
  width: 100%; 
  background: rgba(10,14,10,0.8);
  border: 1px solid rgba(245,158,11,0.2);
  color: var(--white); 
  font-family: 'Outfit', sans-serif; 
  font-size: .9rem; 
  padding: .85rem 1rem; 
  outline: none; 
  transition: all .3s;
  border-radius: 4px;
}

input:focus, select:focus { 
  border-color: var(--gold);
  box-shadow: 0 0 20px rgba(245,158,11,0.2);
}

.admin-btn { 
  background: linear-gradient(135deg, var(--gold), var(--amber));
  color: var(--black); 
  border: none; 
  font-family: 'Outfit', sans-serif; 
  font-size: .75rem; 
  font-weight: 600; 
  letter-spacing: .2em; 
  text-transform: uppercase; 
  padding: .9rem 2rem; 
  cursor: pointer; 
  transition: all .3s;
  border-radius: 4px;
  box-shadow: 0 5px 20px rgba(245,158,11,0.3);
}

.admin-btn:hover { 
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  box-shadow: 0 8px 30px rgba(245,158,11,0.5);
  transform: translateY(-2px);
}

.admin-btn-full { width: 100%; margin-top: .5rem; }
.admin-btn-sm { padding: .4rem .9rem; font-size: .65rem; width: auto; }

.admin-btn-danger { 
  background: linear-gradient(135deg, #c0392b, #e74c3c);
} 

.admin-btn-danger:hover { 
  background: linear-gradient(135deg, #e74c3c, #ff6b6b);
}

.admin-btn-ghost { 
  background: transparent; 
  border: 1px solid rgba(245,158,11,0.3);
  color: var(--gold);
} 

.admin-btn-ghost:hover { 
  border-color: var(--gold);
  color: var(--gold-light);
  background: rgba(245,158,11,0.1);
  box-shadow: 0 5px 20px rgba(245,158,11,0.3);
}

.btn-upload { 
  background: rgba(52,41,32,0.6);
  color: var(--white-dim);
  border: 1px solid rgba(245,158,11,0.2);
  font-family: 'Outfit', sans-serif; 
  font-size: .65rem; 
  font-weight: 600; 
  letter-spacing: .15em; 
  text-transform: uppercase; 
  padding: .35rem .7rem; 
  cursor: pointer; 
  transition: all .3s;
  white-space: nowrap;
  border-radius: 4px;
}

.btn-upload:hover { 
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(245,158,11,0.1);
}

.btn-upload.uploading { opacity: .5; pointer-events: none; }

.error-msg { color: #ff6b6b; font-size: .8rem; margin-top: .5rem; display: none; }

#admin-screen { display: none; }

.admin-header { 
  background: rgba(34,21,8,0.8);
  border-bottom: 1px solid rgba(245,158,11,0.2);
  padding: 1rem 2rem; 
  display: flex; 
  align-items: center; 
  justify-content: space-between;
  backdrop-filter: blur(20px);
}

.admin-header-logo { 
  font-family: 'Bebas Neue', sans-serif; 
  font-size: 1.2rem; 
  letter-spacing: .15em; 
  color: var(--gold);
  text-shadow: 0 0 15px rgba(245,158,11,0.6);
}

.admin-header-right { display: flex; align-items: center; gap: 1rem; }

.save-status { font-size: .75rem; letter-spacing: .1em; color: var(--white-dim); }
.save-status.saved { color: #4ade80; } 
.save-status.error { color: #ff6b6b; }

.admin-body { padding: 2rem; max-width: 1200px; margin: 0 auto; }

.admin-section { margin-bottom: 3rem; }

.admin-section-header { 
  display: flex; 
  align-items: center; 
  justify-content: space-between; 
  margin-bottom: 1.5rem; 
  padding-bottom: 1rem; 
  border-bottom: 1px solid rgba(245,158,11,0.2);
}

.admin-section-title { 
  font-family: 'Bebas Neue', sans-serif; 
  font-size: 1.8rem; 
  letter-spacing: .05em;
  color: var(--white);
}

.games-table { width: 100%; border-collapse: collapse; }

.games-table th { 
  text-align: left; 
  font-size: .65rem; 
  letter-spacing: .25em; 
  text-transform: uppercase; 
  color: var(--gold);
  padding: .5rem .75rem; 
  border-bottom: 1px solid rgba(245,158,11,0.2);
}

.games-table td { 
  padding: .5rem .75rem; 
  border-bottom: 1px solid rgba(245,158,11,0.1);
  font-size: .9rem; 
  vertical-align: middle; 
}

.games-table tr:hover td { 
  background: rgba(52,41,32,0.4);
}

.games-table select { padding: .3rem .5rem; font-size: .8rem; }

.games-table input[type="text"], .games-table input[type="url"] { 
  padding: .3rem .5rem; 
  font-size: .8rem; 
  width: 100%; 
}

.img-cell { display: flex; align-items: center; gap: .5rem; }
.img-cell input { flex: 1; min-width: 0; }

.add-form { 
  background: rgba(52,41,32,0.4);
  border: 1px solid rgba(245,158,11,0.2);
  border-top: 3px solid var(--gold);
  padding: 1.5rem; 
  margin-top: 1.5rem; 
  display: grid; 
  grid-template-columns: 2fr 2fr 1fr auto; 
  gap: .75rem; 
  align-items: end;
  border-radius: 8px;
  backdrop-filter: blur(10px);
}

.add-form .form-group { margin-bottom: 0; }

.thumb { 
  width: 36px; 
  height: 36px; 
  object-fit: cover; 
  border: 1px solid rgba(245,158,11,0.3);
  display: none; 
  vertical-align: middle; 
  flex-shrink: 0;
  border-radius: 4px;
}

.thumb.show { display: block; }

.view-site { 
  color: var(--gold);
  text-decoration: none; 
  font-size: .75rem; 
  letter-spacing: .15em; 
  text-transform: uppercase; 
  opacity: .7;
  transition: all .3s;
}

.view-site:hover { 
  opacity: 1;
  text-shadow: 0 0 15px rgba(245,158,11,0.6);
}

/* ─────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────── */
@media (max-width: 900px) {
  nav { padding: 1.2rem 1.5rem; }
  .section-work { padding: 5rem 1.5rem; }
  .section-about { padding: 5rem 1.5rem; }
  .about-inner { grid-template-columns: 1fr; gap: 3rem; }
  .section-contact { padding: 6rem 1.5rem; }
  footer { grid-template-columns: 1fr; text-align: center; }
  .footer-links { text-align: center; }
  .job-body { grid-template-columns: 1fr; gap: 3rem; }
  .job-sidebar { position: static; }
  .job-hero { padding: 10rem 1.5rem 4rem; }
  .job-body { padding: 3rem 1.5rem; }
}

@media (max-width: 700px) {
  .add-form { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  nav { padding: 1rem 1rem; }
  .nav-toggle { display: flex; }
  
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 75%;
    max-width: 280px;
    background: rgba(10,8,7,0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    transition: right 0.4s;
    border-left: 1px solid rgba(245,158,11,0.2);
    z-index: 100;
  }
  
  .nav-links.active {
    right: 0;
  }
  
  .nav-links a {
    font-size: 0.85rem;
  }
  
  .hero { padding: 8rem 1.5rem 5rem; }
  .hero-meta { gap: 1.2rem; flex-wrap: wrap; justify-content: center; }
  .hero-stat { width: 100%; max-width: 200px; }
  .hero-divider { display: none; }
  .games-grid { grid-template-columns: repeat(2, 1fr); gap: 0.8rem; }
  .games-grid--services { grid-template-columns: repeat(2, 1fr); }
  .about-stats { grid-template-columns: 1fr; }
  .hero-cta { flex-direction: column; width: 100%; }
  .btn-primary, .btn-ghost { width: 100%; justify-content: center; }
  
  section { padding-left: 1.5rem; padding-right: 1.5rem; }
  .section-games { padding: 6rem 1.5rem; }
  .section-about { padding: 6rem 1.5rem; }
  .section-contact { padding: 6rem 1.5rem; }
  .intro-band { padding: 2.5rem 1.5rem; }
  footer { padding: 2rem 1.5rem; }
}

