@font-face {
  font-family: f;
  src: url("/media/games/silly-seagull/fonts/SillyGames.ttf");
}
:root {
  --gameAreaWidth: 1280px;
  --gameAreaHeight: 720px;
}

#full-area {
  width: 100%;
  height: 100vh;
  position: absolute;
  overflow: hidden;
  user-select: none;
  font-family: f !important;
}
#full-area #game-area {
  position: absolute;
  width: var(--gameAreaWidth);
  height: 720px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: linear-gradient(to top, #1e9bd3 0%, #6ec9e8 100%);
}
#full-area #game-area #cloud-animation {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: -1;
}
#full-area #game-area #cloud-animation #wind {
  width: 100%;
  position: absolute;
  inset: 0;
  contain: layout paint;
}
#full-area #game-area #cloud-animation .streak {
  position: absolute;
  top: 0;
  left: 0;
  width: 140px;
  height: 2px;
  border-radius: 999px;
  opacity: 0.35;
  filter: blur(0.3px);
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.95) 30%, rgba(255, 255, 255, 0) 100%);
  will-change: transform;
  animation: blow var(--dur, 0.1s) linear infinite;
  animation-fill-mode: both;
}
#full-area #game-area #cloud-animation #wind.gust .streak {
  opacity: 0.55;
  animation-duration: calc(var(--dur, 10s) * .6);
}
#full-area #game-area #cloud-animation .cloud {
  position: absolute;
  opacity: 0.95;
}
#full-area #game-area #cloud-animation .cloud img {
  animation: topDown 6s ease-in-out infinite;
  max-height: 100%;
  max-width: 100%;
}
#full-area #game-area #home-section {
  width: 100%;
  height: 100%;
  position: absolute;
}
#full-area #game-area #home-section #home-seagull {
  width: 300px;
  height: 375px;
  background-size: cover;
  background-position: center center;
  transform: translate(-100%, 20px) scale(1.3);
  z-index: 2;
  position: relative;
}
#full-area #game-area #home-section #logo {
  position: absolute;
  left: 50%;
  top: 47%;
  transform: translate(-50%, -50%);
}
#full-area #game-area #home-section #logo img {
  height: 400px;
  animation: logoAnim 1.3s infinite;
}
#full-area #game-area #play-section {
  width: 100%;
  height: 100%;
  position: absolute;
}
#full-area #game-area #play-section #seagull {
  width: 300px;
  height: 375px;
  z-index: 2;
  position: relative;
  transform: translate(100px, 200px);
}
#full-area #game-area #play-section #seagull.seagull-shake {
  animation: seagullShake 0.4s ease-in-out;
}
#full-area #game-area #play-section #seagull #seagull-sprite {
  width: 300px;
  height: 375px;
  position: absolute;
}
#full-area #game-area #play-section #seagull #seagull-collider {
  width: 50px;
  height: 150px;
  position: absolute;
  transform: translateX(130px) translateY(100px);
}
#full-area #game-area #play-section #highscore {
  position: absolute;
  height: 130px;
  top: 200px;
  transform: translateX(var(--gameAreaWidth));
}
#full-area #game-area #play-section #highscore img {
  height: 100%;
  animation: topDown 3s ease-in-out infinite;
}
#full-area #game-area #play-section #highscore.pos1 {
  top: 120px;
}
#full-area #game-area #play-section #highscore.pos2 {
  top: 200px;
}
#full-area #game-area #play-section #highscore.pos3 {
  top: 280px;
}
#full-area #game-area #play-section #highscore.animateToLeft {
  animation: moveLeft 5s linear forwards;
}
#full-area #game-area #play-section #obstacles {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
  overflow: hidden;
}
#full-area #game-area #play-section #obstacles .obstacle {
  width: 80px;
  height: 80px;
  position: absolute;
  top: 0;
  left: 0;
  transform: translate(500px, 200px);
}
#full-area #game-area #play-section #obstacles .obstacle img {
  width: 100%;
  animation: poopSpin 2s linear infinite;
}
#full-area #game-area #play-section #obstacles .obstacle .dodge-label {
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 28px;
  font-weight: 900;
  color: white;
  text-shadow: 0 0 15px rgba(255, 0, 0, 0.8), 2px 2px 4px rgba(0, 0, 0, 0.5);
  white-space: nowrap;
  letter-spacing: 3px;
  animation: promptAnim 1.5s ease-in-out infinite;
}
#full-area #game-area #play-section #obstacles .balloon {
  position: absolute;
  top: 0;
  left: 0;
  width: 90px;
  text-align: center;
  will-change: transform;
}
#full-area #game-area #play-section #obstacles .balloon img {
  width: 100%;
  animation: balloonWobble 2s ease-in-out infinite;
}
#full-area #game-area #play-section #obstacles .balloon .balloon-label {
  display: block;
  font-size: 16px;
  color: white;
  font-weight: bold;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
  letter-spacing: 2px;
  margin-top: 2px;
  white-space: nowrap;
  animation: promptAnim 1.5s ease-in-out infinite;
}
#full-area #game-area #play-section #obstacles .balloon.first-balloon img {
  filter: drop-shadow(0 0 12px gold) drop-shadow(0 0 25px rgba(255, 215, 0, 0.6));
  animation: balloonWobble 2s ease-in-out infinite, goldPulse 1.2s ease-in-out infinite;
}
#full-area #game-area #play-section #obstacles .balloon.balloon-pop {
  animation: balloonPop 0.8s ease-in forwards !important;
  transition: none !important;
}
#full-area #game-area #play-section #obstacles .balloon.balloon-pop img {
  animation: none !important;
}
#full-area #game-area #play-section #obstacles .balloon.balloon-pop .balloon-label {
  animation: none !important;
  opacity: 0;
}
#full-area #game-area #play-section #poop-animation {
  display: none;
  width: 1280px;
  height: 100%;
  position: absolute;
  z-index: 99999999;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
}
#full-area #game-area #play-section #food-animation {
  position: absolute;
  width: 100%;
  height: 120px;
  top: 330px;
  z-index: 3;
  display: flex;
  justify-content: center;
  gap: 0 10px;
}
#full-area #game-area #play-section #food-animation .food {
  height: 100%;
  transform: translateY(500px);
}
#full-area #game-area #play-section #food-animation .food img {
  height: 100%;
  animation: logoAnim 1.5s ease-in-out infinite;
}
#full-area #game-area #play-section #prompts {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
#full-area #game-area #play-section #prompts.dual-prompt {
  display: flex;
  justify-content: center;
  gap: 20px;
  top: 120px;
}
#full-area #game-area #play-section #prompts.dual-prompt #prompt-1, #full-area #game-area #play-section #prompts.dual-prompt #prompt-3, #full-area #game-area #play-section #prompts.dual-prompt #prompt-4 {
  position: relative;
  left: auto;
  top: auto;
  transform: none;
  flex: 0 1 45%;
  max-width: 500px;
}
#full-area #game-area #play-section #prompts.dual-prompt #prompt-1 .prompt-text, #full-area #game-area #play-section #prompts.dual-prompt #prompt-3 .prompt-text, #full-area #game-area #play-section #prompts.dual-prompt #prompt-4 .prompt-text {
  height: 70px;
}
#full-area #game-area #play-section #prompts.dual-prompt #prompt-1 .prompt-text p, #full-area #game-area #play-section #prompts.dual-prompt #prompt-3 .prompt-text p, #full-area #game-area #play-section #prompts.dual-prompt #prompt-4 .prompt-text p {
  font-size: 45px;
  letter-spacing: 5px;
}
#full-area #game-area #play-section #prompts.dual-prompt #prompt-1 .prompt-text img, #full-area #game-area #play-section #prompts.dual-prompt #prompt-3 .prompt-text img, #full-area #game-area #play-section #prompts.dual-prompt #prompt-4 .prompt-text img {
  height: 70%;
}
#full-area #game-area #play-section #prompts.dual-prompt #prompt-1 .prompt-timer, #full-area #game-area #play-section #prompts.dual-prompt #prompt-3 .prompt-timer, #full-area #game-area #play-section #prompts.dual-prompt #prompt-4 .prompt-timer {
  max-width: 300px;
  height: 30px;
}
#full-area #game-area #play-section #prompt-1, #full-area #game-area #play-section #prompt-2, #full-area #game-area #play-section #prompt-3, #full-area #game-area #play-section #prompt-4 {
  position: absolute;
  left: 50%;
  top: 150px;
  transform: translateX(-50%);
  display: none;
}
#full-area #game-area #play-section #prompt-1.type-2, #full-area #game-area #play-section #prompt-2.type-2, #full-area #game-area #play-section #prompt-3.type-2, #full-area #game-area #play-section #prompt-4.type-2 {
  top: 65%;
  transform: translate(-50%, -50%);
  flex-direction: column;
  align-items: center;
}
#full-area #game-area #play-section #prompt-1.type-2 .food-circles-row, #full-area #game-area #play-section #prompt-2.type-2 .food-circles-row, #full-area #game-area #play-section #prompt-3.type-2 .food-circles-row, #full-area #game-area #play-section #prompt-4.type-2 .food-circles-row {
  display: flex;
  gap: 15px;
  justify-content: center;
  order: 2;
  margin-bottom: 10px;
}
#full-area #game-area #play-section #prompt-1.type-2 .food-circle, #full-area #game-area #play-section #prompt-2.type-2 .food-circle, #full-area #game-area #play-section #prompt-3.type-2 .food-circle, #full-area #game-area #play-section #prompt-4.type-2 .food-circle {
  width: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  animation: promptAnim 1.5s ease-in-out infinite;
  transition: opacity 0.3s, transform 0.3s;
}
#full-area #game-area #play-section #prompt-1.type-2 .food-circle img, #full-area #game-area #play-section #prompt-2.type-2 .food-circle img, #full-area #game-area #play-section #prompt-3.type-2 .food-circle img, #full-area #game-area #play-section #prompt-4.type-2 .food-circle img {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.85);
  border: 4px solid gold;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  object-fit: contain;
  padding: 15px;
  box-sizing: border-box;
}
#full-area #game-area #play-section #prompt-1.type-2 .food-circle.eaten, #full-area #game-area #play-section #prompt-2.type-2 .food-circle.eaten, #full-area #game-area #play-section #prompt-3.type-2 .food-circle.eaten, #full-area #game-area #play-section #prompt-4.type-2 .food-circle.eaten {
  opacity: 0.25;
  transform: scale(0.7);
  animation: none;
}
#full-area #game-area #play-section #prompt-1.type-2 .food-circle.eaten img, #full-area #game-area #play-section #prompt-2.type-2 .food-circle.eaten img, #full-area #game-area #play-section #prompt-3.type-2 .food-circle.eaten img, #full-area #game-area #play-section #prompt-4.type-2 .food-circle.eaten img {
  border-color: #4caf50;
}
#full-area #game-area #play-section #prompt-1.type-2 .food-circle .food-circle-label, #full-area #game-area #play-section #prompt-2.type-2 .food-circle .food-circle-label, #full-area #game-area #play-section #prompt-3.type-2 .food-circle .food-circle-label, #full-area #game-area #play-section #prompt-4.type-2 .food-circle .food-circle-label {
  font-size: 13px;
  font-weight: bold;
  color: #333;
  text-transform: uppercase;
  margin-top: 4px;
  letter-spacing: 1px;
}
#full-area #game-area #play-section #prompt-1.type-2 .food-circle .food-circle-timer, #full-area #game-area #play-section #prompt-2.type-2 .food-circle .food-circle-timer, #full-area #game-area #play-section #prompt-3.type-2 .food-circle .food-circle-timer, #full-area #game-area #play-section #prompt-4.type-2 .food-circle .food-circle-timer {
  width: 100%;
  height: 30px;
  background: rgba(255, 255, 255, 0.61);
  border-radius: 100px;
  border: 2px solid white;
  margin-top: 6px;
  overflow: hidden;
  position: relative;
}
#full-area #game-area #play-section #prompt-1.type-2 .food-circle .food-circle-timer .food-circle-timer-value, #full-area #game-area #play-section #prompt-2.type-2 .food-circle .food-circle-timer .food-circle-timer-value, #full-area #game-area #play-section #prompt-3.type-2 .food-circle .food-circle-timer .food-circle-timer-value, #full-area #game-area #play-section #prompt-4.type-2 .food-circle .food-circle-timer .food-circle-timer-value {
  width: 100%;
  height: 100%;
  background: darkcyan;
  border-radius: 100px;
  transition: width 0.1s linear;
}
#full-area #game-area #play-section #prompt-1.type-2 .food-circle .food-circle-timer .food-circle-timer-text, #full-area #game-area #play-section #prompt-2.type-2 .food-circle .food-circle-timer .food-circle-timer-text, #full-area #game-area #play-section #prompt-3.type-2 .food-circle .food-circle-timer .food-circle-timer-text, #full-area #game-area #play-section #prompt-4.type-2 .food-circle .food-circle-timer .food-circle-timer-text {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: bold;
  color: white;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.6);
  line-height: 1;
}
#full-area #game-area #play-section #prompt-1.type-2 .prompt-text, #full-area #game-area #play-section #prompt-2.type-2 .prompt-text, #full-area #game-area #play-section #prompt-3.type-2 .prompt-text, #full-area #game-area #play-section #prompt-4.type-2 .prompt-text {
  animation: none;
  height: auto;
  margin-bottom: 10px;
  order: 1;
  justify-content: center;
  text-align: center;
  width: 100%;
}
#full-area #game-area #play-section #prompt-1.type-2 .prompt-text p, #full-area #game-area #play-section #prompt-2.type-2 .prompt-text p, #full-area #game-area #play-section #prompt-3.type-2 .prompt-text p, #full-area #game-area #play-section #prompt-4.type-2 .prompt-text p {
  font-size: 28px;
  color: orange;
  letter-spacing: 3px;
}
#full-area #game-area #play-section #prompt-1.type-2 .prompt-timer, #full-area #game-area #play-section #prompt-2.type-2 .prompt-timer, #full-area #game-area #play-section #prompt-3.type-2 .prompt-timer, #full-area #game-area #play-section #prompt-4.type-2 .prompt-timer {
  max-width: 200px;
  order: 3;
  left: 0;
  transform: none;
}
#full-area #game-area #play-section #prompt-1.type-3 .prompt-text p, #full-area #game-area #play-section #prompt-2.type-3 .prompt-text p, #full-area #game-area #play-section #prompt-3.type-3 .prompt-text p, #full-area #game-area #play-section #prompt-4.type-3 .prompt-text p {
  color: brown;
}
#full-area #game-area #play-section #prompt-1 .prompt-text, #full-area #game-area #play-section #prompt-2 .prompt-text, #full-area #game-area #play-section #prompt-3 .prompt-text, #full-area #game-area #play-section #prompt-4 .prompt-text {
  display: flex;
  align-items: center;
  justify-content: center;
  animation: promptAnim 1.5s ease-in-out infinite;
  height: 100px;
}
#full-area #game-area #play-section #prompt-1 .prompt-text img, #full-area #game-area #play-section #prompt-2 .prompt-text img, #full-area #game-area #play-section #prompt-3 .prompt-text img, #full-area #game-area #play-section #prompt-4 .prompt-text img {
  height: 90%;
  position: relative;
  margin-right: 10px;
  margin-top: -10px;
  display: none;
}
#full-area #game-area #play-section #prompt-1 .prompt-text p, #full-area #game-area #play-section #prompt-2 .prompt-text p, #full-area #game-area #play-section #prompt-3 .prompt-text p, #full-area #game-area #play-section #prompt-4 .prompt-text p {
  font-size: 80px;
  color: gold;
  font-weight: bold;
  letter-spacing: 10px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  text-transform: uppercase;
  text-wrap: nowrap;
  white-space: nowrap;
}
#full-area #game-area #play-section #prompt-1 .prompt-timer, #full-area #game-area #play-section #prompt-2 .prompt-timer, #full-area #game-area #play-section #prompt-3 .prompt-timer, #full-area #game-area #play-section #prompt-4 .prompt-timer {
  width: 100%;
  max-width: 500px;
  height: 40px;
  background: rgba(255, 255, 255, 0.61);
  border-radius: 100px;
  border: 3px solid white;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}
