/* Slotin VIP Style – Blue & Yellow Theme with Luxury Feel */

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

body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background: radial-gradient(circle at top, #0b0e2c, #090d26);
  color: #ffffff;
  text-align: center;
  overflow-x: hidden;
}

.logo-top {
  padding-top: 0;
  margin-top: 0;
  height: auto;
  background-color: #0b0e2c;
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo-top img {
  max-height: 50px;
  margin: 10px auto;
  display: block;
}

.hero {
  padding: 20px 20px 60px;
  background: radial-gradient(circle at center, #0b0e2c 0%, #0a0d24 100%);
  box-shadow: inset 0 0 100px rgba(0, 0, 0, 0.5);
}

.bonus-text {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffe600;
  text-shadow: 0 0 6px rgba(255, 230, 0, 0.6);
  margin: 10px 0 5px;
}

#timer {
  font-size: 1rem;
  color: #ffcc00;
  margin-bottom: 15px;
}

.promo-banner {
  background: linear-gradient(to right, #1d244c, #121937);
  margin: 20px auto;
  padding: 20px 30px;
  border-radius: 16px;
  max-width: 600px;
  color: #ffcc00;
  font-size: 1.2rem;
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(255, 204, 0, 0.2);
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-image {
  display: flex;
  justify-content: center;
  margin-top: 15px;
}

.hero-image img {
  width: 100%;
  max-width: 420px;
  border-radius: 12px;
}

.cta-button {
  background: linear-gradient(to right, #ffd700, #ffb200);
  color: #1a1a1a;
  font-weight: 700;
  padding: 14px 40px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  text-decoration: none;
  display: block;
  text-align: center;
  margin: 20px auto;
  font-size: 1.2rem;
}

.hero-description {
  margin: 30px 20px 0;
  padding-bottom: 30px;
  text-align: center;
  line-height: 1.5;
}

.features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  padding: 40px 20px;
  background-color: #0a0d24;
}

.feature {
  background: #14192f;
  padding: 20px;
  border-radius: 12px;
  width: 280px;
  text-align: left;
}

.floating-cta {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #ffd700;
  color: #1a1a1a;
  padding: 12px 20px;
  border-radius: 40px;
  font-weight: bold;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
  text-decoration: none;
}

footer {
  background: #0b0e2c;
  padding: 30px;
  font-size: 0.9rem;
  color: #999;
  border-top: 1px solid #1a1d35;
  text-shadow: 0 0 2px #000;
}

@media (max-width: 600px) {
  .logo-top {
    height: 50px;           /* keep roof small */
    padding: 0;
    overflow: hidden;       /* prevent overflow */
  }

  .logo-top img {
    height: 100%;           /* fill the roof height */
    max-height: 100%;
    transform: scale(6.5);  /* visually enlarge the logo */
    transform-origin: center;
  }

  .bonus-text {
    font-size: 1.25rem;
    margin-top: 10px;
  }

  .cta-button {
    font-size: 1rem;
    padding: 12px 30px;
  }

  .feature {
    width: 100%;
  }
}
