body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background: #171c22;
  color: #f2f2f2;
}
h1,
h2 {
  font-family: 'Orbitron', sans-serif;
}

.page {
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 20px;
}

.hero {
  text-align: center;
  margin-bottom: 40px;
}

.hero h1 {
  font-size: 42px;
  margin-bottom: 10px;
}

.hero p {
  color: #9ca8b3;
}

.search-box {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 24px;
}

input {
  padding: 12px 16px;
  border-radius: 10px;
  border: none;
  min-width: 260px;
  font-size: 16px;
}

button {
  padding: 12px 18px;
  border-radius: 10px;
  border: none;
  background: #0f6975;
  color: #f2f2f2;
  font-weight: bold;
  cursor: pointer;
}

button:hover {
  background: #2d939a;
}

.collection {
  margin-bottom: 50px;
}

.collection-header {
  margin-bottom: 20px;
}

.collection-header h2 {
  margin-bottom: 5px;
}

.progress {
  color: #f2f2f2;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 18px;
}

.card {
  background: #1f2a33;
  border-radius: 16px;
  padding: 14px;
  text-align: center;
  min-height: 170px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
}

.card img {
  width: 100px;
  height: 100px;
  object-fit: contain;
}

.placeholder {
  width: 100px;
  height: 100px;
  margin: 0 auto;
  border-radius: 50%;
  background: #0f6975;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 42px;
  color: #f2f2f2;
}

.card-name {
  margin-top: 12px;
  font-weight: bold;
}

.rarity {
  margin-top: 4px;
  font-size: 13px;
  color: #aaa;
}

.nav {
  max-width: 1100px;
  margin: 0 auto;
  padding: 24px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;

  font-weight: 900;
  font-size: 24px;
  color: #F0B63F;
  text-decoration: none;
}

.logo img {
  width: 60px;
  height: 60px;
  object-fit: contain;

}

.nav a {
  color: #9CA8B3;
  text-decoration: none;
  margin-left: 20px;
  font-weight: bold;
}

.nav a:hover {
  color: #F0B63F;
}

.landing-hero {
  max-width: 1100px;
  margin: 40px auto 80px;
  padding: 40px 20px;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 40px;
  align-items: center;
}

.hero-content h1 {
  font-size: 56px;
  line-height: 1.05;
  margin-bottom: 20px;
}

.hero-content p {
  color: #9CA8B3;
  font-size: 19px;
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.btn {
  padding: 14px 20px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 900;
  display: inline-block;
}

.btn.primary {
  background: #F0B63F;
  color: #171C22;
}

.btn.secondary {
  background: #1F2A33;
  color: #F2F2F2;
  border: 1px solid rgba(255,255,255,0.1);
}

.hero-card {
  background: linear-gradient(145deg, #1F2A33, #0F6975);
  border-radius: 28px;
  padding: 36px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.35);
  text-align: center;
}

.section {
  max-width: 1100px;
  margin: 0 auto 80px;
  padding: 0 20px;
}

.section h2,
.cta-section h2 {
  font-size: 34px;
  margin-bottom: 14px;
}

.section-text,
.cta-section p {
  color: #9CA8B3;
  line-height: 1.7;
  max-width: 760px;
}

.feature-grid {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}

.feature-card {
  background: #1F2A33;
  padding: 24px;
  border-radius: 18px;
  box-shadow: 0 10px 24px rgba(0,0,0,0.22);
}

.feature-card p {
  color: #9CA8B3;
}

.split {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 30px;
  align-items: center;
}

.steps {
  display: grid;
  gap: 12px;
}

.steps div {
  background: #1F2A33;
  padding: 16px;
  border-radius: 14px;
  font-weight: bold;
}

.steps span {
  display: inline-flex;
  width: 28px;
  height: 28px;
  background: #F0B63F;
  color: #171C22;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
}

.cta-section {
  max-width: 1100px;
  margin: 0 auto 80px;
  padding: 50px 20px;
  background: #1F2A33;
  border-radius: 28px;
  text-align: center;
}

.cta-section p {
  margin: 0 auto;
}

.footer {
  text-align: center;
  color: #9CA8B3;
  padding: 30px 20px;
}

.footer-links {
  margin-bottom: 12px;

  display: flex;
  justify-content: center;
  gap: 22px;
  flex-wrap: wrap;
}

.footer-links a {
  position: relative;

  color: #9CA8B3;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;

  transition:
    color 0.2s ease,
    opacity 0.2s ease;
}

.footer-links a:hover {
  color: #F0B63F;
}

.footer-links a::after {
  content: "";

  position: absolute;
  left: 0;
  bottom: -4px;

  width: 0%;
  height: 2px;

  background: #F0B63F;

  transition: width 0.25s ease;
}

.footer-links a:hover::after {
  width: 100%;
}

.footer-image{
  width: 120px;
  max-width: 100%;
  object-fit: contain;
}

@media (max-width: 760px) {
  .landing-hero,
  .split {
    grid-template-columns: 1fr;
  }

  .hero-content h1 {
    font-size: 38px;
  }

  .nav {
    flex-direction: column;
    gap: 14px;
  }

  .nav a {
    margin: 0 8px;
  }
}

.hero-image {
  width: 180px;
  max-width: 100%;
  object-fit: contain;
  margin-bottom: 20px;

  filter:
    drop-shadow(0 0 12px rgba(240,182,63,0.35))
    drop-shadow(0 0 30px rgba(15,105,117,0.35));
}

.shop-hero {
  max-width: 900px;
  margin: 50px auto 80px;
  padding: 0 20px;
  text-align: center;
}

.shop-hero h1 {
  font-size: 52px;
  margin-bottom: 16px;
}

.shop-hero p {
  color: #9CA8B3;
  font-size: 19px;
  line-height: 1.7;
}

.shop-grid {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
}

.shop-card {
  position: relative;

  background: #1F2A33;
  border-radius: 22px;
  padding: 40px 28px 28px;

  box-shadow: 0 14px 34px rgba(0,0,0,0.28);
  border: 1px solid rgba(255,255,255,0.06);

  display: flex;
  flex-direction: column;
  
}

.shop-card-content {
  flex: 1;
}

.shop-card.featured {
  border: 1px solid rgba(240,182,63,0.55);
  box-shadow:
    0 18px 42px rgba(0,0,0,0.35),
    0 0 30px rgba(240,182,63,0.12);
}

.shop-badge {
  position: absolute;

  top: 18px;
  right: 18px;

  padding: 6px 10px;
  border-radius: 999px;

  background: #F0B63F;
  color: #171C22;

  font-size: 13px;
  font-weight: 900;
}

.shop-card h3 {
  font-size: 23px;
  margin-bottom: 12px;
}

.shop-card p {
  color: #9CA8B3;
  line-height: 1.6;
}

.shop-card ul {
  padding-left: 18px;
  margin: 20px 0;
  color: #F2F2F2;
}

.shop-card li {
  margin-bottom: 8px;
}

.price {
  font-size: 24px;
  font-weight: 900;
  color: #F0B63F;
  margin: 22px 0;
}

.feature-hero {
  max-width: 1200px;
  margin: 60px auto 100px;

  padding: 0 20px;

  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: center;
}

.feature-tag {
  color: #F0B63F;
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: 1px;
}

.feature-hero h1 {
  font-size: 64px;
  line-height: 1.05;
  margin-bottom: 22px;
}

.feature-subtext {
  color: #9CA8B3;
  font-size: 19px;
  line-height: 1.8;
}

.feature-showcase {
  display: flex;
  justify-content: center;
}

.feature-showcase img {
  width: 100%;
  max-width: 420px;

  border-radius: 28px;

  box-shadow:
    0 25px 60px rgba(0,0,0,0.35),
    0 0 40px rgba(15,105,117,0.18);
}

.feature-card.big {
  grid-column: span 2;
}

.feature-icon {
  font-size: 38px;
  margin-bottom: 16px;
}

.video-section {
  max-width: 1100px;
  margin: 0 auto 100px;
  padding: 0 20px;
}

.section-header {
  margin-bottom: 28px;
}

.section-header p {
  color: #9CA8B3;
}

.video-wrapper {
  position: relative;
  width: 100%;

  border-radius: 28px;
  overflow: hidden;

  box-shadow:
    0 20px 50px rgba(0,0,0,0.35);
}

.video-wrapper iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
}