#full-area #game-area #play-section #prompt-1 .prompt-timer .prompt-value, #full-area #game-area #play-section #prompt-2 .prompt-timer .prompt-value, #full-area #game-area #play-section #prompt-3 .prompt-timer .prompt-value, #full-area #game-area #play-section #prompt-4 .prompt-timer .prompt-value {
  background: darkcyan;
  width: 70%;
  height: 100%;
  position: relative;
  border-radius: 100px;
  transition: 0.2s ease;
}
#full-area #game-area #play-section #prompt-1 .prompt-timer p, #full-area #game-area #play-section #prompt-2 .prompt-timer p, #full-area #game-area #play-section #prompt-3 .prompt-timer p, #full-area #game-area #play-section #prompt-4 .prompt-timer p {
  right: 10px;
  position: absolute;
  font-size: 20px;
  top: -7px;
  color: black;
  letter-spacing: 3px;
  font-weight: bold;
}
#full-area #game-area #play-section #prompt-1 .prompt-timer p span, #full-area #game-area #play-section #prompt-2 .prompt-timer p span, #full-area #game-area #play-section #prompt-3 .prompt-timer p span, #full-area #game-area #play-section #prompt-4 .prompt-timer p span {
  margin-right: 5px;
  font-size: 30px;
  font-weight: 500;
}
#full-area #game-area #play-section #prompt-1 .prompt-timer .prompt-img, #full-area #game-area #play-section #prompt-2 .prompt-timer .prompt-img, #full-area #game-area #play-section #prompt-3 .prompt-timer .prompt-img, #full-area #game-area #play-section #prompt-4 .prompt-timer .prompt-img {
  position: absolute;
  height: 70px;
  top: -20px;
  left: -30px;
  animation: logoAnim 1.3s infinite;
}
#full-area #game-area #play-section #energy-bar {
  width: 300px;
  height: 30px;
  background: rgba(255, 255, 255, 0.61);
  border-radius: 100px;
  border: 3px solid white;
  position: absolute;
  top: 40px;
  left: 40px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  z-index: 2;
}
#full-area #game-area #play-section #energy-bar #energy-value {
  width: 15%;
  height: 100%;
  border-radius: 100px;
  transition: 0.5s ease;
}
#full-area #game-area #play-section #energy-bar #energy-img {
  width: 85px;
  height: 85px;
  position: absolute;
  top: -30px;
  left: -33px;
  animation: logoAnim 1.3s infinite;
  transition: 0.5s ease;
}
#full-area #game-area #play-section #energy-bar p {
  position: absolute;
  right: 10px;
  top: 0;
  font-family: f;
  font-size: 20px;
  color: black;
  font-weight: bold;
  margin-top: -2px;
}
#full-area #game-area #play-section #energy-bar.high #energy-img {
  background: url("/media/games/silly-seagull/images/game-icons/energy-high.png") no-repeat center center;
  background-size: contain;
}
#full-area #game-area #play-section #energy-bar.high #energy-value {
  background: #20e527;
}
#full-area #game-area #play-section #energy-bar.medium #energy-img {
  background: url("/media/games/silly-seagull/images/game-icons/energy-medium.png") no-repeat center center;
  background-size: contain;
}
#full-area #game-area #play-section #energy-bar.medium #energy-value {
  background: #fed80a;
}
#full-area #game-area #play-section #energy-bar.low #energy-img {
  background: url("/media/games/silly-seagull/images/game-icons/energy-low.png") no-repeat center center;
  background-size: contain;
}
#full-area #game-area #play-section #energy-bar.low #energy-value {
  background: #fd3b0c;
}
#full-area #game-area #play-section #energy-bar.very-low {
  animation: pulse 1s infinite ease;
}
#full-area #game-area #play-section #energy-bar.very-low #energy-img {
  background: url("/media/games/silly-seagull/images/game-icons/energy-very-low.png") no-repeat center center;
  background-size: contain;
}
#full-area #game-area #play-section #energy-bar.very-low #energy-value {
  background: #b71c18;
}
#full-area #game-area #play-section #best-score {
  position: absolute;
  top: 78px;
  left: 40px;
  font-size: 16px;
  color: white;
  font-weight: bold;
  letter-spacing: 2px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
  z-index: 2;
}
#full-area #game-area #play-section #power-bar {
  width: 70px;
  height: 400px;
  background: rgba(255, 255, 255, 0.61);
  border-radius: 100px;
  border: 3px solid white;
  position: absolute;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  z-index: 2;
  top: 50%;
  right: 30px;
  transform: translateY(-50%);
  overflow: hidden;
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}
#full-area #game-area #play-section #power-bar.power-ready {
  border-color: gold;
  box-shadow: 0 0 15px gold, 0 0 30px rgba(255, 215, 0, 0.5);
  animation: powerBarPulse 0.6s ease-in-out infinite alternate;
}
#full-area #game-area #play-section #power-bar #power-value {
  width: 100%;
  height: 0%;
  background: gold;
  transition: 0.5s ease;
  position: absolute;
  bottom: 0;
  z-index: 1;
}
#full-area #game-area #play-section #power-bar p {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  font-family: f;
  font-size: 20px;
  color: black;
  font-weight: bold;
  margin-top: -2px;
  flex-wrap: wrap;
  padding: 5px 0;
}
#full-area #game-area #play-section #power-bar p span {
  width: 100%;
  height: 20%;
  text-align: center;
  font-size: 40px;
  align-items: center;
  display: flex;
  justify-content: center;
}
#full-area #game-area #play-section #poop-bar {
  width: 300px;
  height: 30px;
  background: rgba(255, 255, 255, 0.61);
  border-radius: 100px;
  border: 3px solid white;
  position: absolute;
  top: 40px;
  right: 40px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
