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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  background-color: #000000;
  color: #e2e8f0;
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.navbar.scrolled {
  background: rgba(0, 0, 0, 0.95);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.logo:hover {
  opacity: 0.85;
}

.logo-img {
  height: 36px;
  width: auto;
  object-fit: contain;
  display: block;
}

.logo-accent {
  color: #0B4FFF;
  text-shadow: 0 0 20px rgba(11, 79, 255, 0.4);
}

.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
}

.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: #a0a0a0;
  text-decoration: none;
  transition: color 0.25s ease;
  position: relative;
}

.nav-link:hover {
  color: #ffffff;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: #0B4FFF;
  border-radius: 1px;
  transition: width 0.25s ease;
  box-shadow: 0 0 10px rgba(11, 79, 255, 0.3);
}

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

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.mobile-menu-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: #e2e8f0;
  border-radius: 1px;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.mobile-menu-btn:hover span {
  background: #0B4FFF;
}

.mobile-menu-btn.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
  background: #0B4FFF;
}

.mobile-menu-btn.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
  background: #0B4FFF;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 24px 80px;
  overflow: hidden;
  background: #000000 url('./src/assets/hero-bg.png') center center / cover no-repeat;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
  z-index: 0;
}

.hero-bg-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  transition: opacity 0.5s ease;
}

.hero:hover .hero-bg-particles {
  opacity: 1.2;
}

.hero-bg-particles canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  animation: fadeUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero-content::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(11, 79, 255, 0.06) 0%, transparent 70%);
  pointer-events: none;
  z-index: -1;
  animation: pulseGlow 6s ease-in-out infinite;
}

.hero-logo-wrap {
  margin-bottom: 28px;
  animation: fadeUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.05s both;
}

.hero-logo-img {
  height: 200px;
  width: auto;
  object-fit: contain;
  display: block;
  margin: 0 auto;
  filter: drop-shadow(0 0 40px rgba(11, 79, 255, 0.7));
}

.hero-label {
  font-size: 3.5rem;
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 8px;
  letter-spacing: -2px;
  animation: fadeUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.1s both;
}

.hero-label-accent {
  color: #0B4FFF;
  text-shadow: 0 0 30px rgba(11, 79, 255, 0.5);
  position: relative;
  display: inline-block;
}

.hero-label-accent::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 3px;
  background: #0B4FFF;
  border-radius: 2px;
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 900;
  line-height: 1.15;
  color: #ffffff;
  margin-bottom: 24px;
  letter-spacing: -1.5px;
  animation: fadeUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.18s both;
}

.hero-title-accent {
  color: #2563ff;
  text-shadow: 0 0 40px rgba(37, 99, 255, 0.5), 0 0 80px rgba(37, 99, 255, 0.2);
  position: relative;
  z-index: 1;
  display: inline-block;
}

.hero-chart-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  display: flex;
  align-items: flex-end;
}

.hero-chart-svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.chart-main-line {
  stroke-dasharray: 2400;
  stroke-dashoffset: 2400;
  animation: drawChartMain 2.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.3s forwards;
}

.chart-main-arrowhead {
  opacity: 0;
  animation: fadeArrowMain 0.5s ease 2.4s forwards;
}

@keyframes drawChartMain {
  to { stroke-dashoffset: 0; }
}

@keyframes fadeArrowMain {
  to { opacity: 1; }
}

.hero-desc {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  font-weight: 400;
  color: #888888;
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto 40px;
  transition: color 0.3s ease;
  animation: fadeUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.28s both;
}

.hero:hover .hero-desc {
  color: #a0a0a0;
}

.hero-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.38s both;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 14px 36px;
  min-width: 160px;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: pointer;
  border: none;
  letter-spacing: 0.2px;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}

.btn:hover::before {
  width: 300px;
  height: 300px;
}

