html, body {
    height: 100%;
    margin: 0;
    font-family: "Raleway", sans-serif;
    background-color: white;
    color: black;
}
body {
    padding-top: 100px;
    padding-bottom: 80px;
}
.bg-primary {
    background: linear-gradient(90deg, #2e2e2e, #000000);
}
.bg-secondary {
    background: linear-gradient(90deg, #6ee7ff, #FFF);
    cursor: pointer;
}
h1 {
    font-weight: 900;
    font-size: 7em;
    line-height: 95px;
}
p {
    font-size: 0.9em;
}
header, footer {
    background-color: #f8f9fa;
    position: fixed;
    left: 0;
    width: 100%;
    border-color: #dee2e6;
    z-index: 1030;
}
header {
    top: 0;
}
footer {
    bottom: 0;
    text-align: center;
    padding: 0.75rem;
    font-weight: 500;
}
footer a {
    color: #6ee7ff;
}
.footer-link {
    text-decoration: none;
    cursor: pointer;
}
.navbar-brand {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    color: black !important;
}
.navbar-brand img {
    width: 40px;
    height: 40px;
    margin-right: 0.75rem;
    object-fit: cover;
}
.drop-zone {
    border: 10px dashed #bbb;
    border-radius: 0.5rem;
    padding: 2rem;
    transition: border-color 0.2s ease, background-color 0.2s ease;
    user-select: none;
    max-width: 500px;
    width: 100%;
    background-color: #000;
}
.drop-zone.drag-over {
    border-color: #0d6efd;
    background-color: #f8f9fa;
}
.image-container img {
    max-width: 200px;
    height: auto;
    margin-bottom: 2rem;
}
input[type="file"] {
    display: none;
}
.intel-box {
    background: #efefef;
    border-left: 5px solid #000;
    padding: 1rem;
    margin-top: 2rem;
    font-size: 0.95rem;
    color: #000;
}
.planet-wrapper {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}
.planet {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    background: radial-gradient(
    circle at 30% 30%,
    #6ee7ff 0%,          
    #3b82f6 20%,        
    #1e3a8a 45%,         
    #0f172a 70%,         
    #000000 100%         
    );
    animation: spin 60s linear infinite;
    box-shadow: inset 0 0 60px rgba(255, 255, 255, 0.05), 0 0 30px rgba(13, 110, 253, 0.4);
    position: relative;
}
.planet .light {
    position: absolute;
    width: 6px;
    height: 6px;
    background: #00ffff;
    border-radius: 50%;
    opacity: 0;
    animation: flicker 5s infinite ease-in-out;
}
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
@keyframes flicker {
    0%, 100% { opacity: 0; }
    10%, 30%, 50%, 70%, 90% { opacity: 1; }
    20%, 40%, 60%, 80% { opacity: 0; }
}
img.all-white {
    filter: brightness(0) invert(1);
}
.btn-primary {
    border: 2px solid #000;
    color: #000;
    font-weight: bold;
    background: #6ee7ff;
    transition: 0.5s;
}
.btn-primary:hover {
    border: 2px solid #fff;
    color: #fff;
    font-weight: bold;
    background: #000;
}
.rocket-list {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.rocket-list li {
    position: relative;
    padding-left: 2rem; /* space for icon */
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.rocket-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.2rem; /* vertically align icon */
    width: 1.25rem;
    height: 1.25rem;
    background: no-repeat center/contain;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" fill="%23007bff" viewBox="0 0 16 16"><path d="M10.175 1.991c.81 1.312 1.583 3.43 1.778 6.819l1.5 1.83A2.5 2.5 0 0 1 14 12.202V15.5a.5.5 0 0 1-.9.3l-1.125-1.5c-.166-.222-.42-.4-.752-.57-.214-.108-.414-.192-.627-.282l-.196-.083C9.7 13.793 8.85 14 8 14s-1.7-.207-2.4-.635q-.101.044-.198.084c-.211.089-.411.173-.625.281-.332.17-.586.348-.752.57L2.9 15.8a.5.5 0 0 1-.9-.3v-3.298a2.5 2.5 0 0 1 .548-1.562l.004-.005L4.049 8.81c.197-3.323.969-5.434 1.774-6.756.466-.767.94-1.262 1.31-1.57a3.7 3.7 0 0 1 .601-.41A.55.55 0 0 1 8 0c.101 0 .17.027.25.064q.056.025.145.075c.118.066.277.167.463.315.373.297.85.779 1.317 1.537M9.5 6c0-1.105-.672-2-1.5-2s-1.5.895-1.5 2S7.172 8 8 8s1.5-.895 1.5-2"/><path d="M8 14.5c.5 0 .999-.046 1.479-.139L8.4 15.8a.5.5 0 0 1-.8 0l-1.079-1.439c.48.093.98.139 1.479.139"/></svg>');
}

/* Distortion animation */
@keyframes distortion {
  0% { opacity: 0; filter: blur(6px) contrast(200%); transform: translateX(-20px); }
  20% { opacity: 0.7; filter: blur(4px) contrast(180%); transform: translateX(20px); }
  40% { opacity: 0.5; filter: blur(5px) contrast(220%); transform: translateX(-15px); }
  60% { opacity: 0.8; filter: blur(3px) contrast(150%); transform: translateX(10px); }
  80% { opacity: 1; filter: blur(2px) contrast(120%); transform: translateX(-5px); }
  100% { opacity: 1; filter: blur(0) contrast(100%); transform: none; }
}

.distort-once {
  display: inline-block;
  animation: distortion 1.2s ease-out forwards;
}

.whatsapp {
bottom: 30px; right: 10px; width: 70px; height: 70px; z-index: 1050; cursor: pointer;
}

/* Make rocket bold, large, and shaking */
.rocket-button i.bi-rocket-fill {
  font-size: 2rem;           /* big rocket */
  display: inline-block;
  animation: shakeRocket 0.8s infinite;
  margin-right: 0.5rem;
}

/* Rocket shake animation */
@keyframes shakeRocket {
  0%, 100% { transform: rotate(0deg); }
  25% { transform: rotate(-15deg); }
  50% { transform: rotate(10deg); }
  75% { transform: rotate(-10deg); }
}

/* Rocket launch effect: move down then up */
.rocket-launch {
  animation: launchRocket 0.8s ease-in-out forwards;
}

@keyframes launchRocket {
  0%   { transform: translateY(0); }
  50%  { transform: translateY(10px); }
  100% { transform: translateY(-100px); }
}



