/* --- Solid Green Background and Black Features --- */
html, body {
  height: 100dvh;
  min-height: 100dvh;
  width: 100vw;
  max-width: 100vw;
  max-height: 100dvh;
  margin: 0;
  padding: 0;
  /* Radial gradient: green center, black edges */
  background: radial-gradient(circle at 50% 50%, #00FF00 0%, #00FF00 40%, #000 100%);
  overflow: hidden;
  font-family: 'Impact', 'Comic Sans MS', 'Arial Black', Arial, sans-serif;
  position: relative;
}

body {
  width: 100vw;
  min-height: 100dvh;
  max-height: 100dvh;
  overflow: hidden;
}

#main-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100dvh;
  max-height: 100dvh;
  width: 100vw;
  max-width: 100vw;
  padding: 0;
  box-sizing: border-box;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

#page-title {
  font-size: 2.2rem;
  color: #000;
  text-shadow: 0 2px 4px #0008;
  margin-bottom: 1vh;
  text-align: center;
  max-width: 90vw;
  word-break: break-word;
  margin-top: 2.5em;
}
@media (max-width: 900px) {
  #page-title { margin-top: 2em; }
}
@media (max-width: 600px) {
  #page-title { margin-top: 1.2em; }
}

#gif-container {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 20vh;
  width: 100vw;
  position: relative;
  overflow: hidden;
}
.glow-border {
  display: inline-block;
  padding: 1vw;
  border-radius: 2em;
  background: #000;
  box-shadow: 0 0 0 0 #000, 0 0 32px 8px #00FF00aa, 0 0 64px 16px #FF00FF88;
  max-width: 80vw;
  max-height: 30vh;
  overflow: hidden;
  position: relative;
  z-index: 2;
}
.glow-border::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 2.2em;
  z-index: 1;
  padding: 0;
  background: conic-gradient(
    #00FF00, #FFFF00, #FF2222, #00BFFF, #FF00FF, #00FF00
  );
  filter: blur(6px) brightness(1.5);
  opacity: 0.85;
  animation: border-rainbow-spin 2.5s linear infinite;
}
@keyframes border-rainbow-spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
.glow-border > * {
  position: relative;
  z-index: 2;
}
.spinning-cat {
  width: 36vw;
  max-width: 220px;
  min-width: 60px;
  height: auto;
  max-height: 28vh;
  border-radius: 1.5em;
  box-shadow: 0 0 16px 2px #000a;
  background: #0002;
  pointer-events: none;
  user-select: none;
  border: 4px solid #000;
  display: block;
}

#button-container {
  margin: 1.5vh 0 1vh 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
#start-btn {
  font-size: 1.3rem;
  font-family: 'Impact', 'Comic Sans MS', 'Arial Black', Arial, sans-serif;
  background: #000;
  color: #00FF00;
  border: 4px solid #000;
  border-radius: 999px;
  padding: 0.5em 1.2em;
  cursor: pointer;
  box-shadow: 0 0 12px 2px #000a;
  animation: pulse 1.1s infinite;
  transition: background 0.2s, color 0.2s;
  text-shadow: 0 2px 8px #000a;
  outline: none;
  text-decoration: none;
  display: inline-block;
}
#start-btn:hover {
  background: #00FF00;
  color: #000;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.08); }
}

