* { font-family: 'Space Grotesk', sans-serif; }

.neo-box {
    background: white;
    border: 3px solid #000;
    box-shadow: 6px 6px 0px 0px #000000;
    border-radius: 12px;
    transition: all 0.2s ease;
}
.neo-box:hover {
    box-shadow: 8px 8px 0px 0px #000000;
    transform: translate(-2px, -2px);
}
.neo-input {
    border: 3px solid #000;
    border-radius: 10px;
    padding: 14px;
    font-weight: 700;
    width: 100%;
    outline: none;
    box-shadow: inset 2px 2px 0px rgba(0,0,0,0.1);
    transition: all 0.2s;
}
.neo-input:focus {
    background-color: #FFF9C4;
    box-shadow: inset 3px 3px 0px rgba(0,0,0,0.2);
}
.neo-input.blocked {
    border-color: #FF6B6B;
    background-color: #FEE2E2;
    animation: shake 0.5s ease-in-out;
}
.neo-btn {
    border: 3px solid #000;
    box-shadow: 4px 4px 0px 0px #000000;
    border-radius: 10px;
    font-weight: 800;
    transition: all 0.1s ease;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.neo-btn:active {
    box-shadow: 0px 0px 0px 0px #000000;
    transform: translate(4px, 4px);
}
.neo-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    filter: grayscale(100%);
}
.dot-bg {
    background-color: #e2e2e2;
    background-image: radial-gradient(#000 1.5px, transparent 1.5px);
    background-size: 24px 24px;
}
.vip-glow {
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.6), 6px 6px 0px 0px #000000;
    animation: pulse-gold 2s infinite;
}
@keyframes pulse-gold {
    0%, 100% { box-shadow: 0 0 20px rgba(255, 215, 0, 0.6), 6px 6px 0px 0px #000000; }
    50% { box-shadow: 0 0 30px rgba(255, 215, 0, 0.8), 6px 6px 0px 0px #000000; }
}
.status-badge { animation: bounce 2s infinite; }
@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-3px); }
}
.coin-display {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    border: 3px solid #000;
    box-shadow: 4px 4px 0px 0px #000000;
}
.toast { animation: slideIn 0.3s ease-out, fadeOut 0.3s ease-in 4s forwards; }
@keyframes slideIn {
    from { transform: translateX(100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}
@keyframes fadeOut { to { opacity: 0; visibility: hidden; } }
@keyframes shake {
    0%, 100% { transform: translateX(0); }
    10%, 30%, 50%, 70%, 90% { transform: translateX(-5px); }
    20%, 40%, 60%, 80% { transform: translateX(5px); }
}
.nav-item { transition: all 0.2s; }
.nav-item:hover { transform: translateY(-2px); }
.nav-item.active { background: #6366f1; color: white; box-shadow: 4px 4px 0px 0px #000000; }
.scraper-box { animation: slideDown 0.3s ease-out; }
@keyframes slideDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}
.blocked-warning {
    background: #FEE2E2; border: 3px solid #FF6B6B; color: #991B1B;
    padding: 12px; border-radius: 10px; font-weight: 700; font-size: 12px;
    text-transform: uppercase; display: flex; align-items: center; gap: 8px;
    margin-top: 8px; box-shadow: 4px 4px 0px #000;
}
.invalid-link-warning {
    background: #FEF3C7; border: 3px solid #F59E0B; color: #92400E;
    padding: 12px; border-radius: 10px; font-weight: 700; font-size: 12px;
    text-transform: uppercase; display: flex; align-items: center; gap: 8px;
    margin-top: 8px; box-shadow: 4px 4px 0px #000;
}
.tutorial-link {
    display: inline-flex; align-items: center; gap: 6px;
    background: #6366f1; color: white; padding: 8px 16px;
    border-radius: 8px; font-weight: 800; font-size: 11px;
    text-transform: uppercase; border: 2px solid #000;
    box-shadow: 3px 3px 0px #000; transition: all 0.2s;
    text-decoration: none; margin-top: 8px;
}
.tutorial-link:hover { transform: translate(-2px, -2px); box-shadow: 5px 5px 0px #000; }
.emoji-preview {
    min-height: 50px; display: flex; align-items: center;
    justify-content: center; gap: 10px; font-size: 1.8rem; flex-wrap: wrap;
}
.emoji-tag-manual {
    background: #FFD700; border: 2px solid #000;
    border-radius: 8px; padding: 4px 8px; box-shadow: 2px 2px 0px #000;
}
.vip-card {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    border: 4px solid #000;
    box-shadow: 8px 8px 0px 0px #000000;
}
.animate-float { animation: float 3s ease-in-out infinite; }
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}
.bg-pattern {
    background-color: #111;
    background-image: radial-gradient(#333 2px, transparent 2px);
    background-size: 30px 30px;
}

/* Turnstile wrapper */
.turnstile-wrap {
    display: flex;
    justify-content: center;
    margin-top: 4px;
}