.btn-primary {
  background: #0B4FFF;
  color: #ffffff;
  border: none;
  box-shadow: 0 0 25px rgba(11, 79, 255, 0.35), 0 4px 15px rgba(11, 79, 255, 0.2);
  position: relative;
  overflow: hidden;
  font-weight: 700;
  letter-spacing: 0.3px;
}

.btn-primary::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

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

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-primary:hover {
  background: #0B4FFF;
  box-shadow: 0 0 40px rgba(11, 79, 255, 0.55), 0 0 80px rgba(11, 79, 255, 0.2), 0 6px 20px rgba(11, 79, 255, 0.25);
  transform: translateY(-2px);
}

.btn-primary:active {
  transform: translateY(0) scale(0.98);
  box-shadow: 0 0 15px rgba(11, 79, 255, 0.3);
  transition: all 0.1s ease;
}

.btn-outline {
  background: transparent;
  color: #0B4FFF;
  border: 1.5px solid #0B4FFF;
  box-shadow: 0 0 20px rgba(11, 79, 255, 0.15), inset 0 0 20px rgba(11, 79, 255, 0.05);
  position: relative;
  overflow: hidden;
}

.btn-outline::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(11, 79, 255, 0.1), transparent);
  transition: left 0.5s ease;
}

.btn-outline:hover::before {
  left: 100%;
}

.btn-outline:hover {
  color: #ffffff;
  background: #0B4FFF;
  border-color: #0B4FFF;
  box-shadow: 0 0 36px rgba(11, 79, 255, 0.4), 0 0 60px rgba(11, 79, 255, 0.12);
  transform: translateY(-2px);
}

.btn-outline:active {
  transform: translateY(0) scale(0.98);
  box-shadow: 0 0 20px rgba(11, 79, 255, 0.2);
  transition: all 0.1s ease;
}

.btn-lg {
  padding: 14px 36px;
  font-size: 1rem;
  min-width: 200px;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  animation: fadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.55s both;
}

.scroll-line {
  display: block;
  width: 1px;
  height: 48px;
  background: rgba(255, 255, 255, 0.15);
  position: relative;
  overflow: hidden;
}

.scroll-line::after {
  content: "";
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: #0B4FFF;
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0% { top: -100%; }
  50% { top: 100%; }
  100% { top: 100%; }
}

.stats {
  padding: 80px 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: #000000;
  position: relative;
  overflow: hidden;
}

.stats::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(11, 79, 255, 0.2), transparent);
}

.stats::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(11, 79, 255, 0.2), transparent);
}

.stats-grid {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.stat-card {
  text-align: center;
  padding: 40px 24px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  opacity: 0;
  transform: translateY(20px);
}

.stat-card.visible {
  opacity: 1;
  transform: translateY(0);
  animation: fadeUp 0.65s cubic-bezier(0.25, 0.46, 0.45, 0.94) calc(var(--stagger, 0) * 80ms) both;
}

.stat-card:nth-child(1).visible {
  animation-delay: 0.1s;
}

.stat-card:nth-child(2).visible {
  animation-delay: 0.25s;
}

.stat-card:nth-child(3).visible {
  animation-delay: 0.4s;
}

.stat-card:hover {
  border-color: rgba(11, 79, 255, 0.25);
  background: rgba(11, 79, 255, 0.03);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(11, 79, 255, 0.1);
}

.stat-card:hover .stat-number {
  color: #0B4FFF;
  transition: color 0.3s ease;
}

.stat-card:hover .stat-label {
  color: #0B4FFF;
  transition: color 0.3s ease;
}

.stat-number {
  display: block;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  color: #ffffff;
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -2px;
  font-variant-numeric: tabular-nums;
}

.stat-label {
  font-size: 0.875rem;
  font-weight: 500;
  color: #888888;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.games {
  padding: 100px 24px;
  background: #000000;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.section-label {
  font-size: 0.75rem;
  font-weight: 700;
  color: #0B4FFF;
  text-transform: uppercase;
  letter-spacing: 3px;
  text-align: center;
  margin-bottom: 12px;
}

.section-desc {
  font-size: 1rem;
  color: #666666;
  text-align: center;
  margin-bottom: 48px;
  margin-top: -40px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}

.game-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  opacity: 0;
  transform: translateY(30px);
}