#corner-buttons {
  position: fixed;
  top: 1vw;
  left: 0;
  width: 100vw;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  z-index: 10;
  pointer-events: none;
}
#corner-buttons .corner-btn-group {
  flex: 1 1 0;
  display: flex;
  justify-content: flex-start;
}
#corner-buttons .corner-btn-center {
  flex: 1 1 0;
  display: flex;
  justify-content: center;
}
#corner-buttons .corner-btn-right {
  flex: 1 1 0;
  display: flex;
  justify-content: flex-end;
}
#twitter-btn, #dexscreener-btn, #tiktok-btn {
  margin: 0 2vw;
  pointer-events: auto;
  background: #000;
  color: #00FF00;
  border: 4px solid #000;
  border-radius: 999px;
  font-size: 1.1rem;
  font-family: 'Impact', 'Comic Sans MS', 'Arial Black', Arial, sans-serif;
  font-weight: bold;
  padding: 0.4em 1.2em;
  box-shadow: 0 0 8px 2px #000a;
  text-shadow: 0 0 4px #000a;
  letter-spacing: 0.05em;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  outline: none;
  text-decoration: none;
  display: inline-block;
  position: static;
  left: auto;
  top: auto;
  transform: none;
}
#twitter-btn:hover, #dexscreener-btn:hover, #tiktok-btn:hover {
  background: #00FF00;
  color: #000;
  box-shadow: 0 0 16px 4px #000a;
  border-color: #00FF00;
}
#tiktok-btn {
  margin: 0 auto;
  left: 50%;
  transform: translateX(-50%);
  position: absolute;
  top: 0;
  background: #000;
  color: #00FF00;
  border: 4px solid #000;
  border-radius: 999px;
  font-size: 1.1rem;
  font-family: 'Impact', 'Comic Sans MS', 'Arial Black', Arial, sans-serif;
  font-weight: bold;
  padding: 0.4em 1.2em;
  box-shadow: 0 0 8px 2px #000a;
  text-shadow: 0 0 4px #000a;
  letter-spacing: 0.05em;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  outline: none;
  text-decoration: none;
  display: inline-block;
}
#tiktok-btn:hover {
  background: #00FF00;
  color: #000;
  box-shadow: 0 0 16px 4px #000a;
  border-color: #00FF00;
  text-shadow: none;
}

#lore {
  margin: 2vh auto 1vh auto;
  max-width: 95vw;
  background: #000c;
  border-radius: 2em;
  box-shadow: 0 0 16px 2px #000a;
  padding: 1em 0.7em 1em 0.7em;
  text-align: center;
  font-family: 'Comic Sans MS', 'Impact', 'Arial Black', Arial, sans-serif;
  border: 2px solid #000;
  position: relative;
  z-index: 2;
  overflow: hidden;
}
#lore h2 {
  font-size: 1.3rem;
  color: #00FF00;
  margin-bottom: 0.3em;
  font-family: 'Impact', 'Arial Black', Arial, sans-serif;
  letter-spacing: 0.05em;
  text-shadow: 0 2px 8px #000a;
}
#lore p {
  font-size: 1rem;
  color: #00FF00;
  font-weight: bold;
  text-shadow: 0 1px 4px #000a;
}

#buy-now-btn {
  display: block;
  margin: 2vh auto 1vh auto;
  background: #000;
  color: #00FF00;
  border: 4px solid #000;
  border-radius: 999px;
  font-size: 1.5rem;
  font-family: 'Impact', 'Comic Sans MS', 'Arial Black', Arial, sans-serif;
  font-weight: bold;
  padding: 0.6em 2.5em;
  box-shadow: 0 0 8px 2px #000a;
  text-shadow: 0 0 4px #000a;
  letter-spacing: 0.05em;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  outline: none;
  text-decoration: none;
  cursor: pointer;
  text-align: center;
}
#buy-now-btn:hover {
  background: #00FF00;
  color: #000;
  box-shadow: 0 0 16px 4px #000a;
  border-color: #00FF00;
}

#ca-box {
  margin: 2vh auto 1vh auto;
  max-width: 95vw;
  background: #000c;
  border-radius: 2em;
  box-shadow: 0 0 16px 2px #000a;
  padding: 1em 0.7em 1em 0.7em;
  text-align: center;
  font-family: 'Comic Sans MS', 'Impact', 'Arial Black', Arial, sans-serif;
  border: 2px solid #00FF00;
  position: relative;
  z-index: 2;
  overflow: hidden;
}
#ca-box h2 {
  font-size: 1.3rem;
  color: #00FF00;
  margin-bottom: 0.3em;
  font-family: 'Impact', 'Arial Black', Arial, sans-serif;
  letter-spacing: 0.05em;
  text-shadow: 0 2px 8px #000a;
}
#ca-box p {
  font-size: 1rem;
  color: #00FF00;
  font-weight: bold;
  text-shadow: 0 1px 4px #000a;
  word-break: break-all;
}

.hidden { display: none !important; }

