:root {
  --bg-deep: #1a1a2e;
  --bg-secondary: #16213e;
  --accent: #ff6b35;
  --accent-hover: #ff8557;
  --green: #4ecdc4;
  --pink: #ff6b9d;
  --text: #f0f0f5;
  --text-muted: #a0a0b8;
  --card-bg: rgba(255, 255, 255, 0.05);
  --card-border: rgba(255, 255, 255, 0.1);
  --radius-card: 16px;
  --radius-btn: 24px;
  --max-width: 1200px;
  --shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--bg-deep);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  line-height: 1.2;
}

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

img {
  max-width: 100%;
  display: block;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 20px 44px;
  border-radius: var(--radius-btn);
  font-weight: 600;
  font-size: 1.15rem;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  font-family: 'Inter', sans-serif;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 8px 24px rgba(255, 107, 53, 0.35);
}

.btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(255, 107, 53, 0.45);
}

.btn-secondary {
  background: transparent;
  color: var(--text);
  border: 2px solid rgba(255, 255, 255, 0.25);
}

.btn-secondary:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
}

.btn-small {
  padding: 12px 24px;
  font-size: 1.1rem;
}

.section-label {
  display: inline-block;
  color: var(--accent);
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.section-headline {
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 32px;
}

.section-intro {
  color: var(--text-muted);
  font-size: 1.4rem;
  max-width: 1100px;
  margin-bottom: 48px;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 18px 0;
  transition: all 0.3s ease;
  background: transparent;
}

.navbar.scrolled {
  background: rgba(26, 26, 46, 0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  padding: 12px 0;
}

.nav-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 1.7rem;
  color: #fff;
}

.logo-icon {
  width: 48px;
  height: 48px;
  background: transparent;
  border-radius: 50%;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
}


.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  color: var(--text);
  font-weight: 500;
  font-size: 1.2rem;
  transition: color 0.3s ease;
  position: relative;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--accent);
}

.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
}

/* Hero */
section.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding: 120px 0;
  background: #fff;
  overflow: hidden;
}

#particles-canvas,
#hexCanvas,
#starCanvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}


.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  width: 100%;
}

.hero-title-full {
  grid-column: 1 / -1;
  text-align: center;
  font-size: clamp(3.2rem, 8vw, 5.5rem);
  color: #1a1a2e;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero-slogan {
  font-family: 'Inter', sans-serif;
  font-size: clamp(1.9rem, 4.5vw, 2.5rem);
  color: #1a1a2e;
  font-weight: 600;
  margin-bottom: 16px;
  letter-spacing: 1px;
}

.hero-text p {
  font-size: 1.45rem;
  color: #333;
  max-width: 560px;
  margin-bottom: 32px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-trust {
  margin-top: 28px;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.hero .btn-secondary {
  color: #333;
  border-color: rgba(0, 0, 0, 0.2);
}

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

.hero-trust i {
  color: var(--accent);
  margin-right: 6px;
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 450px;
}

.phone-mockup {
  width: 260px;
  height: 500px;
  border-radius: 40px;
  border: 8px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  position: absolute;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all 0.5s ease;
}

.phone-mockup.active {
  z-index: 10;
  transform: translateX(0) rotate(0deg) scale(1.08);
}

.phone-mockup.left {
  transform: translateX(-110px) rotate(-10deg) scale(0.88);
  z-index: 6;
  opacity: 0.75;
}

.phone-mockup.right {
  transform: translateX(110px) rotate(10deg) scale(0.88);
  z-index: 6;
  opacity: 0.75;
}

.phone-mockup.back {
  transform: translateX(0) rotate(0deg) scale(0.8);
  z-index: 3;
  opacity: 0.45;
}

.phone-screen {
  width: 100%;
  height: 100%;
  border-radius: 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px;
}

.phone-screen i {
  font-size: 4rem;
  margin-bottom: 16px;
}

.phone-screen h4 {
  font-size: 1.4rem;
  margin-bottom: 8px;
}

.phone-screen p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.8);
}