.game-card.visible {
  opacity: 1;
  transform: translateY(0);
  animation: fadeUp 0.65s cubic-bezier(0.25, 0.46, 0.45, 0.94) calc(var(--stagger, 0) * 80ms) both;
}

.game-card:hover {
  border-color: rgba(11, 79, 255, 0.3);
  background: rgba(11, 79, 255, 0.03);
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(11, 79, 255, 0.12);
}

.game-image {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #0a0a0a;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.game-image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #0a0a0a 0%, #111111 100%);
}

.game-image-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.game-card:hover .game-image-thumb {
  transform: scale(1.05);
}

.game-image-text {
  font-size: 4rem;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.08);
  user-select: none;
}

.game-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(10px);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.75rem;
  font-weight: 600;
  color: #ffffff;
  transition: all 0.3s ease;
}

.game-card:hover .game-badge {
  border-color: rgba(11, 79, 255, 0.3);
  box-shadow: 0 0 15px rgba(11, 79, 255, 0.2);
}

.game-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #22c55e;
  animation: pulse 2s ease-in-out infinite;
}

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

.game-info {
  padding: 20px;
}

.game-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.game-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.3s ease;
}

.game-icon span {
  font-size: 1.25rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.3);
}

.game-card:hover .game-icon {
  border-color: rgba(11, 79, 255, 0.3);
  background: rgba(11, 79, 255, 0.08);
}

.game-card:hover .game-icon span {
  color: #0B4FFF;
}

.game-header-info {
  flex: 1;
  min-width: 0;
}

.game-name {
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 2px;
  letter-spacing: -0.2px;
  transition: color 0.3s ease;
}

.game-card:hover .game-name {
  color: #0B4FFF;
}

.game-creator {
  font-size: 0.8rem;
  color: #666666;
  font-weight: 500;
  transition: color 0.3s ease;
}

.game-card:hover .game-creator {
  color: #888888;
}

.game-stats {
  display: flex;
  gap: 20px;
}

.game-stat {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: #666666;
  font-weight: 500;
  transition: color 0.3s ease;
}

.game-card:hover .game-stat {
  color: #888888;
}

.game-stat svg {
  width: 14px;
  height: 14px;
  color: #0B4FFF;
  transition: all 0.3s ease;
}

.game-card:hover .game-stat svg {
  transform: scale(1.1);
}

.about {
  padding: 100px 24px;
  background: #000000;
  position: relative;
  overflow: hidden;
}

.about::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(11, 79, 255, 0.3), transparent);
  animation: shimmer 4s linear infinite;
}

.section-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.section-container::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(11, 79, 255, 0.03) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.section-container > * {
  position: relative;
  z-index: 1;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #ffffff;
  text-align: center;
  margin-bottom: 64px;
  letter-spacing: -1px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
  position: relative;
  display: inline-block;
  width: 100%;
}

.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: #0B4FFF;
  border-radius: 2px;
  margin: 16px auto 0;
  box-shadow: 0 0 15px rgba(11, 79, 255, 0.3);
}

