/* ===== GAMESUNION - 游戏公司官网样式 ===== */

:root {
  --color-bg: #0a0e17;
  --color-bg-secondary: #111827;
  --color-bg-card: #1a2234;
  --color-primary: #6366f1;
  --color-primary-light: #818cf8;
  --color-accent: #f472b6;
  --color-accent-orange: #fb923c;
  --color-accent-cyan: #22d3ee;
  --color-text: #f1f5f9;
  --color-text-muted: #94a3b8;
  --color-border: rgba(255, 255, 255, 0.08);
  --font-display: "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
  --font-body: "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  color: var(--color-primary-light);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--color-accent);
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== 导航栏 ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10, 14, 23, 0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--color-border);
  transition: background var(--transition);
}

.navbar.scrolled {
  background: rgba(10, 14, 23, 0.95);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--color-text);
}

.logo-icon {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  font-weight: 500;
  position: relative;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--color-text);
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-primary);
  transition: width var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--color-text);
  font-size: 1.5rem;
  cursor: pointer;
}

/* ===== Hero 区域 ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding-top: 84px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(99, 102, 241, 0.15), transparent),
    radial-gradient(ellipse 60% 40% at 80% 60%, rgba(244, 114, 182, 0.1), transparent),
    radial-gradient(ellipse 50% 30% at 20% 80%, rgba(34, 211, 238, 0.08), transparent);
  pointer-events: none;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 20%, transparent 70%);
  pointer-events: none;
}

.hero .container {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 80px 24px;
}

.hero-badge {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(99, 102, 241, 0.15);
  border: 1px solid rgba(99, 102, 241, 0.3);
  border-radius: 999px;
  font-size: 0.85rem;
  color: var(--color-primary-light);
  margin-bottom: 24px;
  animation: fadeInUp 0.8s ease;
}

.hero h1 {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #fff 30%, var(--color-primary-light) 70%, var(--color-accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: fadeInUp 0.8s ease 0.1s both;
}

.hero p {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: var(--color-text-muted);
  max-width: 600px;
  margin: 0 auto 40px;
  animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease 0.3s both;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-primary), #4f46e5);
  color: #fff;
  box-shadow: 0 4px 20px rgba(99, 102, 241, 0.4);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(99, 102, 241, 0.5);
  color: #fff;
}

.btn-outline {
  background: transparent;
  color: var(--color-text);
  border: 1px solid var(--color-border);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--color-primary);
  color: var(--color-text);
}

/* ===== 通用区块 ===== */
section {
  padding: 100px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-primary-light);
  margin-bottom: 12px;
}

.section-header h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 16px;
}

.section-header p {
  color: var(--color-text-muted);
  max-width: 560px;
  margin: 0 auto;
}