/* Sections */
section {
  padding: 100px 0;
  position: relative;
}

section:nth-child(even) {
  background: var(--bg-secondary);
}

/* Page header for sub-pages */
.page-header {
  padding: 360px 0 260px;
  background: linear-gradient(135deg, var(--bg-deep) 0%, var(--bg-secondary) 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.page-header .container {
  position: relative;
  z-index: 2;
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

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

/* Stats */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.stat-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-card);
  padding: 28px 20px;
  text-align: center;
  transition: all 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 107, 53, 0.3);
}

.stat-icon {
  font-size: 2rem;
  margin-bottom: 12px;
  color: #fff;
}

.stat-number {
  font-family: 'Poppins', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
}

.stat-label {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-top: 4px;
}

/* Games */
.games-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
}

.game-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-card);
  padding: 32px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.game-card:hover {
  transform: translateY(-10px);
  border-color: rgba(255, 107, 53, 0.3);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

.game-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--pink));
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

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

.game-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  font-size: 1.8rem;
  color: #fff;
  flex-shrink: 0;
}

.game-title h3 {
  font-size: 1.5rem;
  margin-bottom: 4px;
}

.game-title span {
  color: var(--text-muted);
  font-size: 0.85rem;
  font-weight: 500;
}

.game-tagline {
  font-family: 'Poppins', sans-serif;
  font-size: 1.7rem;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 8px;
}

.game-desc {
  color: var(--text-muted);
  margin-bottom: 20px;
  font-size: 1.3rem;
}

.game-features {
  list-style: none;
  margin-bottom: 24px;
}

.game-features li {
  padding: 6px 0;
  color: var(--text-muted);
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.game-features li i {
  color: var(--accent);
  font-size: 0.75rem;
}

.phone-stack {
  display: flex;
  justify-content: center;
  margin: 24px 0;
  position: relative;
  height: 200px;
}

.mini-phone {
  width: 90px;
  height: 170px;
  border-radius: 18px;
  border: 4px solid rgba(0, 0, 0, 0.1);
  position: absolute;
  overflow: hidden;
  transition: all 0.4s ease;
  display: grid;
  place-items: center;
  font-size: 1.5rem;
  object-fit: cover;
}

.mini-phone.left { transform: translateX(-130px) rotate(-10deg); z-index: 1; }
.mini-phone.center { transform: translateX(0) rotate(0deg); z-index: 2; }
.mini-phone.right { transform: translateX(130px) rotate(10deg); z-index: 1; }

.game-card:hover .mini-phone.left { transform: translateX(-130px) rotate(-10deg) scale(1.05); }
.game-card:hover .mini-phone.center { transform: translateX(0) scale(1.08); }
.game-card:hover .mini-phone.right { transform: translateX(130px) rotate(10deg) scale(1.05); }

.game-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.store-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--card-border);
  color: var(--text);
  font-size: 1.15rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.store-btn:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--accent);
  color: var(--accent);
}

/* Publishing */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-card);
  padding: 40px 36px;
  transition: all 0.3s ease;
  text-align: center;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 107, 53, 0.35);
}

.service-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(255, 107, 53, 0.12);
  display: grid;
  place-items: center;
  margin: 0 auto 20px;
  font-size: 1.6rem;
  color: var(--accent);
}

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 40px;
}

.service-card p {
  color: var(--text-muted);
  font-size: 1.5rem;
}

.services-carousel {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.services-carousel .service-card {
  height: 460px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: transform 0.4s ease, opacity 0.4s ease;
  background: rgb(26, 32, 56);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  color: #fff;
}

.services-carousel .service-card h3 {
  color: #fff;
}

.services-carousel .service-card p {
  color: rgba(255, 255, 255, 0.8);
}

.services-carousel .service-icon {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.process-grid .service-card {
  background: #fff;
  color: #333;
}

.process-grid .service-card h3 {
  color: #1a1a2e;
}

.process-grid .service-card p {
  color: #555;
}

.process-grid .service-icon {
  background: rgba(0, 0, 0, 0.05);
  color: #000;
}

.carousel-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.2);
  background: #fff;
  color: #000;
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.3s ease;
  flex-shrink: 0;
  display: grid;
  place-items: center;
}