.section-title.visible {
  opacity: 1;
  transform: translateY(0);
  animation: fadeUp 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

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

.card {
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: all 0.35s ease;
  overflow: hidden;
  position: relative;
}

.card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 16px;
  padding: 1px;
  background: linear-gradient(135deg, rgba(11, 79, 255, 0.1), transparent, rgba(11, 79, 255, 0.05));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

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

.card:hover {
  border-color: rgba(11, 79, 255, 0.25);
  background: rgba(11, 79, 255, 0.03);
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(11, 79, 255, 0.08);
}

.feature-card {
  padding: 40px 32px;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease, border-color 0.35s ease, background 0.35s ease, box-shadow 0.35s ease;
}

.feature-card.visible {
  opacity: 1;
  transform: translateY(0);
  animation: fadeUp 0.65s cubic-bezier(0.25, 0.46, 0.45, 0.94) calc(var(--stagger, 0) * 80ms) both;
}

.feature-card:nth-child(1).visible {
  animation-delay: 0.1s;
}

.feature-card:nth-child(2).visible {
  animation-delay: 0.25s;
}

.feature-card:nth-child(3).visible {
  animation-delay: 0.4s;
}

.feature-card:hover {
  transform: translateY(-6px);
}

.card-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0B4FFF;
  margin-bottom: 24px;
  border-radius: 12px;
  background: rgba(11, 79, 255, 0.08);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.card-icon svg {
  width: 24px;
  height: 24px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.card:hover .card-icon {
  background: rgba(11, 79, 255, 0.15);
}

.card:hover .card-icon svg {
  transform: scale(1.1);
}

.card-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 12px;
  letter-spacing: -0.3px;
  transition: color 0.3s ease;
}

.card:hover .card-title {
  color: #0B4FFF;
}

.card-text {
  font-size: 0.95rem;
  color: #888888;
  line-height: 1.7;
  font-weight: 400;
  transition: color 0.3s ease;
}

.card:hover .card-text {
  color: #a0a0a0;
}

.built-different-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 56px;
  flex-wrap: wrap;
}

.built-different-header .section-title {
  margin-bottom: 0;
}

.built-different-icon {
  height: 52px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 16px rgba(11, 79, 255, 0.4));
  animation: float 4s ease-in-out infinite;
}

.team-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.team-card {
  padding: 32px;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease, border-color 0.35s ease, background 0.35s ease, box-shadow 0.35s ease, all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
}

.team-card:hover {
  transform: translateY(-6px);
}

.team-card-featured {
  border-color: rgba(11, 79, 255, 0.25) !important;
  background: rgba(11, 79, 255, 0.04) !important;
  box-shadow: 0 0 40px rgba(11, 79, 255, 0.08);
}

.team-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.team-card-number {
  font-size: 0.7rem;
  font-weight: 800;
  color: #0B4FFF;
  letter-spacing: 2px;
  opacity: 0.7;
}

.team-card-tag {
  font-size: 0.65rem;
  font-weight: 700;
  color: #0B4FFF;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 4px 10px;
  border: 1px solid rgba(11, 79, 255, 0.25);
  border-radius: 20px;
  background: rgba(11, 79, 255, 0.06);
}

.team-card-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #0B4FFF, rgba(11, 79, 255, 0.3));
  border-radius: 0 2px 0 0;
  transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.team-card:hover .team-card-bar {
  width: 100%;
}

.team-card.visible {
  opacity: 1;
  transform: translateY(0);
  animation: fadeUp 0.65s cubic-bezier(0.25, 0.46, 0.45, 0.94) calc(var(--stagger, 0) * 80ms) both;
}

.team-card:nth-child(1).visible {
  animation-delay: 0.1s;
}

.team-card:nth-child(2).visible {
  animation-delay: 0.25s;
}

.team-card:nth-child(3).visible {
  animation-delay: 0.4s;
}

.team-card-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.card:hover .team-card-header {
  transform: translateX(4px);
}

.team-avatar {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(11, 79, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0B4FFF;
  flex-shrink: 0;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.team-avatar svg {
  width: 24px;
  height: 24px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.card:hover .team-avatar {
  background: rgba(11, 79, 255, 0.15);
}

.card:hover .team-avatar svg {
  transform: scale(1.1);
}

.team-name {
  font-size: 1.25rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.4px;
  margin-bottom: 12px;
  transition: color 0.3s ease;
}

.card:hover .team-name {
  color: #0B4FFF;
}

.team-role {
  font-size: 0.8rem;
  font-weight: 500;
  color: #0B4FFF;
  margin-top: 2px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cta {
  position: relative;
  padding: 120px 24px;
  text-align: center;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: #000000;
}

.cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(11, 79, 255, 0.3), transparent);
}

.cta-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
}

.cta-content.visible {
  opacity: 1;
  transform: translateY(0);
  animation: fadeUp 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

.cta-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 16px;
  letter-spacing: -1px;
  animation: fadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.cta-desc {
  font-size: 1.125rem;
  color: #888888;
  margin-bottom: 40px;
  line-height: 1.6;
  transition: color 0.3s ease;
  animation: fadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.12s both;
}

.cta:hover .cta-desc {
  color: #a0a0a0;
}

.cta-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.24s both;
}

.cta-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(11, 79, 255, 0.08) 0%, transparent 70%);
  pointer-events: none;
  animation: pulseGlow 4s ease-in-out infinite;
}