/* ===== 关于我们 ===== */
.about {
  background: var(--color-bg-secondary);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-content h3 {
  font-size: 1.5rem;
  margin-bottom: 16px;
}

.about-content p {
  color: var(--color-text-muted);
  margin-bottom: 16px;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 32px;
}

.stat-item {
  text-align: center;
  padding: 20px;
  background: var(--color-bg-card);
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
}

.stat-number {
  font-size: 2rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--color-primary-light), var(--color-accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin-top: 4px;
}

.about-visual {
  position: relative;
  height: 400px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(135deg, #1e1b4b, #312e81, #4c1d95);
}

.about-visual-inner {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 16px;
}

.about-visual-icon {
  font-size: 4rem;
  opacity: 0.9;
}

.about-visual-text {
  font-size: 1.1rem;
  font-weight: 600;
  opacity: 0.8;
}

/* ===== 游戏展示 ===== */
.games-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.game-card {
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  overflow: hidden;
  transition: all var(--transition);
  cursor: default;
}

.game-card:hover {
  transform: translateY(-8px);
  border-color: rgba(99, 102, 241, 0.3);
  box-shadow: var(--shadow);
}

.game-cover {
  height: 200px;
  position: relative;
  overflow: hidden;
}

.game-cover.racing {
  background: transparent;
}

.game-cover.dressup {
  background: transparent;
}

.game-cover.idle {
  background: transparent;
}

.game-cover-icon {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  opacity: 0.85;
}

.game-cover-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 12px;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(8px);
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
}

.game-info {
  padding: 24px;
}

.game-info h3 {
  font-size: 1.25rem;
  margin-bottom: 8px;
}

.game-info p {
  color: var(--color-text-muted);
  font-size: 0.9rem;
  margin-bottom: 16px;
}

.game-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.game-tag {
  padding: 4px 10px;
  background: rgba(99, 102, 241, 0.1);
  border: 1px solid rgba(99, 102, 241, 0.2);
  border-radius: 6px;
  font-size: 0.75rem;
  color: var(--color-primary-light);
}

/* ===== 特色 ===== */
.features {
  background: var(--color-bg-secondary);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.feature-card {
  padding: 32px 24px;
  background: var(--color-bg-card);
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
  text-align: center;
  transition: all var(--transition);
}

.feature-card:hover {
  border-color: rgba(99, 102, 241, 0.3);
  transform: translateY(-4px);
}

.feature-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  background: rgba(99, 102, 241, 0.1);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.feature-card h3 {
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.feature-card p {
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

/* ===== 联系我们 ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.contact-info h3 {
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 20px;
}

.contact-item-icon {
  width: 44px;
  height: 44px;
  background: rgba(99, 102, 241, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-item-text strong {
  display: block;
  margin-bottom: 4px;
}

.contact-item-text span {
  color: var(--color-text-muted);
  font-size: 0.9rem;
}

.contact-form {
  background: var(--color-bg-card);
  padding: 32px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  color: var(--color-text);
  font-family: inherit;
  font-size: 0.95rem;
  transition: border-color var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-primary);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

/* ===== 页脚 ===== */
.footer {
  background: var(--color-bg-secondary);
  border-top: 1px solid var(--color-border);
  padding: 60px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand p {
  color: var(--color-text-muted);
  font-size: 0.9rem;
  margin-top: 12px;
  max-width: 280px;
}

.footer-col h4 {
  font-size: 0.95rem;
  margin-bottom: 16px;
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: 10px;
}

.footer-col a {
  color: var(--color-text-muted);
  font-size: 0.9rem;
}

.footer-col a:hover {
  color: var(--color-text);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 30px;
  border-top: 1px solid var(--color-border);
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

/* ===== Privacy 页面 ===== */
.page-header {
  padding: 140px 0 60px;
  text-align: center;
  background: var(--color-bg-secondary);
  border-bottom: 1px solid var(--color-border);
}

.page-header h1 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  margin-bottom: 12px;
}

.page-header p {
  color: var(--color-text-muted);
}

.privacy-content {
  padding: 60px 0 100px;
}

.privacy-content .container {
  max-width: 800px;
}

.privacy-section {
  margin-bottom: 40px;
}

.privacy-section h2 {
  font-size: 1.35rem;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--color-border);
}

.privacy-section h3 {
  font-size: 1.1rem;
  margin: 20px 0 12px;
  color: var(--color-primary-light);
}

.privacy-section p,
.privacy-section li {
  color: var(--color-text-muted);
  margin-bottom: 12px;
  font-size: 0.95rem;
}

.privacy-section ul {
  padding-left: 24px;
  margin-bottom: 16px;
}

.privacy-section li {
  margin-bottom: 8px;
}

.privacy-updated {
  display: inline-block;
  padding: 8px 16px;
  background: rgba(99, 102, 241, 0.1);
  border-radius: var(--radius);
  font-size: 0.85rem;
  color: var(--color-primary-light);
  margin-bottom: 40px;
}

/* ===== 动画 ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== 响应式 ===== */
@media (max-width: 1024px) {
  .games-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 120px;
    left: 0;
    right: 0;
    flex-direction: column;
    background: rgba(10, 14, 23, 0.98);
    padding: 24px;
    gap: 20px;
    border-bottom: 1px solid var(--color-border);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-toggle {
    display: block;
  }

  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .games-grid {
    grid-template-columns: 1fr;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .stats {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .about-visual {
    height: 280px;
  }
}

/* ===== Bold Visual Refresh ===== */
body {
  background:
    radial-gradient(circle at 10% 10%, rgba(251, 146, 60, 0.12), transparent 28%),
    radial-gradient(circle at 85% 20%, rgba(244, 114, 182, 0.16), transparent 30%),
    radial-gradient(circle at 50% 90%, rgba(34, 211, 238, 0.1), transparent 32%),
    #060812;
}

.container {
  max-width: 1320px;
}

.navbar {
  background: linear-gradient(90deg, rgba(6, 8, 18, 0.82), rgba(21, 10, 42, 0.76));
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.navbar .container {
  height: 84px;
}

.logo {
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.logo-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  box-shadow: 0 0 36px rgba(244, 114, 182, 0.45);
}

.nav-links a {
  font-size: 0.86rem;
  letter-spacing: 0.08em;
}

.hero {
  min-height: 108vh;
  padding-top: 84px;
  isolation: isolate;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  z-index: 0;
  pointer-events: none;
}

.hero::before {
  width: 62vw;
  height: 62vw;
  right: -18vw;
  top: 5vh;
  background:
    conic-gradient(from 140deg, rgba(99, 102, 241, 0), rgba(99, 102, 241, 0.65), rgba(244, 114, 182, 0.55), rgba(251, 146, 60, 0.45), rgba(99, 102, 241, 0));
  border-radius: 50%;
  filter: blur(46px);
  opacity: 0.75;
  animation: pulseGlow 7s ease-in-out infinite;
}

.hero::after {
  left: -10vw;
  bottom: 4vh;
  width: 70vw;
  height: 16vw;
  background: linear-gradient(90deg, transparent, rgba(34, 211, 238, 0.35), rgba(244, 114, 182, 0.25), transparent);
  transform: rotate(-10deg);
  filter: blur(18px);
}

.hero-bg {
  background: transparent;
}

.hero-grid {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 88px 88px;
  transform: perspective(700px) rotateX(58deg) translateY(7%);
  transform-origin: center bottom;
  mask-image: linear-gradient(to bottom, transparent 0%, black 28%, transparent 84%);
}

.hero .container {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 40px;
  min-height: calc(108vh - 84px);
  padding: 32px 24px 80px;
}

.hero-contact {
  position: relative;
  z-index: 2;
  text-align: center;
  padding-top: 8px;
}

.hero-contact-title {
  font-size: clamp(3.2rem, 8.5vw, 7rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.06em;
  margin-bottom: 16px;
  background: linear-gradient(110deg, #fff 8%, #f8b4d9 34%, #8bf0ff 62%, #fff 86%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 24px 80px rgba(244, 114, 182, 0.22);
}

.hero-contact-email {
  display: inline-block;
  font-size: clamp(1rem, 2.2vw, 1.35rem);
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #fb923c;
  transition: color var(--transition), transform var(--transition);
}

.hero-contact-email:hover {
  color: #f97316;
  transform: translateY(-1px);
}

.hero-body {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  gap: 56px;
  align-items: center;
  text-align: left;
  width: 100%;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.hero-badge {
  padding: 10px 18px;
  border-color: rgba(244, 114, 182, 0.55);
  background: linear-gradient(90deg, rgba(99, 102, 241, 0.25), rgba(244, 114, 182, 0.18));
  color: #fff;
  letter-spacing: 0.18em;
  font-weight: 800;
  box-shadow: 0 0 34px rgba(244, 114, 182, 0.24);
}

.hero-headline {
  font-size: clamp(4rem, 9vw, 8.8rem);
  line-height: 0.9;
  letter-spacing: -0.08em;
  margin-bottom: 30px;
  text-transform: uppercase;
  background: linear-gradient(110deg, #fff 8%, #f8b4d9 34%, #8bf0ff 62%, #fff 86%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 24px 80px rgba(244, 114, 182, 0.22);
}

.hero-headline span {
  display: inline-block;
  transform: translateX(0.06em);
}

.hero p {
  max-width: 720px;
  margin: 0 0 44px;
  color: rgba(241, 245, 249, 0.76);
  font-size: clamp(1.06rem, 1.7vw, 1.36rem);
  line-height: 1.85;
}

.hero-actions {
  justify-content: flex-start;
}

.btn {
  padding: 16px 30px;
  border-radius: 999px;
  letter-spacing: 0.04em;
}

.btn-primary {
  background: linear-gradient(105deg, #ff3d81, #7c3aed 48%, #00d5ff);
  box-shadow: 0 16px 44px rgba(124, 58, 237, 0.46), inset 0 1px 0 rgba(255, 255, 255, 0.34);
}

.btn-primary:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 26px 64px rgba(244, 114, 182, 0.46), inset 0 1px 0 rgba(255, 255, 255, 0.42);
}

.btn-outline {
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.055);
  backdrop-filter: blur(12px);
}

.hero-showcase {
  position: relative;
  z-index: 2;
  min-height: 620px;
}

.showcase-card {
  position: absolute;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 34px;
  color: #fff;
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(18px);
}

.showcase-card::before {
  content: "";
  position: absolute;
  inset: -40%;
  background: linear-gradient(120deg, transparent 20%, rgba(255, 255, 255, 0.34), transparent 52%);
  transform: rotate(18deg);
}

.showcase-main {
  inset: 28px 4% auto auto;
  width: min(92%, 520px);
  height: 520px;
  padding: 38px;
  background: linear-gradient(180deg, rgba(10, 6, 30, 0.08), rgba(10, 6, 30, 0.55));
  transform: rotate(3deg);
}

.showcase-main::after {
  content: "";
  position: absolute;
  inset: auto 22px 22px auto;
  width: 42%;
  height: 34%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.34), transparent 66%);
  filter: blur(10px);
  z-index: 1;
}

.showcase-label {
  display: inline-block;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.32);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.18em;
}

.showcase-main strong {
  display: block;
  margin-top: 22px;
  font-size: clamp(2.2rem, 4vw, 4.5rem);
  line-height: 1;
  letter-spacing: -0.08em;
}

.showcase-main em {
  position: absolute;
  left: 38px;
  bottom: 38px;
  font-style: normal;
  font-size: 1.1rem;
  font-weight: 900;
  letter-spacing: 0.2em;
}

.showcase-pink,
.showcase-green {
  width: 220px;
  height: 168px;
  padding: 24px;
}

.showcase-pink {
  left: -12px;
  top: 120px;
  background: linear-gradient(180deg, rgba(10, 6, 30, 0.12), rgba(10, 6, 30, 0.62));
  transform: rotate(-8deg);
}

.showcase-green {
  right: 12px;
  bottom: 34px;
  background: linear-gradient(180deg, rgba(10, 6, 30, 0.12), rgba(10, 6, 30, 0.62));
  transform: rotate(7deg);
}

.showcase-pink span,
.showcase-green span {
  display: block;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 700;
}

.showcase-pink strong,
.showcase-green strong {
  display: block;
  margin-top: 18px;
  font-size: 3.2rem;
  line-height: 1;
}

section {
  position: relative;
  padding: 130px 0;
}

.section-tag {
  color: #ff8ad7;
  font-weight: 900;
  letter-spacing: 0.22em;
}

.section-header h2 {
  font-size: clamp(2.6rem, 6vw, 5.8rem);
  line-height: 0.98;
  letter-spacing: -0.07em;
}

.section-header p {
  font-size: 1.08rem;
  max-width: 680px;
}

.about,
.features,
.footer,
.page-header {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0)),
    rgba(8, 11, 24, 0.82);
}

.about-content h3,
.contact-info h3 {
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.1;
  letter-spacing: -0.05em;
}

.about-content p {
  font-size: 1.04rem;
  line-height: 1.9;
}

.stat-item {
  padding: 28px 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.035));
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.stat-number {
  font-size: clamp(2.4rem, 4vw, 4.2rem);
  line-height: 1;
}

.about-visual {
  height: 520px;
  background:
    radial-gradient(circle at 50% 42%, rgba(255, 255, 255, 0.24), transparent 15%),
    conic-gradient(from 180deg, #ff3d81, #7c3aed, #00d5ff, #ff8a00, #ff3d81);
  box-shadow: 0 30px 100px rgba(124, 58, 237, 0.25);
}

.about-visual::before {
  content: "";
  position: absolute;
  inset: 22px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 28px;
}

.about-visual-icon {
  font-size: 8rem;
  filter: drop-shadow(0 20px 26px rgba(0, 0, 0, 0.3));
}

.about-visual-text {
  font-size: 1.4rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.games-grid {
  grid-template-columns: 1.2fr 0.9fr 0.9fr;
  align-items: stretch;
  gap: 30px;
}

.game-card {
  position: relative;
  min-height: 560px;
  display: flex;
  flex-direction: column;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.085), rgba(255, 255, 255, 0.025));
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
}

.game-card-large {
  min-height: 640px;
}

.game-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.16), transparent 28%, transparent 70%, rgba(255, 255, 255, 0.08));
  opacity: 0;
  transition: opacity var(--transition);
}

.game-card:hover {
  transform: translateY(-14px) scale(1.01);
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 38px 120px rgba(124, 58, 237, 0.28);
}

.game-card:hover::after {
  opacity: 1;
}

.game-cover {
  flex: 1;
  min-height: 310px;
  border-radius: 0 0 46px 46px;
}

.game-card-large .game-cover {
  min-height: 390px;
}

.game-cover.racing,
.game-cover.dressup,
.game-cover.idle {
  background: transparent;
}

.game-cover-icon {
  font-size: clamp(5.5rem, 9vw, 10rem);
  transform: rotate(-9deg) scale(1.06);
  filter: drop-shadow(0 28px 28px rgba(0, 0, 0, 0.28));
}

.game-cover-tag {
  top: 20px;
  left: 20px;
  padding: 8px 14px;
  font-weight: 900;
  letter-spacing: 0.12em;
  background: rgba(0, 0, 0, 0.44);
}

.game-info {
  padding: 30px;
}

.game-info h3 {
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 1;
  letter-spacing: -0.06em;
}

.game-info p {
  margin-top: 14px;
  font-size: 1rem;
  line-height: 1.8;
}

.game-tag {
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.16);
  color: #fff;
}

