/* Vercel-like Aesthetic Utilities */

body {
    background-color: #000;
    color: #ededed;
}

/* CTA Glow Effect */
.cta-glow {
    position: relative;
}

.cta-glow::before {
    content: '';
    position: absolute;
    top: -1px; left: -1px; right: -1px; bottom: -1px;
    background: linear-gradient(45deg, #ffffff, transparent, #ffffff);
    z-index: -1;
    border-radius: 6px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cta-glow:hover::before {
    opacity: 0.5;
    animation: glow-spin 2s linear infinite;
}

@keyframes glow-spin {
    0% { background-position: 0% 50%; }
    100% { background-position: 100% 50%; }
}

/* Terminal Animation Specifics */
.terminal-cursor {
    display: inline-block;
    width: 8px;
    animation: blink-caret .75s step-end infinite;
    color: white;
}

@keyframes blink-caret {
    from, to { opacity: 0; }
    50% { opacity: 1; }
}

/* Bento Card Styles */
.bento-card {
    background: linear-gradient(135deg, rgba(255,255,255,0.03) 0%, transparent 100%);
    border: 1px solid rgba(255,255,255,0.05);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), border-color 0.4s ease, box-shadow 0.4s ease;
}

.bento-card:hover {
    border-color: rgba(255,255,255,0.2);
    transform: translateY(-4px);
    box-shadow: 0 20px 40px -20px rgba(255,255,255,0.05);
}

/* Dropdown Bridge to prevent hover loss */
.group:hover .invisible {
    visibility: visible;
}

/* Custom Scrollbar for a more premium feel */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #000;
}

::-webkit-scrollbar-thumb {
    background: #333;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #555;
}