.floating-sparkle {
  position: fixed;
  width: 0.7vw;
  height: 0.7vw;
  min-width: 6px;
  min-height: 6px;
  max-width: 18px;
  max-height: 18px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 2;
  opacity: 0.7;
  box-shadow: 0 0 8px 2px #000a;
  background: #000;
  animation: sparkle-float 8s linear infinite;
}
@keyframes sparkle-float {
  0% { opacity: 0; transform: scale(0.7) translateY(0); }
  10% { opacity: 1; }
  50% { opacity: 0.8; transform: scale(1.2) translateY(-8vh); }
  90% { opacity: 1; }
  100% { opacity: 0; transform: scale(0.7) translateY(-16vh); }
}

.trail {
  position: absolute;
  height: 12px;
  width: 12px;
  border-radius: 6px;
  background: black;
  pointer-events: none;
  font-family: 'Comic Sans MS', 'Impact', 'Arial Black', sans-serif;
  font-size: 2rem;
  font-weight: bold;
  color: #000;
  text-shadow: 0 1px 4px #000a;
}

#laser-corner-left, #laser-corner-right {
  position: fixed;
  top: 0;
  width: 0;
  height: 0;
  z-index: 5;
  pointer-events: none;
}
#corner-buttons {
  z-index: 10;
}
#laser-corner-left { left: 0; }
#laser-corner-right { right: 0; }