.feature-card,
.contact-form {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.035));
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.feature-card {
  padding: 42px 26px;
}

.feature-icon,
.contact-item-icon {
  background: linear-gradient(135deg, rgba(255, 61, 129, 0.24), rgba(34, 211, 238, 0.18));
  box-shadow: 0 16px 40px rgba(124, 58, 237, 0.18);
}

.footer {
  border-top-color: rgba(255, 255, 255, 0.14);
}

@keyframes pulseGlow {
  0%,
  100% {
    transform: scale(0.94) rotate(0deg);
    opacity: 0.62;
  }
  50% {
    transform: scale(1.05) rotate(10deg);
    opacity: 0.88;
  }
}

@media (max-width: 1024px) {
  .hero-body {
    grid-template-columns: 1fr;
    gap: 24px;
    text-align: center;
  }

  .hero p,
  .hero-actions {
    margin-left: auto;
    margin-right: auto;
    justify-content: center;
  }

  .hero-showcase {
    min-height: 520px;
    width: min(640px, 100%);
    margin: 0 auto;
  }

  .games-grid {
    grid-template-columns: 1fr;
  }

  .game-card,
  .game-card-large {
    min-height: auto;
  }
}

@media (max-width: 768px) {
  .navbar .container {
    height: 72px;
  }

  .nav-links {
    top: 72px;
  }

  .hero {
    min-height: auto;
    padding-top: 72px;
  }

  .hero .container {
    min-height: auto;
    gap: 28px;
    padding-top: 48px;
    padding-bottom: 70px;
  }

  .hero-contact-title {
    font-size: clamp(2.6rem, 14vw, 4.2rem);
  }

  .hero-headline {
    font-size: clamp(3.2rem, 17vw, 5.4rem);
  }

  .hero-showcase {
    min-height: 430px;
  }

  .showcase-main {
    width: 88%;
    height: 360px;
    right: 6%;
    padding: 26px;
  }

  .showcase-main::after {
    font-size: 8rem;
  }

  .showcase-pink,
  .showcase-green {
    width: 168px;
    height: 126px;
    padding: 18px;
  }

  .showcase-pink strong,
  .showcase-green strong {
    font-size: 2.2rem;
  }

  section {
    padding: 90px 0;
  }

  .section-header h2 {
    font-size: clamp(2.4rem, 13vw, 4.2rem);
  }

  .about-visual {
    height: 340px;
  }

  .game-cover,
  .game-card-large .game-cover {
    min-height: 280px;
  }
}

