:root {
  --dark: #0a0e27;
  --darker: #060817;
  --purple: #7c3aed;
  --pink: #ec4899;
  --cyan: #06b6d4;
  --gray: #94a3b8;
  --light: #f1f5f9;
  --card: rgba(30,41,59,0.5);
  --glow: 0 0 40px rgba(236,72,153,0.5);
}

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

body {
  font-family: 'Inter', sans-serif;
  background: linear-gradient(180deg, var(--dark), var(--darker));
  color: var(--light);
  overflow-x: hidden;
}

.wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(10,14,39,0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(124,58,237,0.2);
}

.nav-panel {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 2rem;
}

.brand-mark {
  height: 40px;
}

.burger-menu {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
}

.burger-menu span {
  width: 30px;
  height: 3px;
  background: var(--purple);
  transition: 0.3s;
}

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

.menu-list a {
  color: var(--gray);
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
}

.menu-list a:hover {
  color: var(--cyan);
}

/* Hero */
.hero-block {
  padding: 6rem 0;
  min-height: 85vh;
  display: flex;
  align-items: center;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-text h1 {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.glow {
  background: linear-gradient(90deg, var(--purple), var(--pink), var(--cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(var(--glow));
}

.lead {
  font-size: 1.25rem;
  color: var(--gray);
  margin-bottom: 2.5rem;
}

.btn-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn {
  padding: 1rem 2rem;
  border-radius: 12px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
  display: inline-block;
}

.btn-primary {
  background: linear-gradient(135deg, var(--purple), var(--pink));
  color: white;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 40px rgba(236,72,153,0.3);
}

.btn-secondary {
  background: transparent;
  color: var(--light);
  border: 2px solid rgba(124,58,237,0.5);
}

.btn-secondary:hover {
  background: rgba(124,58,237,0.1);
  border-color: var(--purple);
}

.stats-panel {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.stat-card {
  background: var(--card);
  padding: 2rem;
  border-radius: 20px;
  border: 1px solid rgba(124,58,237,0.2);
  backdrop-filter: blur(10px);
}

.stat-card strong {
  display: block;
  font-size: 2.5rem;
  font-family: 'Orbitron', sans-serif;
  color: var(--cyan);
  margin-bottom: 0.5rem;
}

.stat-card span {
  color: var(--gray);
  font-size: 0.9rem;
}

/* Games */
.games-showcase {
  padding: 5rem 0;
  background: rgba(30,41,59,0.2);
}

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

.section-intro h2 {
  font-family: 'Orbitron', sans-serif;
  font-size: 3rem;
  margin-bottom: 1rem;
}

.section-intro p {
  color: var(--gray);
  font-size: 1.1rem;
}

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

.game-item {
  background: var(--card);
  border-radius: 20px;
  overflow: hidden;
  transition: 0.3s;
  border: 1px solid rgba(124,58,237,0.2);
}

.game-item:hover {
  transform: scale(1.05);
  box-shadow: 0 30px 60px rgba(124,58,237,0.3);
}

.game-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.game-details {
  padding: 1.5rem;
}

.game-details h3 {
  font-size: 1.4rem;
  margin-bottom: 0.75rem;
  color: var(--purple);
}

.game-details p {
  color: var(--gray);
  line-height: 1.6;
}

/* Process */
.workflow {
  padding: 5rem 0;
}

.process-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.process-step {
  background: rgba(30,41,59,0.3);
  padding: 2rem;
  border-radius: 20px;
  border: 1px solid rgba(6,182,212,0.2);
  position: relative;
  transition: 0.3s;
}

.process-step:hover {
  background: rgba(30,41,59,0.5);
  transform: translateY(-5px);
}

.step-num {
  display: block;
  font-family: 'Orbitron', sans-serif;
  font-size: 3rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--cyan), var(--purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1rem;
}

.process-step h3 {
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
}

.process-step ul {
  list-style: none;
}

.process-step li {
  color: var(--gray);
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(148,163,184,0.1);
}

/* Tech */
.tech-stack {
  padding: 4rem 0;
  background: linear-gradient(180deg, transparent, rgba(124,58,237,0.05));
}

.tech-stack h2 {
  text-align: center;
  font-family: 'Orbitron', sans-serif;
  font-size: 2.5rem;
  margin-bottom: 3rem;
}

.tech-icons {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.tech-icon {
  height: 40px;
  filter: brightness(0) invert(1);
  opacity: 0.6;
  transition: 0.3s;
  justify-self: center;
}

.tech-icon:hover {
  opacity: 1;
  transform: scale(1.2);
}

.showcase-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.showcase-pic {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 15px;
  border: 1px solid rgba(124,58,237,0.2);
}

.awards {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.award-icon {
  height: 50px;
  filter: brightness(0) invert(1);
  opacity: 0.7;
}

/* CTA */
.cta-block {
  padding: 6rem 0;
  text-align: center;
  background: radial-gradient(circle, rgba(124,58,237,0.1), transparent);
}

.cta-block h2 {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  margin-bottom: 1rem;
}

.cta-block p {
  color: var(--gray);
  font-size: 1.2rem;
  margin-bottom: 2.5rem;
}

/* Footer */
.site-footer {
  background: var(--darker);
  padding: 3rem 0 2rem;
  border-top: 1px solid rgba(124,58,237,0.2);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 3rem;
  align-items: center;
}

.footer-mark {
  height: 50px;
  margin-bottom: 1rem;
}

.footer-brand p {
  color: var(--gray);
  font-size: 0.9rem;
}

.footer-nav {
  display: flex;
  gap: 2rem;
}

.footer-nav a {
  color: var(--gray);
  text-decoration: none;
  transition: 0.3s;
}

.footer-nav a:hover {
  color: var(--cyan);
}

.footer-char {
  height: 150px;
  opacity: 0.7;
}

/* Mobile */
@media (max-width: 768px) {
  .burger-menu {
    display: flex;
  }
  
  .menu-list {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(10,14,39,0.95);
    flex-direction: column;
    padding: 1rem;
  }
  
  .menu-list.show {
    display: flex;
  }
  
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .footer-nav {
    justify-content: center;
  }
}