/* --- RAINBOW & GLOW --- */
@keyframes spectrum-flow {
    0% { filter: hue-rotate(0deg) drop-shadow(0 0 25px #15fd00); text-shadow: -1.5px -1.5px 0 #15fd00, 1.5px 1.5px 0 #15fd00; }
    100% { filter: hue-rotate(360deg) drop-shadow(0 0 25px #15fd00); text-shadow: -1.5px -1.5px 0 #15fd00, 1.5px 1.5px 0 #15fd00; }
}

.hero-text h1 span:hover, .hero-text h1 span:active {
    color: #15fd00 !important;
    letter-spacing: 8px !important;
    animation: spectrum-flow 8s infinite linear !important;
}

/* --- THE CLEAN "01, 02, 03" OUTLINE FIX --- */
.outline-wrapper {
    position: relative;
    display: inline-block;
    font-size: 5rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 10px;
}

.outline-num {
    color: #000; 
    -webkit-text-stroke: 6px #15fd00;
    filter: drop-shadow(0 0 5px rgba(21, 253, 0, 0.5));
}

.outline-num::before {
    content: attr(data-content);
    position: absolute;
    left: 0;
    top: 0;
    -webkit-text-fill-color: #000;
    -webkit-text-stroke: 0;
    z-index: 1;
}

/* --- LOGO PULSE --- */
.logo-pulse-active { animation: logoPulse 4s infinite ease-in-out; }
@keyframes logoPulse {
    0%, 100% { opacity: 0.25; filter: drop-shadow(0 0 5px #15fd00); }
    50% { opacity: 0.5; filter: drop-shadow(0 0 15px #15fd00); }
}

/* --- TYPING CURSOR --- */
.typing-cursor::after { content: "_"; color: #15fd00; animation: blink 0.8s infinite; }
@keyframes blink { 50% { opacity: 0; } }

/* --- LAYOUT STYLES --- */
.home-main { background: #000; padding: 0 5%; }
.trust-bar { display: flex; justify-content: space-around; padding: 40px 0; border-bottom: 1px solid #111; flex-wrap: wrap; gap: 20px; }
.badge { color: #15fd00; font-weight: bold; font-size: 0.9rem; letter-spacing: 1px; }
.neon-text { font-size: 2.5rem; color: #15fd00; text-align: center; margin: 80px 0 40px; letter-spacing: 4px; }
.drop-card { display: flex; background: #080808; border: 1px solid #1a1a1a; max-width: 1100px; margin: 0 auto; transition: 0.3s; }
.drop-card:hover { border-color: #15fd00; }
.drop-image { flex: 1; min-height: 400px; background: #111; display: flex; align-items: center; justify-content: center; }
.drop-details { flex: 1; padding: 60px; display: flex; flex-direction: column; justify-content: center; }
.process-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; max-width: 1100px; margin: 0 auto 100px; }
.step h4 { color: #fff; margin-bottom: 10px; letter-spacing: 2px; }
.step p { color: #666; font-size: 0.9rem; line-height: 1.5; }
.insta-section { text-align: center; padding-bottom: 100px; }

@media (max-width: 768px) {
    .drop-card { flex-direction: column; }
    .process-grid { grid-template-columns: 1fr; }
}