/* ===== Local Image Assets ===== */
.hero-bg {
  overflow: hidden;
}

.hero-bg-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(6, 8, 18, 0.92) 0%, rgba(9, 10, 26, 0.78) 38%, rgba(45, 10, 60, 0.58) 100%),
    radial-gradient(ellipse 80% 70% at 72% 34%, rgba(244, 114, 182, 0.28), transparent 52%);
  pointer-events: none;
}

.showcase-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.showcase-content {
  position: relative;
  z-index: 2;
  height: 100%;
}

.showcase-main .showcase-content {
  display: flex;
  flex-direction: column;
}

.showcase-main {
  background: linear-gradient(180deg, rgba(10, 6, 30, 0.08), rgba(10, 6, 30, 0.55));
}

.showcase-main::after {
  content: "";
  inset: auto 22px 22px auto;
  width: 42%;
  height: 34%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.34), transparent 66%);
  filter: blur(10px);
}

.showcase-pink,
.showcase-green {
  background: linear-gradient(180deg, rgba(10, 6, 30, 0.12), rgba(10, 6, 30, 0.62));
}

.game-cover-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.6s ease;
}

.game-cover::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(6, 8, 18, 0.08), rgba(6, 8, 18, 0.52)),
    radial-gradient(circle at 74% 24%, rgba(255, 255, 255, 0.18), transparent 18%);
  pointer-events: none;
}

.game-card:hover .game-cover-image {
  transform: scale(1.06);
}

.game-cover-icon {
  display: none;
}

.game-cover-tag {
  z-index: 2;
}

/* ===== Minimal Footer ===== */
.footer-minimal {
  padding: 40px 24px;
  text-align: center;
  border-top: 1px solid var(--color-border);
  background: rgba(8, 11, 24, 0.9);
}

.footer-minimal .container {
  max-width: 1320px;
}

.footer-minimal .footer-copy {
  color: #cbd5e1;
  font-size: 0.92rem;
  margin: 0 0 10px;
  letter-spacing: 0.02em;
}

.footer-minimal .footer-links {
  margin: 0;
  font-size: 0.92rem;
}

.footer-minimal .footer-links a {
  color: #fb923c;
  font-weight: 600;
  transition: color var(--transition);
}

.footer-minimal .footer-links a:hover {
  color: #f97316;
}

.footer-minimal .footer-sep {
  color: #475569;
  margin: 0 12px;
}

@media (max-width: 768px) {
  .footer-minimal {
    padding: 32px 20px;
  }

  .footer-minimal .footer-copy,
  .footer-minimal .footer-links {
    font-size: 0.82rem;
  }
}
