/*******************************
  Table of Contents

  1.0 General Styles
  2.0 Logo & Shadow
    2.1 Animation
  3.0 Header
  4.0 Content Styles
  5.0 Countdown Styles
  6.0 Responsive
*******************************/

/**********************************/
/******* 1.0 General Styles *******/
/**********************************/
body,
html {
  margin: 0px;
  background-color: #232323;
  font-weight: normal;
  font-family: Source Sans Pro, Helvetica Neue, Helvetica, Arial, sans-serif;
  font-size: 16px;
  color: #979797;
  overflow-x: hidden;
  min-height: 100%;
  height: 100%;
}
a {
  text-decoration: none;
}

.footer {
  position: absolute;
  bottom: 2%;
  right: 2%;
}
h3 {
  -webkit-transform: rotate(-45deg) translateY(-30px);
  transform: rotate(-45deg) translateY(-30px);
  color: white;
  width: 100px;
  font-family: 'Source Sans Pro', sans-serif;
}

/**********************************/
/******* 2.0 Logo & Shadow *******/
/**********************************/
.main {
  margin-top: 235px;
  text-align: center;
  position: relative; /* Makes .shadow absolute to .main */
  display: flex;
  flex-direction: column;
  align-items: center;
}

.shadow {
  width: 200px;
  height: 30px;
  border-radius: 100%;
  background-color: rgba(0,0,0,.3);
  position: absolute;
  left: 50%;
  top: 260px; /* Adjust as needed for your logo */
  transform: translateX(-50%);
  z-index: 0;
  animation: shadow 1.5s ease-in-out alternate infinite;
  pointer-events: none;
}

.moose {
  width: 200px;
  position: relative;
  top:30px;
  margin: 0 auto 0 auto;
  z-index: 1;
  animation: ghost 1.5s ease-in-out alternate infinite;
  display: block;
}

.heart-bounce {
  width: 200px;
  position: relative;
  top: 80px;
  display: block;
  margin: 0 auto;
  color: var(--moose-color);
  animation: heart 1.5s ease-in-out alternate infinite;
}

/**********************************/
/****** 2.1 Animation *************/
/**********************************/
@keyframes shadow {
  0% {
    transform: scale(1) translateY(15px) translateX(-50%);
  }
  100% {
    transform: scale(0.9) translateY(25px) translateX(-50%);
  }
}
@keyframes ghost {
  0% {
    transform: scale(1) translateY(-10px)
  }
  100% {
    transform: scale(1) translateY(-25px)
  }
}
@keyframes heart {
  0% {
    transform: scale(0.9) translateY(-5px) translateX(0px)
  }
  100% {
    transform: scale(1) translateY(-15px) translateX(5px)
  }
}

/**********************************/
/********** 3.0 Header  ***********/
/**********************************/
header {
  display: flex;
  justify-self: center;
  padding: 35px 40px;
  position: absolute;
  z-index: 1
}
header img {
  display: flex;
  justify-content: center;
  max-height: 100px;
  max-width: 100px;
  padding: 10px 20px;
  margin: 15px 0;
}
header .divider {
  border-bottom: solid 1px #333;
  margin: 20px 0;
}

/**********************************/
/****** 4.0 Content Styles  *******/
/**********************************/
.main h2 {
  color: #666;
  font-size: 32px;
}
.main h6 {
  font-size: 14px;
  line-height: 24px;
}
.main .error {
  position: absolute;
  margin: auto;
  left: 0;
  right: 0;
  top: -150px;
  color: rgba(255,255,255,.02);
  font-size: 25vw;
  text-align: center;
  font-weight: 900;
  font-family: sans-serif;
}

/**********************************/
/****** 5.0 Countdown Styles ******/
/**********************************/
:root {
  --moose-color: #fc8164;
}
#showCountdownBtn {
  font-family: 'Fira Mono', 'Consolas', 'Liberation Mono', 'Courier New', monospace;
  color: var(--moose-color);
  background: transparent;
  font-size: 1.3rem;
  padding: 12px 28px;
  border-radius: 8px;
}
#showCountdownBtn:hover, #showCountdownBtn:focus {
  background: transparent;
  color: #fff;
}
.countdown,
.countdown * {
  font-family: 'Fira Mono', 'Consolas', 'Liberation Mono', 'Courier New', monospace !important;
  color: var(--moose-color) !important;
}
#countdownSection label {
  font-family: 'Fira Mono', 'Consolas', 'Liberation Mono', 'Courier New', monospace;
  color: var(--moose-color);
}

#countdownSection {
  margin-top: 75px;
}

input[type="checkbox"] {
  accent-color: var(--moose-color);
}


/**********************************/
/********** 6.0 Responsive  *******/
/**********************************/
@media (max-width: 500px) {
  .main {
    margin-top: 120px;
  }
  .shadow, .moose {
    width: 140px;
  }
  .shadow {
    height: 20px;
    top: 180px;
  }
	.moose{top:30px;}
	.heart-bounce{width:130px}
  .countdown {
    gap: 8px; /* Much smaller gap for mobile */
  }
}