.carousel-btn:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.publishing-cta {
  text-align: center;
  margin-top: 48px;
}

/* Milestones */
.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 100%;
  background: linear-gradient(180deg, var(--accent), var(--pink));
  opacity: 0.3;
}

.timeline-item {
  display: flex;
  justify-content: flex-end;
  padding-right: 50%;
  position: relative;
  margin-bottom: 40px;
}

.timeline-item:nth-child(even) {
  justify-content: flex-start;
  padding-right: 0;
  padding-left: 50%;
}

.timeline-content {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-card);
  padding: 24px;
  max-width: 340px;
  position: relative;
  transition: all 0.3s ease;
}

.timeline-content:hover {
  transform: scale(1.02);
  border-color: rgba(255, 107, 53, 0.3);
}

.timeline-dot {
  position: absolute;
  top: 24px;
  width: 16px;
  height: 16px;
  background: var(--accent);
  border-radius: 50%;
  border: 3px solid var(--bg-deep);
  z-index: 2;
}

.timeline-item:nth-child(odd) .timeline-dot { right: calc(50% - 8px); }
.timeline-item:nth-child(even) .timeline-dot { left: calc(50% - 8px); }

.timeline-year {
  color: var(--accent);
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 6px;
}

.timeline-content p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 64px;
}

.news-card {
  background: rgb(26, 32, 56);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-card);
  padding: 28px;
  transition: all 0.3s ease;
}

.news-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 107, 53, 0.3);
}

.news-date {
  color: #fff;
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.news-card h3 {
  font-size: 2rem;
  margin-bottom: 24px;
  color: #fff;
}

.news-card p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.5rem;
  margin-bottom: 16px;
}

.read-more {
  color: var(--accent);
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.3s ease;
}

.read-more:hover {
  gap: 10px;
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.contact-info h2 {
  margin-bottom: 16px;
}

.contact-info > p {
  color: var(--text-muted);
  margin-bottom: 32px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

.contact-item i {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(255, 107, 53, 0.12);
  display: grid;
  place-items: center;
  color: var(--accent);
  font-size: 1.3rem;
}

.contact-item span {
  color: var(--text-muted);
  font-size: 1.2rem;
}

.contact-item strong {
  color: #fff;
  display: block;
  font-size: 1.4rem;
}

.social-links {
  display: flex;
  gap: 12px;
  margin-top: 28px;
}

.social-links a {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  display: grid;
  place-items: center;
  color: var(--text);
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  transform: translateY(-3px);
}

.contact-form {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-card);
  padding: 48px 40px;
}

.contact-form label {
  font-size: 1.5rem;
}

.contact-form input,
.contact-form textarea {
  font-size: 1.2rem;
  padding: 18px 20px;
}

.contact-form .btn {
  font-size: 1.1rem;
  padding: 18px 36px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-size: 0.9rem;
  font-weight: 500;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid var(--card-border);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

/* Footer */
footer {
  background: #111122;
  padding: 60px 0 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand p {
  color: #fff;
  margin-top: 16px;
  font-size: 1.15rem;
}

.footer-links h4 {
  font-size: 1.2rem;
  margin-bottom: 20px;
  color: #fff;
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #fff;
  font-size: 1.1rem;
  transition: color 0.3s ease;
}

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #fff;
  font-size: 1rem;
}

/* Responsive */
@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }

  .hero-text p {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-buttons {
    justify-content: center;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: rgba(22, 33, 62, 0.98);
    backdrop-filter: blur(12px);
    flex-direction: column;
    padding: 24px;
    gap: 20px;
    transform: translateY(-150%);
    transition: transform 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  }

  .nav-links.open {
    transform: translateY(0);
  }

  .menu-toggle {
    display: block;
  }

  .stats-grid,
  .games-grid,
  .services-grid,
  .news-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 380px;
  }

  .phone-mockup {
    width: 200px;
    height: 380px;
  }

  .phone-mockup.left {
    transform: translateX(-75px) rotate(-8deg) scale(0.85);
  }

  .phone-mockup.right {
    transform: translateX(75px) rotate(8deg) scale(0.85);
  }

  .phone-mockup.back {
    transform: translateX(0) rotate(0deg) scale(0.75);
  }

  .timeline::before {
    left: 20px;
  }

  .timeline-item,
  .timeline-item:nth-child(even) {
    justify-content: flex-start;
    padding-left: 56px;
    padding-right: 0;
  }

  .timeline-dot,
  .timeline-item:nth-child(odd) .timeline-dot,
  .timeline-item:nth-child(even) .timeline-dot {
    left: 12px;
    right: auto;
  }

  .timeline-content {
    max-width: 100%;
  }

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

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  section {
    padding: 70px 0;
  }
}