#full-area #game-area #play-section #poop-bar #poop-value {
  width: 25%;
  height: 100%;
  border-radius: 100px;
  border-bottom-right-radius: 0;
  border-top-right-radius: 0;
  right: 0;
  position: absolute;
  transition: 0.5s ease;
}
#full-area #game-area #play-section #poop-bar #poop-img {
  width: 85px;
  height: 85px;
  position: absolute;
  top: -30px;
  right: -33px;
  animation: logoAnim 1.3s infinite;
  z-index: 2;
}
#full-area #game-area #play-section #poop-bar p {
  position: absolute;
  left: 10px;
  top: 0;
  font-family: f;
  font-size: 20px;
  color: black;
  font-weight: bold;
  margin-top: -2px;
}
#full-area #game-area #play-section #poop-bar.high {
  animation: pulse 1s infinite ease;
}
#full-area #game-area #play-section #poop-bar.high #poop-img {
  background: url("/media/games/silly-seagull/images/game-icons/poop-very-low.png") no-repeat center center;
  background-size: contain;
}
#full-area #game-area #play-section #poop-bar.high #poop-value {
  background: #a80000;
}
#full-area #game-area #play-section #poop-bar.medium #poop-img {
  background: url("/media/games/silly-seagull/images/game-icons/poop-low.png") no-repeat center center;
  background-size: contain;
}
#full-area #game-area #play-section #poop-bar.medium #poop-value {
  background: #fd3b0c;
}
#full-area #game-area #play-section #poop-bar.low #poop-img {
  background: url("/media/games/silly-seagull/images/game-icons/poop-medium.png") no-repeat center center;
  background-size: contain;
}
#full-area #game-area #play-section #poop-bar.low #poop-value {
  background: #fed80a;
}
#full-area #game-area #play-section #poop-bar.very-low #poop-img {
  background: url("/media/games/silly-seagull/images/game-icons/poop-high.png") no-repeat center center;
  background-size: contain;
}
#full-area #game-area #play-section #poop-bar.very-low #poop-value {
  background: #20e527;
}
#full-area #game-area #play-section #distance {
  position: absolute;
  top: 0px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 50px;
  color: white;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}