.pack-slider {
  margin-top: 30px;

  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));

  gap: 20px;
}

.pack-slide {
  background: #1F2A33;

  border-radius: 22px;
  padding: 20px;

  text-align: center;

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.pack-slide:hover {
  transform: translateY(-6px);

  box-shadow:
    0 16px 36px rgba(0,0,0,0.32),
    0 0 24px rgba(15,105,117,0.14);
}

.pack-slide img {
  width: 100%;
  border-radius: 16px;
  margin-bottom: 14px;
}

.pack-slide span {
  font-weight: 700;
}

@media (max-width: 860px) {

  .feature-hero {
    grid-template-columns: 1fr;
  }

  .feature-hero h1 {
    font-size: 44px;
  }

  .feature-card.big {
    grid-column: span 1;
  }

}

.slideshow {
  position: relative;
  min-height: 360px;
  overflow: hidden;
}

.slideshow .slide {
  position: absolute;
  inset: 0;

  width: 100%;
  height: 100%;
  object-fit: contain;

  opacity: 0;
  transform: scale(1.02);

  transition:
    opacity 0.9s ease,
    transform 1.2s ease;
}

.slideshow .slide.active {
  opacity: 1;
  transform: scale(1);
}

.streamer-grid {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.streamer-card {
  background: #1F2A33;
  border-radius: 22px;
  padding: 24px;
  text-align: center;
  box-shadow: 0 14px 34px rgba(0,0,0,0.26);
  border: 1px solid rgba(255,255,255,0.06);
}

.streamer-card img {
  width: 96px;
  height: 96px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 14px;
  border: 3px solid #F0B63F;
}

.streamer-card h3 {
  margin-bottom: 8px;
}

.streamer-card p {
  color: #9CA8B3;
  line-height: 1.5;
}

.streamer-link {
  display: inline-block;
  margin-top: 14px;
  color: #F0B63F;
  text-decoration: none;
  font-weight: 800;
}

.streamer-link:hover {
  color: #ffffff;
}

.legal-page {
  max-width: 900px;
  margin: 60px auto;
  padding: 0 20px;
}

.legal-page h1 {
  margin-bottom: 40px;
}

.legal-page h2 {
  margin-top: 40px;
  margin-bottom: 12px;
}

.legal-page p {
  color: #9CA8B3;
  line-height: 1.8;
}