@import url('https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap');
body {
  margin: 0;
  padding: 0;
  font-family: 'Press Start 2P', monospace;
  background: #7ec6f7;
  overflow-x: hidden;
  min-height: 100vh;
}
.snow {
  position: fixed;
  top: 0; left: 0; width: 100vw; height: 100vh;
  pointer-events: none;
  z-index: 100;
}
header {
  width: 100vw;
  padding: 30px 0 0 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
  z-index: 2;
}
.logo {
  max-width: 140px;
  height: auto;
  margin-left: 40px;
  display: block;
}
nav {
  display: flex;
  gap: 30px;
  margin-top: 20px;
}
nav a {
  color: #1a3557;
  text-decoration: none;
  font-size: 18px;
  font-weight: bold;
  letter-spacing: 1px;
  transition: color 0.2s;
}
nav a:hover {
  color: #3ad6ff;
}
.buy-btn {
  background: #1a3557;
  color: #fff;
  border-radius: 20px;
  padding: 10px 28px;
  font-size: 16px;
  font-weight: bold;
  border: none;
  margin-right: 40px;
  margin-top: 10px;
  cursor: pointer;
  box-shadow: 2px 2px 0 #0e1b2b;
  transition: background 0.2s;
}
.buy-btn:hover {
  background: #3ad6ff;
  color: #1a3557;
}
.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 30px;
  position: relative;
  z-index: 1;
}
.yeti-img {
  width: 220px;
  height: 220px;
  margin-bottom: -40px;
  background: #fff;
  border-radius: 50%;
  border: 6px solid #1a3557;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 80px;
  color: #1a3557;
  position: relative;
  overflow: hidden;
}
.hero-title {
  background: #1a3557;
  color: #fff;
  border-radius: 16px;
  border: 4px solid #3ad6ff;
  padding: 18px 40px 10px 40px;
  font-size: 36px;
  font-weight: bold;
  margin-top: -30px;
  box-shadow: 0 4px 0 #0e1b2b;
  text-align: center;
  letter-spacing: 2px;
  position: relative;
  z-index: 2;
}
.hero-title span {
  color: #3aff7a;
  display: block;
  font-size: 32px;
  margin-top: 8px;
}
.divider {
  width: 100vw;
  text-align: center;
  margin: 30px 0 0 0;
  font-size: 32px;
  color: #3ad6ff;
  letter-spacing: 10px;
  user-select: none;
}
.divider .flake {
  margin: 0 8px;
}
.section {
  background: rgba(255,255,255,0.85);
  border-radius: 24px;
  border: 4px solid #3ad6ff;
  margin: 40px auto 0 auto;
  max-width: 800px;
  padding: 32px 32px 24px 32px;
  box-shadow: 0 6px 0 #0e1b2b;
  text-align: center;
  position: relative;
  z-index: 1;
}
.section-title {
  font-size: 28px;
  color: #1a3557;
  font-weight: bold;
  margin-bottom: 18px;
  letter-spacing: 2px;
  text-align: center;
  margin-top: 20px;
}
.section-content {
  font-size: 18px;
  color: #1a3557;
  line-height: 1.7;
  font-family: 'Press Start 2P', monospace;
  margin-bottom: 0;
}
.how-to-buy {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin: 80px auto 0 auto;
  max-width: 1200px;
  flex-wrap: nowrap;
  overflow-x: auto;
}
.buy-step {
  background: #3ad6ff22;
  border-radius: 18px;
  border: 4px solid #1a3557;
  padding: 24px 18px 18px 18px;
  width: 260px;
  min-height: 220px;
  box-shadow: 0 4px 0 #0e1b2b;
  text-align: center;
  position: relative;
  margin-bottom: 20px;
}
.buy-step .step-img {
  width: auto;
  height: auto;
  margin-bottom: 10px;
  background: none;
  border-radius: 0;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: #1a3557;
  margin-left: auto;
  margin-right: auto;
  overflow: visible;
}
.buy-step .step-img img {
  width: 60px;
  height: 60px;
  border-radius: 0;
  object-fit: contain;
  display: block;
}
.buy-step strong {
  display: block;
  margin-bottom: 8px;
  color: #1a3557;
  font-size: 16px;
}
.buy-step p {
  color: #1a3557;
  font-size: 14px;
  margin: 0;
}
.gallery-section {
  margin: 60px auto 0 auto;
  max-width: 900px;
  text-align: center;
}
.gallery {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  margin-bottom: 20px;
}
.gallery-img {
  width: 180px;
  height: 180px;
  border-radius: 16px;
  border: 4px solid #3ad6ff;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 60px;
  color: #1a3557;
  overflow: hidden;
}
.gallery-arrow {
  font-size: 40px;
  color: #1a3557;
  cursor: pointer;
  user-select: none;
  transition: color 0.2s;
}
.gallery-arrow:hover {
  color: #3ad6ff;
}
.gallery-controls {
  margin-top: 10px;
  display: flex;
  justify-content: center;
  gap: 18px;
}
.footer {
  margin-top: 60px;
  padding: 30px 0 20px 0;
  text-align: center;
  color: #1a3557;
  font-size: 18px;
  font-family: 'Press Start 2P', monospace;
  background: none;
  position: relative;
}
.footer-logo {
  font-size: 32px;
  font-weight: bold;
  color: #1a3557;
  margin-bottom: 8px;
  display: inline-block;
}
.footer-img {
  width: 50px;
  height: 50px;
  background: #fff;
  border-radius: 50%;
  border: 2px solid #3ad6ff;
  display: inline-block;
  margin-left: 20px;
  vertical-align: middle;
  overflow: hidden;
}
@media (max-width: 900px) {
  .how-to-buy {
    flex-direction: column;
    align-items: center;
  }
  .gallery {
    flex-direction: column;
  }
} 