body {
  margin: 0;
  background-image: url("images/pokemon-wallpaper.png");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: #111;
  font-family: "Courier New", monospace;
}

.page {
  max-width: 1180px;
  margin: 0 auto;
  background: rgba(243, 239, 226, 0.70);
  border-left: 3px solid #111;
  border-right: 3px solid #111;
  min-height: 100vh;
}

header {
  padding: 14px;
  border-bottom: 3px solid #111;
  background-image:
    linear-gradient(rgba(232, 226, 204, 0.55), rgba(232, 226, 204, 0.55)),
    url("images/pokemon-wallpaper.png");
  background-size: cover;
  background-position: center;
}

.logo-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mascot img {
  height: 150px;
  width: auto;
  margin-left: 100px;
}

h1 {
  margin: 0;
  font-size: 76px;
  color: #ff4fd8;

  text-shadow:
    -2px -2px 0 #ffe66d,
     3px 3px 0 #00e5ff,
     6px 6px 0 #111;

  transform: rotate(-2deg);
  letter-spacing: 2px;
  font-family: Impact, "Arial Black", sans-serif;
  text-transform: uppercase;
  transform: rotate(-2deg) scaleY(1.05);
  letter-spacing: 3px;
}

.tagline-box {
  background: #000;
  color: #00ffff;
  border: 4px double #f7f7f7;
  padding: 12px 24px;
  text-align: center;
  font-weight: bold;
}

.tagline-box p {
  margin: 4px 0;
}

.ticker {
  background: #000;
  color: white;
  padding: 10px;
  text-align: center;
  font-weight: bold;
  border-bottom: 3px solid #111;
}

.layout {
  display: grid;
  grid-template-columns: 210px 1fr 210px;
  gap: 18px;
  padding: 18px;
}

.sidebar,
.rightbar {
  border: 3px solid #111;
  background: #eee8d0;
  padding: 14px;
}

.sidebar h2,
.rightbar h3,
.section-title {
  color: #193bd1;
  text-align: center;
}

.sidebar a {
  display: block;
  margin: 14px 0;
  color: #001fd1;
  font-weight: bold;
}

.sidebar h3 {
  color: red;
  text-align: center;
}

.sidebar p {
  text-align: center;
  font-weight: bold;
}

.welcome-box {
  border: 4px double #111;
  background: rgba(247, 241, 220, 0.85);
  padding: 28px;
  margin-bottom: 24px;
}

.sprite-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.sprite-container > div {
  text-align: center;
  flex: 1;
}

.sparkle {
  height: 80px;
  width: auto;
}

.welcome-box h2 {
  color: red;
  font-size: 34px;
  margin: 0 0 12px;
}

.enter-link {
  color: #001fd1;
  font-size: 22px;
  font-weight: bold;
}

.section-title {
  border-top: 2px solid #111;
  padding-top: 18px;
}

.products {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 18px;
}

.card {
  background: #fff8cf;
  border: 3px ridge #111;
  padding: 18px 14px;
  text-align: center;
  min-height: 320px;
}
.card-image {
  height: 190px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

.card-image img {
  width: 120%;
  height: 110%;
  object-fit: contain;
}
.card a {
  color: #001fd1;
  font-weight: bold;
}

.card strong {
  display: block;
  color: red;
  font-size: 20px;
  margin: 12px 0;
}

button {
  background: transparent;
  color: #001fd1;
  border: none;
  text-decoration: underline;
  font-family: "Courier New", monospace;
  font-weight: bold;
  cursor: pointer;
}

.visitor-box,
.news-box,
.youtube-box {
  border: 3px solid #111;
  background: #f7f1dc;
  margin-bottom: 18px;
  padding: 12px;
  text-align: center;
}

.visitor-box strong {
  display: block;
  background: #000;
  color: #39ff14;
  font-size: 28px;
  padding: 6px;
}

.news-box a {
  color: #001fd1;
  font-weight: bold;
}

.youtube-box h3 {
  color: red;
  font-size: 30px;
}

footer {
  background: #000;
  color: white;
  padding: 14px;
  text-align: center;
  border-top: 3px solid #111;
}
.retro-footer {
  text-align: center;
  padding: 30px;
  border-top: 2px solid #111;
}

.retro-footer img {
  margin: 0 10px;
  height: 40px;
}

.retro-footer p {
  margin-top: 15px;
  font-size: 14px;
}
.pikachu-card {
  max-width: 90%;
  max-height: 90%;
}
.gengar-card {
  max-width: 70%;
  max-height: 70%;
  margin-top: 10px;
  
}
.shop-buttons {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin: 20px 0;
}

.shop-buttons a {
  background: #000;
  color: #00ffff;
  border: 3px double #fff;
  padding: 10px 14px;
  font-weight: bold;
}
.card {
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.card:hover {
  transform: scale(1.05) rotate(-1deg);
  box-shadow: 8px 8px 0 #111;
}