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

body {
  background-color: #83f4f2;
  font-family: 'Permanent Marker', cursive;
  color: #000;
  overflow-x: hidden;
  cursor: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='32' height='32'><text y='28' font-size='28'>🏝️</text></svg>") 0 0, auto;
}


.marquee-top {
  background: linear-gradient(90deg, #000, #1a0030, #000);
  color: #83f4f2;
  padding: 8px 0;
  font-family: 'Press Start 2P', monospace;
  font-size: 12px;
  overflow: hidden;
  white-space: nowrap;
  text-shadow: 0 0 10px #00ffff, 0 0 20px #ff00ff;
  animation: marqueeGlow 2s ease-in-out infinite alternate;
}
@keyframes marqueeGlow {
  0% { text-shadow: 0 0 10px #00ffff, 0 0 20px #ff00ff; }
  100% { text-shadow: 0 0 20px #ff6b00, 0 0 40px #00ffff; }
}
.marquee-top span {
  display: inline-block;
  animation: marquee 15s linear infinite;
}
@keyframes marquee {
  0% { transform: translateX(100vw); }
  100% { transform: translateX(-100%); }
}

.hero {
  text-align: center;
  padding: 40px 20px 20px;
}
.hero h1 {
  font-family: 'Bangers', cursive;
  font-size: clamp(3rem, 10vw, 7rem);
  letter-spacing: 4px;
  text-shadow: 4px 4px 0 #ff6b00, -2px -2px 0 #fff, 0 0 20px #ff00ff, 0 0 40px #00ffff;
  animation: heroTrip 2s ease-in-out infinite;
  line-height: 1;
}
@keyframes heroTrip {
  0% { transform: scale(1) rotate(0deg); filter: hue-rotate(0deg); }
  25% { transform: scale(1.08) rotate(-2deg); filter: hue-rotate(90deg); }
  50% { transform: scale(1) rotate(0deg); filter: hue-rotate(180deg); }
  75% { transform: scale(1.08) rotate(2deg); filter: hue-rotate(270deg); }
  100% { transform: scale(1) rotate(0deg); filter: hue-rotate(360deg); }
}
.hero .sub {
  font-size: clamp(1rem, 3vw, 1.6rem);
  margin-top: 10px;
  color: #222;
}

.question-section {
  text-align: center;
  padding: 30px 20px;
}
.question-section h2 {
  font-family: 'Bangers', cursive;
  font-size: clamp(1.5rem, 5vw, 3rem);
  margin-bottom: 20px;
  text-shadow: 2px 2px 0 #ff6b00, 0 0 15px #ff00ff;
  animation: textGlow 1.5s ease-in-out infinite alternate;
}
@keyframes textGlow {
  0% { text-shadow: 2px 2px 0 #ff6b00, 0 0 10px #ff00ff; }
  100% { text-shadow: 2px 2px 0 #ff6b00, 0 0 30px #00ffff, 0 0 60px #ff00ff; }
}
.btn-row {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.btn {
  display: inline-block;
  padding: 14px 40px;
  font-family: 'Bangers', cursive;
  font-size: 1.5rem;
  letter-spacing: 2px;
  border: 4px solid #000;
  background: #ff6b00;
  color: #fff;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.15s;
  box-shadow: 4px 4px 0 #000;
  text-shadow: 1px 1px 0 #000;
}
.btn:hover {
  transform: translate(2px, 2px) scale(1.1);
  box-shadow: 2px 2px 0 #000, 0 0 20px #ff00ff;
  background: #ff9500;
  animation: btnShake 0.3s ease infinite;
}
@keyframes btnShake {
  0%, 100% { transform: translate(2px, 2px) scale(1.1) rotate(0deg); }
  25% { transform: translate(2px, 2px) scale(1.1) rotate(-3deg); }
  75% { transform: translate(2px, 2px) scale(1.1) rotate(3deg); }
}
.btn.green { background: #00c853; }
.btn.green:hover { background: #00e676; }
.btn.red { background: #d50000; }
.btn.red:hover { background: #ff1744; }

.win-row {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin: 30px auto;
  max-width: 800px;
}
.ca-box {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #000;
  color: #83f4f2;
  padding: 14px 24px;
  border: 3px solid #000;
  box-shadow: 4px 4px 0 rgba(0,0,0,0.3);
  cursor: pointer;
  font-size: clamp(0.5rem, 1.5vw, 0.8rem);
  word-break: break-all;
  transition: all 0.15s;
  max-width: 90vw;
}
.ca-box:hover { background: #222; }
.copy-icon {
  white-space: nowrap;
  color: #ffe600;
  font-size: 0.7rem;
}

.video-section {
  text-align: center;
  padding: 20px;
}
.video-wrapper {
  max-width: 700px;
  margin: 0 auto;
  border: 6px solid #000;
  box-shadow: 8px 8px 0 #000, 0 0 30px rgba(255, 0, 255, 0.5), 0 0 60px rgba(0, 255, 255, 0.3);
  background: #000;
  animation: videoGlow 3s ease-in-out infinite alternate;
}
@keyframes videoGlow {
  0% { box-shadow: 8px 8px 0 #000, 0 0 20px rgba(255, 0, 255, 0.5), 0 0 40px rgba(0, 255, 255, 0.3); }
  50% { box-shadow: 8px 8px 0 #000, 0 0 40px rgba(0, 255, 255, 0.7), 0 0 80px rgba(255, 106, 0, 0.5); }
  100% { box-shadow: 8px 8px 0 #000, 0 0 30px rgba(255, 230, 0, 0.6), 0 0 60px rgba(255, 0, 255, 0.4); }
}
.video-wrapper iframe,
.video-wrapper video {
  width: 100%;
  height: auto;
  display: block;
}
.video-wrapper a {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
}
.video-wrapper a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: rgba(255, 0, 0, 0.85);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.play-btn-triangle {
  width: 0;
  height: 0;
  border-top: 18px solid transparent;
  border-bottom: 18px solid transparent;
  border-left: 30px solid #fff;
  margin-left: 6px;
}

.info-section {
  text-align: center;
  padding: 40px 20px;
}
.info-section .big-text {
  font-family: 'Bangers', cursive;
  font-size: clamp(1.5rem, 5vw, 3rem);
  text-shadow: 2px 2px 0 #ff6b00, 0 0 20px #ff0000;
  margin-bottom: 10px;
  animation: rageText 0.5s ease-in-out infinite;
}
@keyframes rageText {
  0%, 100% { transform: scale(1) rotate(0deg); }
  25% { transform: scale(1.05) rotate(-1deg); }
  50% { transform: scale(1.1) rotate(0deg); filter: hue-rotate(180deg); }
  75% { transform: scale(1.05) rotate(1deg); }
}
.info-section .sub-text {
  font-size: 1.2rem;
  color: #333;
}
.info-section .btn-row {
  margin-top: 20px;
}
.btn.twitter { background: #1da1f2; }
.btn.tiktok { background: #000; }
.btn.tiktok:hover { background: #333; }

.links-section {
  text-align: center;
  padding: 30px 20px 50px;
}

.ca-section {
  text-align: center;
  padding: 30px 20px;
  font-family: 'Press Start 2P', monospace;
  font-size: clamp(1rem, 3vw, 1.8rem);
  color: #000;
}
.ca-section .ca-label {
  margin-bottom: 12px;
}

.footer {
  text-align: center;
  padding: 30px 20px 60px;
  font-family: 'Press Start 2P', monospace;
  font-size: clamp(1.2rem, 4vw, 2.5rem);
  color: #000;
  text-shadow: 2px 2px 0 #ff6b00, 0 0 30px #ff00ff;
  letter-spacing: 4px;
  animation: footerTrip 3s ease-in-out infinite;
}
@keyframes footerTrip {
  0%, 100% { transform: scale(1); filter: hue-rotate(0deg); letter-spacing: 4px; }
  50% { transform: scale(1.15); filter: hue-rotate(180deg); letter-spacing: 12px; }
}

.floating-emoji {
  position: fixed;
  font-size: 2rem;
  animation: float 4s ease-in-out infinite, spin 8s linear infinite, drift 10s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
  filter: drop-shadow(0 0 8px rgba(255, 0, 255, 0.6));
}
.floating-emoji:nth-child(odd) {
  animation: float 3s ease-in-out infinite, spinReverse 6s linear infinite, drift 8s ease-in-out infinite reverse;
}
.floating-emoji:nth-child(3n) {
  animation: float 5s ease-in-out infinite, wobble 3s ease-in-out infinite;
  filter: drop-shadow(0 0 12px rgba(0, 255, 255, 0.8));
}
@keyframes float {
  0%, 100% { transform: translateY(0); opacity: 0.7; }
  50% { transform: translateY(-50px); opacity: 1; }
}
@keyframes spin {
  0% { rotate: 0deg; }
  100% { rotate: 360deg; }
}
@keyframes spinReverse {
  0% { rotate: 360deg; }
  100% { rotate: 0deg; }
}
@keyframes drift {
  0%, 100% { translate: 0 0; }
  33% { translate: 20px -15px; }
  66% { translate: -15px 10px; }
}
@keyframes wobble {
  0%, 100% { transform: translateY(0) scale(1); }
  25% { transform: translateY(-30px) scale(1.3) rotate(-15deg); }
  50% { transform: translateY(-50px) scale(1); }
  75% { transform: translateY(-20px) scale(1.2) rotate(15deg); }
}