.laser {
  position: absolute;
  width: 8px;
  height: 120vw;
  max-height: 100dvh;
  opacity: 0.95;
  border-radius: 8px;
  filter: blur(3px) brightness(2.2) drop-shadow(0 0 32px currentColor);
  transform-origin: top left;
  animation: laser-pulse 1.8s infinite alternate;
  background: linear-gradient(180deg, currentColor 60%, #0000 100%);
  color: inherit;
  pointer-events: none;
}
@keyframes laser-sweep-left-green {
  0%   { transform: rotate(-45deg); }
  50%  { transform: rotate(-25deg); }
  100% { transform: rotate(-45deg); }
}
@keyframes laser-sweep-left-yellow {
  0%   { transform: rotate(-50deg); }
  50%  { transform: rotate(-30deg); }
  100% { transform: rotate(-50deg); }
}
@keyframes laser-sweep-left-red {
  0%   { transform: rotate(-55deg); }
  50%  { transform: rotate(-35deg); }
  100% { transform: rotate(-55deg); }
}
@keyframes laser-sweep-left-blue {
  0%   { transform: rotate(-60deg); }
  50%  { transform: rotate(-40deg); }
  100% { transform: rotate(-60deg); }
}
@keyframes laser-sweep-right-green {
  0%   { transform: rotate(45deg); }
  50%  { transform: rotate(25deg); }
  100% { transform: rotate(45deg); }
}
@keyframes laser-sweep-right-yellow {
  0%   { transform: rotate(50deg); }
  50%  { transform: rotate(30deg); }
  100% { transform: rotate(50deg); }
}
@keyframes laser-sweep-right-red {
  0%   { transform: rotate(55deg); }
  50%  { transform: rotate(35deg); }
  100% { transform: rotate(55deg); }
}
@keyframes laser-sweep-right-blue {
  0%   { transform: rotate(60deg); }
  50%  { transform: rotate(40deg); }
  100% { transform: rotate(60deg); }
}

#laser-corner-left .laser-green   { color: #00FF00; left: 0; top: 0; animation: laser-pulse 1.8s infinite alternate, laser-sweep-left-green 1.5s infinite alternate; animation-delay: 0s, 0s; }
#laser-corner-left .laser-yellow  { color: #FFFF00; left: 12px; top: 0; animation: laser-pulse 1.8s infinite alternate, laser-sweep-left-yellow 1.6s infinite alternate; animation-delay: 0.3s, 0.2s; }
#laser-corner-left .laser-red     { color: #FF2222; left: 24px; top: 0; animation: laser-pulse 1.8s infinite alternate, laser-sweep-left-red 1.7s infinite alternate; animation-delay: 0.6s, 0.4s; }
#laser-corner-left .laser-blue    { color: #00BFFF; left: 36px; top: 0; animation: laser-pulse 1.8s infinite alternate, laser-sweep-left-blue 1.8s infinite alternate; animation-delay: 0.9s, 0.6s; }
#laser-corner-right .laser-green  { color: #00FF00; left: auto; right: 0; top: 0; animation: laser-pulse 1.8s infinite alternate, laser-sweep-right-green 1.5s infinite alternate; animation-delay: 0s, 0s; }
#laser-corner-right .laser-yellow { color: #FFFF00; left: auto; right: 12px; top: 0; animation: laser-pulse 1.8s infinite alternate, laser-sweep-right-yellow 1.6s infinite alternate; animation-delay: 0.3s, 0.2s; }
#laser-corner-right .laser-red    { color: #FF2222; left: auto; right: 24px; top: 0; animation: laser-pulse 1.8s infinite alternate, laser-sweep-right-red 1.7s infinite alternate; animation-delay: 0.6s, 0.4s; }
#laser-corner-right .laser-blue   { color: #00BFFF; left: auto; right: 36px; top: 0; animation: laser-pulse 1.8s infinite alternate, laser-sweep-right-blue 1.9s infinite alternate; animation-delay: 0.9s, 0.6s; }

@keyframes laser-pulse {
  0%   { opacity: 0.5; filter: blur(2px) brightness(1.2) drop-shadow(0 0 8px currentColor); }
  50%  { opacity: 1; filter: blur(1.5px) brightness(2.2) drop-shadow(0 0 24px currentColor); }
  100% { opacity: 0.7; filter: blur(2.5px) brightness(1.1) drop-shadow(0 0 8px currentColor); }
}

@media (max-width: 900px) {
  #page-title { font-size: 1.2rem; }
  .spinning-cat { width: 50vw; max-width: 60vw; min-width: 40px; max-height: 18vh; }
  .glow-border { padding: 1vw; max-width: 90vw; max-height: 18vh; }
  #lore { padding: 0.7em 0.2em 0.7em 0.2em; }
  #corner-buttons { top: 0.5vw; }
  #twitter-btn, #dexscreener-btn, #tiktok-btn { font-size: 0.9rem; padding: 0.3em 0.7em; }
  #buy-now-btn { font-size: 1.1rem; padding: 0.4em 1.2em; }
  #ca-box h2 { font-size: 1.1rem; }
  #ca-box p { font-size: 0.9rem; }
}

@media (max-width: 600px) {
  html, body, #main-content {
    height: auto !important;
    min-height: unset !important;
    max-height: unset !important;
    width: 100vw !important;
    max-width: 100vw !important;
    overflow: visible !important;
  }
  #main-content {
    display: block !important;
    padding: 2em 0 2em 0;
  }
  #page-title {
    font-size: 1.3rem;
    margin: 2em 0 1.5em 0;
    padding: 0 0.5em;
    text-align: center;
  }
  #gif-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 0 2em 0;
    min-height: unset;
    width: 100vw;
    overflow: visible;
  }
  .glow-border {
    padding: 2vw;
    width: 95vw;
    max-width: 95vw;
    margin: 0 auto 2em auto;
    box-sizing: border-box;
    max-height: none;
  }
  .spinning-cat {
    width: 90vw;
    max-width: 95vw;
    min-width: 40px;
    max-height: none;
    margin: 0 auto;
    display: block;
  }
  #buy-now-btn {
    font-size: 1.1rem;
    padding: 0.7em 1.2em;
    margin: 2em auto;
    width: 90vw;
    max-width: 400px;
    display: block;
  }
  #button-container {
    margin: 2em 0;
  }
  #lore, #ca-box {
    margin: 2em auto;
    padding: 1.5em 0.7em;
    max-width: 95vw;
    font-size: 1.1rem;
    border-radius: 1.2em;
  }
  #lore h2, #ca-box h2 {
    font-size: 1.1rem;
    margin-bottom: 0.7em;
  }
  #lore p, #ca-box p {
    font-size: 1rem;
  }
  #corner-buttons {
    top: 0.2vw;
    flex-direction: row;
    gap: 0.5em;
    width: 100vw;
    justify-content: space-between;
  }
  #twitter-btn, #dexscreener-btn, #tiktok-btn {
    font-size: 0.9rem;
    padding: 0.4em 0.7em;
    margin: 0 0.2em;
    min-width: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
} 