/* Home page overrides */
.page-home {
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.page-home .hero {
  background: #fff;
}

.page-home .stat-label {
  color: #fff;
}

.page-home .section-intro {
  color: rgba(255, 255, 255, 0.85);
}

.page-home .game-desc,
.page-home .game-features li,
.page-home .game-title span {
  color: #444;
}

.page-home .game-tagline {
  color: var(--accent);
}

.page-home .game-card h3 {
  color: #1a1a2e;
}

.page-home h1,
.page-home h2,
.page-home h3,
.page-home h4,
.page-home .stat-number {
  color: #fff;
}

.page-about section,
.page-about .page-header {
  background: transparent;
}

.page-about,
.page-about h1,
.page-about h2,
.page-about h3,
.page-about h4,
.page-about p,
.page-about .section-headline,
.page-about .section-intro {
  color: #fff;
}

.page-contact {
  background: #fff;
  color: #000;
}

.page-contact .page-header {
  background: #fff;
}

.page-contact h1,
.page-contact h2,
.page-contact h3,
.page-contact h4,
.page-contact p,
.page-contact .section-headline,
.page-contact .section-intro {
  color: #000;
}

.page-contact .contact-item span {
  color: #555;
  font-size: 1.2rem;
}

.page-contact .contact-item strong {
  color: #000;
  font-size: 1.4rem;
}

.page-contact .contact-form {
  background: #f5f5f5;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.page-contact .contact-form label {
  color: #333;
}

.page-contact .navbar.scrolled {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.page-contact .navbar .logo,
.page-contact .nav-links a,
.page-contact .menu-toggle {
  color: #000;
}

.page-contact footer {
  background: #111122;
}

.page-contact .footer-brand p,
.page-contact .footer-links a,
.page-contact .footer-links h4,
.page-contact .footer-bottom,
.page-contact .footer-bottom p {
  color: #fff;
}

.page-about .service-icon {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.page-home .hero-title-full {
  color: #1a1a2e;
}

.page-home .hero-slogan {
  font-size: clamp(2.4rem, 5vw, 3rem);
}

.page-home .hero-text p {
  font-size: 1.8rem;
}

.page-home .navbar .logo {
  color: #1a1a2e;
}

.page-home .nav-links a {
  color: #1a1a2e;
}

.page-home .nav-links a:hover,
.page-home .nav-links a.active {
  color: var(--accent);
}

.page-home .menu-toggle {
  color: #1a1a2e;
}

.page-home .navbar.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.page-home .game-card {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  justify-content: start;
  gap: 40px 80px;
  background: transparent;
  border: none;
  border-radius: 0;
  margin: 0;
  padding: 80px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  overflow: visible;
}

.page-home .game-card:hover {
  transform: none;
  box-shadow: none;
}

.page-home .game-card:hover::before {
  opacity: 0;
}

.page-home .game-card .phone-stack .mini-phone {
  transition: all 0.3s ease;
  cursor: pointer;
}

.page-home .game-card .store-btn {
  background: transparent;
  border-color: rgba(0, 0, 0, 0.15);
  color: #333;
}

.page-home .game-card .phone-stack {
  grid-column: 2;
  grid-row: 2 / 7;
  margin: 0;
  height: 570px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-home .game-card .mini-phone {
  width: 230px;
  height: 460px;
  border-radius: 44px;
  border-width: 6px;
}

.page-home .game-card .game-header {
  grid-column: 1 / -1;
  justify-content: center;
  text-align: center;
  align-items: center;
}

@keyframes slideInLeft {
  from { transform: translateX(-300px); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

@keyframes unroll {
  0% { transform: scaleX(0); opacity: 0; }
  100% { transform: scaleX(1); opacity: 1; }
}

.news-grid.reveal {
  transform: scaleX(0);
  transform-origin: left;
  opacity: 0;
  transition: none;
}

.news-grid.reveal.active {
  transform: scaleX(1);
  transform-origin: left;
  opacity: 1;
  animation: unroll 1.2s ease forwards;
  transition: none;
}

@keyframes slideInRight {
  from { transform: translateX(300px); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

.process-grid.reveal .service-card {
  opacity: 0;
}

.process-grid.reveal.active .service-card:nth-child(1) { animation: slideInLeft 1s 0.1s forwards; }
.process-grid.reveal.active .service-card:nth-child(2) { animation: slideInRight 1s 0.4s forwards; }
.process-grid.reveal.active .service-card:nth-child(3) { animation: slideInLeft 1s 0.7s forwards; }
.process-grid.reveal.active .service-card:nth-child(4) { animation: slideInRight 1s 1s forwards; }

.page-home .game-card .game-tagline,
.page-home .game-card .game-desc,
.page-home .game-card .game-features li,
.page-home .game-card .game-buttons {
  opacity: 0;
  transform: translateX(-300px);
}

.page-home .games-grid.reveal.active .game-tagline { animation: slideInLeft 0.8s 0.2s forwards; }
.page-home .games-grid.reveal.active .game-desc { animation: slideInLeft 0.8s 0.5s forwards; }
.page-home .games-grid.reveal.active .game-features li:nth-child(1) { animation: slideInLeft 0.8s 0.8s forwards; }
.page-home .games-grid.reveal.active .game-features li:nth-child(2) { animation: slideInLeft 0.8s 1s forwards; }
.page-home .games-grid.reveal.active .game-features li:nth-child(3) { animation: slideInLeft 0.8s 1.2s forwards; }
.page-home .games-grid.reveal.active .game-buttons { animation: slideInLeft 0.8s 1.4s forwards; }

.page-home .game-card .game-icon {
  width: auto;
  height: auto;
  display: flex;
  align-items: center;
}

.page-home .game-card .game-title h3 {
  font-size: 3.4rem;
}

.page-home .game-card .game-title span {
  font-size: 1.5rem;
}

.page-home .game-card .game-tagline {
  font-size: 2.4rem;
  color: #fff;
}

.page-home #games .game-tagline {
  color: #1a1a2e;
}

.page-home .game-card .game-desc {
  font-size: 1.7rem;
}

.page-home .game-card .game-features li {
  font-size: 1.5rem;
}

.page-home .game-card .store-btn {
  font-size: 1.4rem;
}

@media (max-width: 768px) {
  .page-home .game-card {
    grid-template-columns: 1fr;
  }
  .page-home .game-card .phone-stack {
    grid-column: 1;
    grid-row: auto;
    margin: 16px auto;
  }
}

/* Utility */
.text-center {
  text-align: center;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.font-sans {
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}
