@import url('https://fonts.googleapis.com/css2?family=Bangers&family=Archivo+Black&family=Roboto:wght@400;700&display=swap');

body {
  margin: 0;
  background: radial-gradient(circle at top, #b00000 0%, #300000 90%);
  color: #fffbea;
  font-family: 'Roboto', sans-serif;
  text-align: center;
  overflow-x: hidden;
}

header {
  background: repeating-linear-gradient(
    45deg,
    #b30000,
    #b30000 20px,
    #ff0000 20px,
    #ff0000 40px
  );
  padding: 3rem 1rem 2rem;
  box-shadow: 0 0 40px rgba(255, 255, 0, 0.6);
  position: relative;
}

header::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 100%;
  height: 6px;
  background: yellow;
}

.logo-link {
  display: inline-block;
  text-decoration: none;
}

.logo {
  width: 320px;
  max-width: 85vw;
  margin-bottom: 1rem;
  filter: drop-shadow(0 0 12px yellow) brightness(1.2);
  transition: transform 0.3s ease, filter 0.3s ease;
}

.logo:hover {
  transform: scale(1.05) rotate(-1.5deg);
  filter: drop-shadow(0 0 25px orange) brightness(1.5);
}

.slogan {
  font-family: 'Bangers', cursive;
  font-size: 1.3rem;
  color: #fff;
  animation: flicker 2.5s infinite;
  margin: 0;
}

@keyframes flicker {
  0%, 19%, 21%, 23%, 25%, 54%, 56%, 100% {
    opacity: 1;
    text-shadow: 0 0 10px yellow, 0 0 20px orange, 0 0 40px red;
  }
  20%, 24%, 55% {
    opacity: 0.3;
    text-shadow: none;
  }
}

a {
  color: #FFD700; /* bright gold */
  text-decoration: none;
  font-weight: 700;
  transition: color 0.2s ease, text-shadow 0.3s ease;
}

a:hover {
  color: #FFFFFF;
  text-shadow: 0 0 10px yellow, 0 0 20px orange;
}


main {
  padding: 2rem 1rem;
  max-width: 700px;
  margin: auto;
}

h3 {
  font-family: 'Archivo Black', sans-serif;
  color: yellow;
  margin-top: 2rem;
}

section.discount {
  background: #440000;
  border: 3px dashed yellow;
  padding: 1.5rem;
  margin-top: 2.5rem;
  transform: rotate(-1deg);
  box-shadow: 0 0 20px rgba(255, 255, 0, 0.5);
}

section.discount h3 {
  color: #fff;
  font-family: 'Bangers', cursive;
  font-size: 1.8rem;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}

section.alert {
  background: #330000;
  border: 4px solid yellow;
  padding: 1.5rem;
  margin-top: 2.5rem;
  transform: rotate(1deg);
  box-shadow: 0 0 20px rgba(255, 0, 0, 0.5);
}

section.alert h3 {
  color: #fff;
  font-family: 'Bangers', cursive;
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
}

.fineprint {
  font-size: 0.8rem;
  color: #ffdf80;
  margin-top: 0.5rem;
}

footer {
  background: #660000;
  color: #fff;
  padding: 1.5rem;
  font-size: 0.9rem;
  border-top: 3px solid yellow;
  margin-top: 2rem;
}

section.deals {
  background: #550000;
  border: 3px dotted yellow;
  padding: 2rem 1rem;
  margin-top: 2.5rem;
  box-shadow: 0 0 25px rgba(255, 200, 0, 0.4);
  transform: rotate(-0.5deg);
}

section.deals h3 {
  font-family: 'Bangers', cursive;
  color: #fff;
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
}

.deal {
  background: #3b0000;
  margin: 1.2rem auto;
  padding: 1rem;
  border: 2px solid #ffdf80;
  border-radius: 6px;
  max-width: 600px;
  text-align: left;
}

.deal h4 {
  color: #ffdf80;
  font-family: 'Archivo Black', sans-serif;
  margin: 0 0 0.3rem 0;
}

.deal p {
  margin: 0.3rem 0;
}

.price {
  font-weight: bold;
  color: #fff;
  text-shadow: 0 0 5px yellow;
}

section.deals .fineprint {
  font-size: 0.8rem;
  color: #ffdf80;
  margin-top: 1rem;
  text-align: center;
}

