* {
  box-sizing: border-box;
  font-family: system-ui, -apple-system, sans-serif;
}

body {
  margin: 0;
  background: white;
  color: black;
}

/* HEADER */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  backdrop-filter: blur(12px);
  background: white;
  z-index: 10;
}

.header-inner {
  max-width: 1200px;
  margin: auto;
  padding: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header nav a {
  color: black;
  text-decoration: none;
  margin-left: 16px;
  opacity: 0.8;
}

.header nav a:hover {
  opacity: 1;
}

/* LAYOUT */
.container {
  max-width: 1200px;
  margin: auto;
  padding: 120px 16px 40px;
}

/* POSTER */
.poster img {
  width: 100%;
  border-radius: 24px;
}

/* PRODUCTS */
.products {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.product-card {
  background: rgba(0, 0, 0, 0.05);
  border-radius: 24px;
  padding: 16px;
  text-align: center;
  position: relative;
  transition: 0.25s;
}

.product-card:hover {
  transform: scale(1.03);
  background: rgba(0, 0, 0, 0.08);
}

.product-image img {
  width: 150px;
}

.note {
  font-size: 12px;
  opacity: 0.7;
}

.product-card h3 {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
}

.coin {
  width: 50px;
}

.price {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.old {
  text-decoration: line-through;
  opacity: 0.5;
}

button {
  margin-top: 10px;
  width: 100%;
  padding: 10px;
  border-radius: 14px;
  border: none;
  background: rgba(255, 255, 255, 0.15);
  color: black;
  cursor: pointer;
}

button:hover {
  background: rgba(255, 255, 255, 0.25);
}

/* FAQ */
.faq {
  margin-top: 80px;
}

.faq h2 {
  text-align: center;
  margin-bottom: 24px;
}

.faq-item {
  padding: 14px 16px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.05);
  margin-bottom: 10px;
}

/* FOOTER */
.footer {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 80px;
  padding: 30px 16px;
  text-align: center;
  opacity: 0.8;
}

.footer .logo.small {
  width: 120px;
}

.footer .links a {
  color: black;
  margin: 0 10px;
  font-size: 13px;
  text-decoration: none;
}

.copy {
  display: block;
  margin-top: 10px;
  font-size: 12px;
  opacity: 0.6;
}
.faq-item {
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.04);
  margin-bottom: 10px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 14px 16px;
  background: none;
  border: none;
  font-size: 16px;
  text-align: left;
  cursor: pointer;
  font-weight: 600;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 16px;
  font-size: 14px;
  opacity: 0;
  transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  padding: 10px 16px 16px;
  opacity: 1;
}
#snow {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}
