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

html, body {
  width: 100%;
  height: 100%;
}

body {
  font-family: 'Colby', 'Barlow Condensed', 'Arial Narrow', sans-serif;
  background: linear-gradient(180deg, #204EAC 0%, #00C3E7 53%, #204EAC 100%);
  min-height: 100vh;
  overflow: hidden;
  position: relative;
}

.scene {
  position: relative;
  width: 100vw;
  height: 100vh;
}

/* Background image overlay */
.bg-overlay {
  position: absolute;
  inset: 0;
  opacity: 0.2;
  pointer-events: none;
  background-image: url('/img/background.png');
  background-size: cover;
  background-position: center;
}

/* Drumstick logo/graphic SVG */
.logo {
  position: absolute;
  left: 14.13%;   /* 169.58 / 1200 */
  top: 11.67%;    /* 105 / 900 */
  width: 71.65%;  /* 859.83 / 1200 */
  height: auto;
}

/* "sweepstakes coming soon" text */
.tagline {
  position: absolute;
  left: 15.67%;   /* 188 / 1200 */
  top: 63%;       /* 567 / 900 */
  width: 66.33%;  /* 796 / 1200 */
  color: #ffffff;
  font-size: clamp(24px, 4.5vw, 54px);
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
  letter-spacing: 0.02em;
  line-height: 1.4;
}

/* Responsive adjustments for small screens */
@media (max-width: 600px) {
  .logo {
    left: 5%;
    width: 90%;
    top: 15%;
  }

  .tagline {
    left: 5%;
    width: 90%;
    top: 60%;
    font-size: clamp(20px, 6vw, 36px);
  }
}
