body {
  font-family: Arial, sans-serif;
  background-color: #fff;
  color: #333;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100dvh;
}

header {
  background-color: #fff;
  padding: 20px;
  text-align: center;
}

header .logo {
  width: 100px;
  height: auto;
}

main {
  display: flex;
  flex-direction: column;
  margin-top: 20px;
  margin-bottom: 20px;
  width: min(100% - 20px, 360px);
}

.button-row {
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 15px;
}

button {
  background-color: #f2d8ce;
  border: 1px solid #ddd;
  border-radius: 8px;
  color: #333;
  font-size: 16px;
  font-weight: bold;
  width: 48%;
  height: 50px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

button:hover {
  background-color: #e6c7b8;
  transform: translateY(-2px);
}

.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  justify-content: center;
  align-items: center;
  z-index: 1;
}

.modal-content {
  background-color: #fff;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  width: min(100% - 60px, 360px);
}

.accept-btn {
  background-color: #4caf50;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
}

.accept-btn:hover {
  background-color: #45a049;
}

.side-ads,
.banner-ads,
.full-screen-ads,
.responsive-ads {
  border: 1px solid #ccc;
}

.side-ads {
  width: 375px;
  height: 375px;
}

.banner-ads {
  width: 728px;
  height: 90px;
}

.full-screen-ads {
  height: 700px;
  width: 320px;
}

.banner-responsive-ad {
  width: min(100% - 20px, 728px);
  height: 90px;
}

.logo-animation {
  animation: fade-in-zoom-out 3s linear forwards;
}

@keyframes fade-in-zoom-out {
  0% {
    opacity: 0;
    transform: scale(0.5);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