#full-area #game-area #play-section #distance span {
  font-size: 70px;
  font-weight: bold;
  letter-spacing: 5px;
}
#full-area #game-area #play-section #distance.power-pulse {
  animation: distancePulse 0.5s ease-in-out infinite;
  color: gold;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.8), 2px 2px 4px rgba(0, 0, 0, 0.5);
  z-index: 2;
}
#full-area #game-area #play-section #distance.distance-miss {
  animation: distanceFlash 0.6s ease-out;
  color: #ff3333;
  text-shadow: 0 0 12px rgba(255, 0, 0, 0.8), 2px 2px 4px rgba(0, 0, 0, 0.5);
}
#full-area #game-area #play-section #distance.distance-pop {
  animation: distanceFlash 0.6s ease-out;
  color: #33ff33;
  text-shadow: 0 0 12px rgba(0, 255, 0, 0.8), 2px 2px 4px rgba(0, 0, 0, 0.5);
}
#full-area #game-area #play-section #power-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0);
  z-index: 1;
  pointer-events: none;
  transition: background 0.4s ease;
}
#full-area #game-area #play-section #power-overlay.active {
  background: rgba(0, 0, 0, 0.5);
}
#full-area #game-area #play-section #power-overlay.active #power-text {
  opacity: 1;
  transform: translateX(-50%) scale(1);
}
#full-area #game-area #play-section #power-overlay #power-text {
  position: absolute;
  top: 140px;
  left: 50%;
  transform: translateX(-50%) scale(0.5);
  font-size: 48px;
  font-weight: 900;
  color: #FFD700;
  text-shadow: 0 0 20px #FFD700, 0 0 40px #FF8C00, 0 0 60px #FF4500, 2px 2px 0 #000;
  letter-spacing: 4px;
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.4s ease, transform 0.4s ease;
}
#full-area #game-area #play-section #power-overlay #power-text .power-o {
  display: inline-block;
  animation: powerOWave 0.6s ease-in-out infinite alternate;
}
#full-area #game-area #play-section #power-overlay #power-text .power-o:nth-child(1) {
  animation-delay: 0.08s;
}
#full-area #game-area #play-section #power-overlay #power-text .power-o:nth-child(2) {
  animation-delay: 0.16s;
}
#full-area #game-area #play-section #power-overlay #power-text .power-o:nth-child(3) {
  animation-delay: 0.24s;
}
#full-area #game-area #play-section #power-overlay #power-text .power-o:nth-child(4) {
  animation-delay: 0.32s;
}
#full-area #game-area #play-section #power-overlay #power-text .power-o:nth-child(5) {
  animation-delay: 0.4s;
}
#full-area #game-area #play-section #power-overlay #power-text .power-o:nth-child(6) {
  animation-delay: 0.48s;
}
#full-area #game-area #play-section #power-overlay #power-text .power-o:nth-child(7) {
  animation-delay: 0.56s;
}
#full-area #game-area #play-section #power-overlay #power-text .power-o:nth-child(8) {
  animation-delay: 0.64s;
}
#full-area #game-area #play-section #power-overlay #power-text .power-o:nth-child(9) {
  animation-delay: 0.72s;
}
#full-area #game-area #play-section .power-bolt {
  position: absolute;
  top: -80px;
  width: 40px;
  height: auto;
  z-index: 1;
  pointer-events: none;
  opacity: 0.9;
  animation: boltFall 0.6s linear forwards;
}
#full-area #game-area #end-section {
  width: 100%;
  height: 100%;
  position: absolute;
  background: #00000000;
  z-index: 999999999;
  backdrop-filter: blur(5px);
  display: none;
}
#full-area #game-area #end-section #end-content {
  width: 745px;
  height: 450px;
  background: url("/media/games/silly-seagull/images/orange-backer.png");
  background-size: cover;
  left: calc( 50% - 372.5px);
  top: calc( 46% - 225px);
  position: absolute;
  padding: 20px;
  animation: topDown 3s ease-in-out infinite;
}
#full-area #game-area #end-section #end-content #game-over {
  text-align: center;
  width: 100%;
  font-size: 80px;
  color: darkred;
  text-shadow: 2px 3px 0px rgba(255, 255, 255, 0.6);
  font-weight: bold;
  letter-spacing: 5px;
}
#full-area #game-area #end-section #end-content #end-distance {
  text-align: center;
  width: 100%;
  font-size: 45px;
  color: white;
  text-shadow: 2px 2px 0px rgba(0, 0, 0, 0.5);
  font-weight: bold;
  letter-spacing: 5px;
  margin-top: 0px;
  line-height: 65px;
  margin-top: -10px;
  margin-bottom: 10px;
}
#full-area #game-area #end-section #end-content #end-distance span {
  font-size: 70px;
}
#full-area #game-area #end-section #end-content #end-btns {
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 0 30px;
  margin-top: 30px;
}
#full-area #game-area #end-section #end-content #end-btns img {
  height: 100px;
  cursor: pointer;
  transition: 0.2s ease;
}
#full-area #game-area #end-section #end-content #end-btns img:hover {
  transform: scale(1.03);
}

