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

body {
    min-height: 100vh;
    background: linear-gradient(135deg, #000080 0%, #0000CD 25%, #4169E1 50%, #1E90FF 75%, #87CEEB 100%);
    font-family: 'Comic Sans MS', cursive;
    position: relative;
    overflow-x: hidden;
    padding: 20px;
}

.stars {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(2px 2px at 20% 30%, white, transparent),
        radial-gradient(2px 2px at 60% 70%, white, transparent),
        radial-gradient(1px 1px at 50% 50%, white, transparent),
        radial-gradient(1px 1px at 80% 10%, white, transparent),
        radial-gradient(2px 2px at 90% 60%, white, transparent);
    background-size: 200px 200px;
    animation: twinkle 4s infinite;
    pointer-events: none;
    z-index: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.header {
    background: linear-gradient(45deg, #FF00FF, #00FFFF, #FFFF00, #FF00FF);
    background-size: 400% 400%;
    animation: rainbow-gradient 3s linear infinite;
    border: 8px dashed #FF1493;
    padding: 30px;
    margin-bottom: 20px;
    box-shadow: 0 0 30px #00FF00, inset 0 0 30px #FF00FF;
    transform: rotate(-1deg);
}

.banner-row {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 15px;
    justify-content: center;
}

.skull-icon { font-size: 60px; animation: shake 0.5s infinite; }
.warning-icon { font-size: 50px; animation: blink 1s infinite; }

.main-title {
    font-size: 48px;
    color: #FFFF00;
    text-shadow: 3px 3px 0 #FF00FF, 6px 6px 0 #00FFFF, 9px 9px 0 #00FF00;
    font-weight: bold;
    animation: shake 1s infinite;
}

.scrolling-text {
    font-size: 24px;
    color: #FF0000;
    font-weight: bold;
    text-shadow: 2px 2px #FFFF00;
}

.urgency-box {
    background: linear-gradient(180deg, #FF0000, #FF4500);
    border: 6px solid #FFFF00;
    padding: 25px;
    margin-bottom: 20px;
    text-align: center;
    box-shadow: 0 0 25px #FF00FF;
    transform: rotate(1.5deg);
}

.blink-text {
    font-size: 32px;
    color: #FFFF00;
    text-shadow: 2px 2px #000;
    animation: blink 0.5s infinite;
}

.warning-text { font-size: 20px; color: #FFF; font-weight: bold; margin-top: 10px; }

.main-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.offer-box {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    border: 5px solid #FF00FF;
    padding: 25px;
    text-align: center;
    box-shadow: 0 0 20px #00FF00;
    position: relative;
    overflow: hidden;
}
.rotate-left { transform: rotate(-2deg); }
.rotate-right { transform: rotate(2deg); }

.flash {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #FF0000;
    color: #FFFF00;
    padding: 5px 15px;
    font-weight: bold;
    border: 3px solid #000;
    font-size: 14px;
}

.offer-box h3 {
    font-size: 24px;
    color: #FF0000;
    margin-bottom: 15px;
    text-shadow: 2px 2px #00FFFF;
}
.offer-box p { font-size: 18px; color: #000; font-weight: bold; margin-bottom: 15px; }

.cta-button {
    width: 100%;
    padding: 15px;
    font-size: 20px;
    font-weight: bold;
    border: 5px solid #000;
    cursor: pointer;
    color: #FFF;
    text-shadow: 2px 2px #000;
    margin-bottom: 10px;
}

.rainbow-bg {
    background: linear-gradient(45deg, #FF0000, #FF7F00, #FFFF00, #00FF00, #0000FF, #8B00FF);
    background-size: 400% 400%;
    animation: rainbow-gradient 2s linear infinite;
}
.pulse-bg { background: #FF00FF; animation: pulse 1s infinite; }
.shake-bg { background: #00FFFF; animation: shake-button 0.3s infinite; }
.small-text { font-size: 12px; color: #666; font-style: italic; }

.form-section {
    background: linear-gradient(90deg, #FFD700, #FFA500, #FFD700);
    border: 8px double #FF00FF;
    padding: 30px;
    margin-bottom: 20px;
    box-shadow: 0 0 30px #00FF00;
    transform: rotate(-0.5deg);
}
.form-section h2 {
    font-size: 28px;
    color: #FF0000;
    text-align: center;
    text-shadow: 2px 2px #00FFFF;
    margin-bottom: 20px;
}
.data-form { display: flex; flex-direction: column; gap: 15px; }
.form-input {
    padding: 15px;
    font-size: 18px;
    border: 4px solid #000;
    font-family: 'Comic Sans MS', cursive;
    font-weight: bold;
}
.pink-input { background: #FF69B4; color: #FFF; }
.cyan-input { background: #00FFFF; color: #000; }
.yellow-input { background: #FFFF00; color: #000; }
.lime-input { background: #7FFF00; color: #000; }
.orange-input { background: #FF8C00; color: #FFF; }

.submit-button {
    padding: 20px;
    font-size: 24px;
    font-weight: bold;
    background: linear-gradient(45deg, #FF0000, #FF7F00, #FFFF00, #00FF00, #0000FF, #8B00FF);
    background-size: 400% 400%;
    animation: rainbow-gradient 2s linear infinite;
    border: 5px solid #000;
    color: #FFF;
    cursor: pointer;
    text-shadow: 2px 2px #000;
    box-shadow: 0 0 20px #FF00FF;
}

.data-form:has(:invalid) .submit-button {
  pointer-events: none;
  filter: grayscale(.4) brightness(.85);
  cursor: not-allowed;
  box-shadow: none;
  opacity: .7;
}
.data-form:has(:valid) .submit-button {
  pointer-events: auto;
  opacity: 1;
}

.popup-boxes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}
.popup-box {
    background: linear-gradient(180deg, #FF1493, #FF69B4);
    border: 5px solid #FFFF00;
    padding: 20px;
    text-align: center;
    box-shadow: 0 0 15px #FF00FF;
}
.popup-box h4 {
    font-size: 20px;
    color: #FFFF00;
    margin-bottom: 10px;
    text-shadow: 2px 2px #000;
}
.popup-box p { font-size: 16px; color: #FFF; font-weight: bold; margin-bottom: 15px; }

.danger-button, .gold-button, .red-button {
    width: 100%;
    padding: 12px;
    font-size: 16px;
    font-weight: bold;
    border: 3px solid #000;
    cursor: pointer;
    color: #FFF;
}
.danger-button { background: #FF0000; }
.gold-button { background: #FFD700; color: #000; }
.red-button { background: #8B0000; }

.testimonials {
    background: linear-gradient(135deg, #87CEEB, #4169E1);
    border: 8px ridge #FFD700;
    padding: 30px;
    margin-bottom: 20px;
    box-shadow: 0 0 25px #FF00FF;
}
.section-title {
    font-size: 32px;
    color: #FFFF00;
    text-align: center;
    text-shadow: 3px 3px #FF00FF;
    margin-bottom: 20px;
}
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}
.testimonial-card {
    background: #FFFFFF;
    border: 4px solid #FF00FF;
    padding: 20px;
    box-shadow: 5px 5px 0 #000;
}
.testimonial-card p { font-size: 16px; color: #000; margin-bottom: 10px; }
.author { font-weight: bold; color: #0000FF; font-style: italic; }

.footer {
    background: #000;
    border: 5px solid #FFFF00;
    padding: 20px;
    text-align: center;
    box-shadow: 0 0 20px #00FF00;
}
.footer-marquee { font-size: 20px; color: #FF0000; font-weight: bold; margin-bottom: 15px; }
.footer-text { font-size: 16px; color: #FFFF00; font-weight: bold; margin-bottom: 10px; }
.footer-small { font-size: 12px; color: #FF00FF; }

@keyframes twinkle { 0%,100%{opacity:1;} 50%{opacity:0.3;} }
@keyframes rainbow-gradient { 0%{background-position:0% 50%;} 50%{background-position:100% 50%;} 100%{background-position:0% 50%;} }
@keyframes shake {
    0%,100%{transform:translateX(0) rotate(0);}
    25%{transform:translateX(-5px) rotate(-2deg);}
    75%{transform:translateX(5px) rotate(2deg);}
}
@keyframes blink { 0%,50%,100%{opacity:1;} 25%,75%{opacity:0;} }
@keyframes blink-slow { 0%,100%{opacity:1;} 50%{opacity:.5;} }
@keyframes pulse { 0%,100%{transform:scale(1);} 50%{transform:scale(1.05);} }
@keyframes shake-button { 0%,100%{transform:translateX(0);} 25%{transform:translateX(-3px);} 75%{transform:translateX(3px);} }
@keyframes rotate { 0%{transform:rotate(0);} 100%{transform:rotate(360deg);} }

@media (max-width:768px){
    .main-title{font-size:28px;}
    .banner-row{flex-direction:column;}
    .scrolling-text{font-size:18px;}
    .offer-box h3{font-size:20px;}
}

.toast-pending, .toast-success {
  position: fixed;
  left: 50%;
  bottom: 20px;
  transform: translateX(-50%) translateY(10px);
  color: #fff;
  padding: 14px 18px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,.25);
  display: none;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  z-index: 9999;
  opacity: 0;
}
.toast-pending { background: #555; }
.toast-success { background: #16a34a; }

.toast-pending .loader-circle {
  width: 20px; height: 20px;
  border-radius: 50%;
  border: 3px solid rgba(255,255,255,.45);
  border-top-color:#fff;
  animation: spin 1s linear infinite;
}

#sent:target.toast-pending {
  display: flex;
  animation: toast-in 0.25s ease-out forwards,
             toast-out 0.6s ease-in 5s forwards;
}
#sent:target ~ .toast-success {
  display: flex;
  animation: toast-in 0.25s ease-out 5s forwards,
             toast-out 0.6s ease-in 8s forwards;
}

@keyframes spin { to { transform: rotate(360deg); } }
@keyframes toast-in {
  from { opacity: 0; transform: translateX(-50%) translateY(10px); }
  to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}
@keyframes toast-out {
  to { opacity: 0; transform: translateX(-50%) translateY(10px); }
}