@keyframes pulseGlow {
  0%, 100% { opacity: 0.6; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 1; transform: translate(-50%, -50%) scale(1.1); }
}

.footer {
  padding: 48px 24px 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(0, 0, 0, 0.5);
  transition: all 0.3s ease;
}

.footer:hover {
  border-color: rgba(11, 79, 255, 0.1);
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 32px;
}

.footer-brand {
  max-width: 300px;
}

.footer-logo-img-wrap {
  margin-bottom: 8px;
  display: inline-block;
}

.footer-logo-img {
  height: 30px;
  width: auto;
  object-fit: contain;
  display: block;
}

.footer-brand .logo {
  font-size: 1.25rem;
  margin-bottom: 8px;
  display: inline-block;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.footer-brand .logo:hover {
  transform: scale(1.05);
}

.footer-brand .logo:hover .logo-accent {
  text-shadow: 0 0 30px rgba(11, 79, 255, 0.6), 0 0 60px rgba(11, 79, 255, 0.3);
}

.footer-tagline {
  font-size: 0.875rem;
  color: #666666;
  line-height: 1.6;
  transition: color 0.3s ease;
}

.footer-brand:hover .footer-tagline {
  color: #888888;
}

.footer-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: #888888;
  text-decoration: none;
  transition: color 0.2s ease;
  position: relative;
}

.footer-links a:hover {
  color: #0B4FFF;
}

.footer-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: #0B4FFF;
  border-radius: 1px;
  transition: width 0.25s ease;
  box-shadow: 0 0 10px rgba(11, 79, 255, 0.3);
}

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

.footer .logo-accent {
  color: #0B4FFF;
  text-shadow: 0 0 20px rgba(11, 79, 255, 0.4);
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  text-align: center;
  transition: all 0.3s ease;
}

.footer-bottom:hover {
  border-color: rgba(11, 79, 255, 0.1);
}

.footer-bottom p {
  font-size: 0.8rem;
  color: #666666;
  transition: color 0.3s ease;
}

.footer-bottom:hover p {
  color: #888888;
}

.toast {
  position: fixed;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%) translateY(120px);
  z-index: 9999;
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  pointer-events: none;
}

.toast.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

.toast-content {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: 12px;
  background: rgba(11, 79, 255, 0.12);
  border: 1px solid rgba(11, 79, 255, 0.25);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 10px 40px rgba(11, 79, 255, 0.15);
}

.toast-icon {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #0B4FFF;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
}

.toast-text {
  font-size: 0.875rem;
  font-weight: 600;
  color: #0B4FFF;
}

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

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

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}

@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position:  200% center; }
}

@media (max-width: 900px) {
  .cards-grid,
  .team-cards {
    grid-template-columns: 1fr;
  }
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .stat-card {
    padding: 32px 24px;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  .mobile-menu-btn {
    display: flex;
  }
  .hero-title {
    font-size: 2.5rem;
  }

  .hero-btns {
    flex-direction: column;
    align-items: center;
  }
  .btn {
    width: 100%;
    max-width: 280px;
  }
  .games-grid {
    grid-template-columns: 1fr;
  }
  .game-card {
    max-width: 340px;
    margin: 0 auto;
  }
  .footer-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .footer-brand {
    max-width: 100%;
  }
  .built-different-header {
    flex-direction: column;
    gap: 12px;
  }
}
