@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;700;800&display=swap");

:root {
  --bg: #000000;
  --text: #ffffff;
  --muted: #d1d5db;
  --muted-dark: #9ca3af;
  --yellow: #facc15;
  --yellow-strong: #eab308;
  --card: #111827;
  --card-2: #1f2937;
  --border: rgba(250, 204, 21, 0.2);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Montserrat", "Segoe UI", sans-serif;
}

.site {
  min-height: 100vh;
}

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 50;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(250, 204, 21, 0.1);
}

.nav-inner {
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo-wrap {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  object-fit: cover;
}

.logo-text {
  font-size: 1.05rem;
  font-weight: 700;
  background: linear-gradient(90deg, #facc15, #fde047);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.desktop-links {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.nav-link {
  position: relative;
  color: #d1d5db;
  text-decoration: none;
  padding: 0.5rem 0.9rem;
  font-size: 0.95rem;
  transition: color 0.2s ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0.9rem;
  right: 0.9rem;
  bottom: 0.2rem;
  height: 2px;
  background: linear-gradient(90deg, #facc15, #eab308);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

.nav-link:hover {
  color: var(--yellow);
}

.nav-link:hover::after {
  transform: scaleX(1);
}

.desktop-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.steam-count {
  color: var(--muted-dark);
  font-size: 0.9rem;
}

.highlight {
  color: var(--yellow);
}

.btn {
  display: inline-block;
  text-align: center;
  text-decoration: none;
  border: 0;
  cursor: pointer;
  border-radius: 10px;
  font-weight: 700;
  padding: 0.75rem 1.2rem;
  transition: 0.25s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-sm {
  font-size: 0.9rem;
  padding: 0.6rem 1rem;
}

.btn-primary {
  background: linear-gradient(90deg, var(--yellow), var(--yellow-strong));
  color: #000;
}

.btn-primary:hover {
  box-shadow: 0 14px 30px rgba(250, 204, 21, 0.35);
}

.btn-secondary {
  background: linear-gradient(90deg, #ca8a04, #eab308);
  color: #fff;
}

.btn-outline {
  border: 2px solid var(--yellow);
  color: var(--yellow);
  background: transparent;
}

.btn-outline:hover {
  background: rgba(250, 204, 21, 0.12);
}

.full {
  width: 100%;
}

.menu-toggle {
  display: none;
  background: transparent;
  color: #d1d5db;
  border: 0;
  font-size: 1.8rem;
}

.mobile-menu {
  border-top: 1px solid rgba(250, 204, 21, 0.1);
  padding: 0.75rem 1rem 1rem;
}

.mobile-link {
  display: block;
  color: #d1d5db;
  text-decoration: none;
  padding: 0.6rem 0.75rem;
  border-radius: 10px;
}

.mobile-link:hover {
  color: var(--yellow);
  background: rgba(250, 204, 21, 0.08);
}

.mobile-link.secondary {
  color: var(--muted-dark);
}

.mobile-secondary {
  border-top: 1px solid rgba(250, 204, 21, 0.1);
  margin-top: 0.5rem;
  padding-top: 0.75rem;
  display: grid;
  gap: 0.5rem;
}

.hidden {
  display: none;
}

.hero {
  position: relative;
  padding: 8.5rem 0 5rem;
  overflow: hidden;
  text-align: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(250, 204, 21, 0.1), transparent);
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-size: clamp(2.2rem, 6vw, 4.4rem);
  margin: 1.4rem 0;
  line-height: 1.15;
}

.gradient-text {
  background: linear-gradient(90deg, #facc15, #fde047, #eab308);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-image-wrap {
  display: flex;
  justify-content: center;
}

.hero-image {
  width: min(500px, 80vw);
  max-height: 500px;
  object-fit: contain;
}

.hero p {
  color: var(--muted);
  font-size: 1.1rem;
  width: min(760px, 90vw);
  margin: 0 auto 2rem;
}

.hero-actions {
  display: flex;
  gap: 0.9rem;
  justify-content: center;
  flex-wrap: wrap;
}

.section {
  padding: 5rem 0;
}

.features-section {
  background: rgba(3, 7, 18, 0.5);
}

.section h2 {
  font-size: clamp(2rem, 4vw, 2.5rem);
  text-align: center;
  margin: 0 0 2.4rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.4rem;
}

.feature-card,
.streamer-card {
  background: linear-gradient(135deg, #1f2937, #111827);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 1.5rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.feature-card:hover,
.streamer-card:hover {
  transform: translateY(-2px);
  border-color: rgba(250, 204, 21, 0.4);
  box-shadow: 0 20px 40px rgba(250, 204, 21, 0.16);
}

.feature-icon {
  font-size: 2.8rem;
  margin-bottom: 1rem;
}

.feature-card h3 {
  margin: 0 0 0.8rem;
  font-size: 1.4rem;
}

.feature-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.community-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.community-grid h3 {
  font-size: 1.8rem;
  margin: 0 0 1.1rem;
}

.community-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.9rem;
}

.community-list li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--muted);
  font-size: 1.05rem;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--yellow);
}

.shop-card {
  background: linear-gradient(135deg, rgba(250, 204, 21, 0.2), rgba(202, 138, 4, 0.05));
  border: 1px solid rgba(250, 204, 21, 0.3);
  border-radius: 14px;
  padding: 1.5rem;
}

.shop-title {
  text-align: center;
  color: var(--yellow);
}

.shop-items {
  display: grid;
  gap: 0.7rem;
  margin-bottom: 1rem;
}

.shop-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(55, 65, 81, 0.6);
  border-radius: 10px;
  padding: 0.75rem;
  gap: 0.8rem;
}

.shop-item span:first-child {
  color: #e5e7eb;
}

.streamers-wrap {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.streamers-grid {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.streamer-thumb {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 10px;
}

.streamer-card h3 {
  margin: 0.8rem 0 0.2rem;
  color: #fff;
}

.streamer-card p {
  margin: 0;
  color: var(--muted-dark);
}

.carousel-btn {
  width: 56px;
  height: 56px;
  border-radius: 10px;
  border: 0;
  cursor: pointer;
  font-size: 2rem;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

.carousel-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.06);
}

.cta {
  background: linear-gradient(90deg, rgba(250, 204, 21, 0.1), rgba(202, 138, 4, 0.06), rgba(250, 204, 21, 0.1));
}

.cta-content {
  text-align: center;
}

.cta-content p {
  color: var(--muted);
  margin-bottom: 1.8rem;
}

.footer {
  border-top: 1px solid var(--border);
  padding: 2rem 0;
}

.footer-inner {
  text-align: center;
  color: var(--muted-dark);
}

.footer a {
  color: var(--yellow);
  text-decoration: none;
}

.reveal-section {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

@media (max-width: 1024px) {
  .features-grid,
  .streamers-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 768px) {
  .desktop-links,
  .desktop-actions,
  .logo-text {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .streamers-wrap {
    align-items: stretch;
  }

  .carousel-btn {
    width: 46px;
    height: auto;
    font-size: 1.5rem;
  }
}

@media (max-width: 640px) {
  .features-grid,
  .streamers-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 4rem 0;
  }
}
