@import url('https://fonts.googleapis.com/css2?family=Bangers&family=Roboto:wght@700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Roboto', sans-serif;
  background-color: #f5e6d8;
  color: #3a2618;
  padding: 20px;
}

.container {
  max-width: 800px;
  margin: 0 auto;
}

.ad {
  background-color: #8b4513;
  color: white;
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  margin-bottom: 40px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
  position: relative;
  overflow: hidden;
}

.brand-name {
  font-family: 'Bangers', cursive;
  font-size: 3.5rem;
  letter-spacing: 2px;
  margin-bottom: 10px;
  color: #ffd700;
  text-shadow: 2px 2px 4px #000;
}

.product-name {
  font-family: 'Bangers', cursive;
  font-size: 2.5rem;
  margin-bottom: 10px;
  letter-spacing: 1px;
  color: #ffb347;
}

.tagline {
  font-size: 1.5rem;
  font-weight: bold;
  color: #fff;
  animation: pulse 2s infinite;
}

.game-container {
  background-color: #fff;
  border-radius: 15px;
  padding: 20px;
  position: relative;
  min-height: 400px;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.grandma {
  position: absolute;
  top: 50px;
  left: 50px;
  z-index: 10;
}

.mixing-bowl {
  position: absolute;
  bottom: 50px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
}

.chunk {
  position: absolute;
  cursor: pointer;
  transition: transform 0.2s;
  z-index: 2;
}

.chunk:hover {
  transform: scale(1.1);
}

.game-info {
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: #8b4513;
  color: white;
  padding: 10px 15px;
  border-radius: 10px;
  font-size: 1.2rem;
  text-align: center;
  z-index: 20;
}

#message {
  margin-top: 10px;
  font-size: 1rem;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

@media (max-width: 600px) {
  .brand-name {
    font-size: 2.5rem;
  }
  
  .product-name {
    font-size: 1.8rem;
  }
  
  .tagline {
    font-size: 1.2rem;
  }
  
  .grandma {
    top: 30px;
    left: 30px;
  }
}