@keyframes topDown {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(10px);
  }
}
@keyframes poopSpin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(-360deg);
  }
}
@keyframes logoAnim {
  0% {
    transform: scale(1) rotate(-5deg);
  }
  50% {
    transform: scale(0.96) rotate(0deg);
  }
  100% {
    transform: scale(1) rotate(-5deg);
  }
}
@keyframes pulse {
  0% {
    transform: none;
  }
  50% {
    border: 3px solid #b71c18;
    box-shadow: 0 0 10px rgba(183, 28, 24, 0.5);
    transform: scale(1.05);
  }
  100% {
    transform: none;
  }
}
@keyframes promptAnim {
  0%, 100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-5px) scale(1.05);
  }
}
@keyframes balloonWobble {
  0%, 100% {
    transform: rotate(-3deg) scale(1);
  }
  50% {
    transform: rotate(3deg) scale(1.03);
  }
}
@keyframes goldPulse {
  0%, 100% {
    filter: drop-shadow(0 0 12px gold) drop-shadow(0 0 25px rgba(255, 215, 0, 0.6));
  }
  50% {
    filter: drop-shadow(0 0 20px gold) drop-shadow(0 0 40px rgba(255, 215, 0, 0.8));
  }
}
@keyframes distancePulse {
  0%, 100% {
    transform: translateX(-50%) scale(1);
  }
  50% {
    transform: translateX(-50%) scale(1.15);
  }
}
@keyframes distanceFlash {
  0% {
    transform: translateX(-50%) scale(1.3);
  }
  100% {
    transform: translateX(-50%) scale(1);
  }
}
@keyframes balloonPop {
  0% {
    transform: var(--balloon-translate) rotate(0deg) scale(1);
    opacity: 1;
  }
  15% {
    transform: var(--balloon-translate) rotate(8deg) scale(1.1);
    opacity: 1;
  }
  30% {
    transform: var(--balloon-translate) rotate(-8deg) scale(1.05);
    opacity: 1;
  }
  45% {
    transform: var(--balloon-translate) rotate(5deg) scale(0.9);
    opacity: 0.9;
  }
  100% {
    transform: var(--balloon-translate) rotate(3deg) scale(0.2) translateY(var(--balloon-fall, 300px));
    opacity: 0;
  }
}
@keyframes powerBarPulse {
  0% {
    box-shadow: 0 0 15px gold, 0 0 30px rgba(255, 215, 0, 0.5);
    transform: translateY(-50%) scale(1);
  }
  100% {
    box-shadow: 0 0 25px gold, 0 0 50px rgba(255, 215, 0, 0.7);
    transform: translateY(-50%) scale(1.05);
  }
}
@keyframes powerOWave {
  0% {
    transform: translateY(0) scale(1);
    color: #FFD700;
  }
  100% {
    transform: translateY(-12px) scale(1.2);
    color: #FF4500;
  }
}
@keyframes seagullShake {
  0%, 100% {
    transform: var(--seagull-translate) rotate(0deg);
  }
  20% {
    transform: var(--seagull-translate) rotate(6deg);
  }
  40% {
    transform: var(--seagull-translate) rotate(-6deg);
  }
  60% {
    transform: var(--seagull-translate) rotate(4deg);
  }
  80% {
    transform: var(--seagull-translate) rotate(-3deg);
  }
}
@keyframes boltFall {
  0% {
    transform: translate(0, 0) rotate(30deg);
    opacity: 0.9;
  }
  80% {
    opacity: 0.9;
  }
  100% {
    transform: translate(-500px, 820px) rotate(30deg);
    opacity: 0;
  }
}
@keyframes blow {
  from {
    transform: translateX(calc( var(--gameAreaWidth) + 100%)) translateY(var(--y, 0px)) scaleX(var(--sx, 1));
  }
  to {
    transform: translateX(-105%) translateY(var(--y, 0px)) scaleX(var(--sx, 1));
  }
}
@keyframes moveLeft {
  0% {
    transform: translateX(var(--gameAreaWidth));
  }
  100% {
    transform: translateX(-100%);
  }
}
@media (max-width: 600px) {
  :root {
    --gameAreaWidth: 800px;
    --gameAreaHeight: 1180px;
  }

  #full-area #game-area #home-section #home-seagull {
    top: 250px;
    left: -250px;
  }
  #full-area #game-area #play-section {
    top: 200px;
  }
  #full-area #game-area #play-section #distance {
    top: -200px;
    left: auto;
    right: 5%;
    transform: none;
    text-align: right;
    white-space: nowrap;
    transform-origin: right center;
  }
  #full-area #game-area #play-section #energy-bar, #full-area #game-area #play-section #poop-bar {
    width: 40%;
    top: -80px;
    left: 50%;
    transform: translateX(-50%) scale(1.7);
  }
  #full-area #game-area #play-section #poop-bar {
    top: 0px;
  }
  #full-area #game-area #play-section #best-score {
    top: -185px;
    left: 40px;
    font-size: 50px;
  }
  #full-area #game-area #play-section #power-bar {
    height: 450px;
    top: 39%;
  }
  #full-area #game-area #play-section #seagull {
    top: 100px;
    left: -80px;
  }
  #full-area #game-area #play-section #poop-animation {
    top: -200px;
  }
  #full-area #game-area #play-section #food-animation {
    height: 170px;
    top: 250px;
    width: 80%;
    left: 10%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0;
  }
  #full-area #game-area #play-section #food-animation .food {
    margin: 5px 0;
    transform: translateY(700px);
  }
  #full-area #game-area #play-section #food-animation .food img {
    height: 80%;
  }
  #full-area #game-area #play-section #prompts {
    opacity: 1;
  }
  #full-area #game-area #play-section #prompts #prompt-1 {
    top: 100px;
    font-size: 20px;
  }
  #full-area #game-area #play-section #prompts #prompt-1 .prompt-text p {
    font-size: 70px;
  }
  #full-area #game-area #play-section #prompts #prompt-2 {
    top: 52%;
    bottom: auto;
    transform: translate(-50%, -50%);
    width: calc(100% - 30px);
    max-width: 760px;
  }
  #full-area #game-area #play-section #prompts #prompt-2 .food-circles-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    width: 100%;
  }
  #full-area #game-area #play-section #prompts #prompt-2 .food-circle {
    width: 95px;
    height: auto;
  }
  #full-area #game-area #play-section #prompts #prompt-2 .food-circle img {
    width: 95px;
    height: 95px;
    padding: 10px;
  }
  #full-area #game-area #play-section #prompts #prompt-2 .food-circle .food-circle-timer {
    height: 44px;
    margin-top: 4px;
    margin-top: 12px;
  }
  #full-area #game-area #play-section #prompts #prompt-2 .food-circle .food-circle-timer-text {
    font-size: 24px;
    padding: 20px;
  }
  #full-area #game-area #play-section #prompts #prompt-2 .prompt-text {
    width: 100%;
    margin-bottom: 8px;
    padding: 0 12px;
    box-sizing: border-box;
  }
  #full-area #game-area #play-section #prompts #prompt-2 .prompt-text p {
    font-size: 24px;
    letter-spacing: 2px;
    text-align: center;
    white-space: normal;
    text-wrap: wrap;
    line-height: 1.1;
  }
  #full-area #game-area #play-section #prompts #prompt-3 {
    top: auto;
    bottom: 930px;
    font-size: 2px;
  }

  @keyframes pulse {
    50% {
      border: 3px solid #b71c18;
      box-shadow: 0 0 10px rgba(183, 28, 24, 0.5);
    }
  }
}

/*# sourceMappingURL=style.css.map */
