html, body { background-color: #000000 !important; scroll-behavior: smooth; }
body { font-family: 'Plus Jakarta Sans', sans-serif; }

/* Luxury Glass Cards */
.tool-card {
    background: linear-gradient(145deg, #0a0a0a 0%, #050505 100%);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 35px;
    padding: 50px 40px;
    transition: all 0.5s cubic-bezier(0.2, 1, 0.2, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.tool-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle at top right, rgba(34, 211, 238, 0.1), transparent);
    opacity: 0;
    transition: 0.5s;
}

.tool-card:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: rgba(34, 211, 238, 0.3);
    box-shadow: 0 40px 80px -20px rgba(0, 0, 0, 1), 0 0 20px rgba(34, 211, 238, 0.1);
}

.tool-card:hover::before { opacity: 1; }

.tool-icon {
    font-size: 4rem;
    margin-bottom: 2rem;
    display: inline-block;
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.2));
}

/* Modal Inputs */
textarea {
    background: #000 !important;
    border: 1px solid #222 !important;
    color: #fff !important;
    border-radius: 20px;
}

.btn-action {
    background: linear-gradient(90deg, #06b6d4, #3b82f6);
    color: white;
    font-weight: 800;
    border-radius: 20px;
    transition: 0.3s;
}

.btn-action:hover {
    filter: brightness(1.2);
    box-shadow: 0 10px 20px rgba(6, 182, 212, 0.3);
}

/* Animations */
.scale-up-anim { animation: scaleIn 0.4s ease-out forwards; }
@keyframes scaleIn { from { opacity: 0; transform: scale(0.9); } to { opacity: 1; transform: scale(1); } }

::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-thumb { background: #222; border-radius: 10px; }