/* Tailwind handles most of the styling, this is just for any custom utilities if needed. We don't need much anymore since animations are in JS. */

body {
    background-color: #0A0A0F;
}

/* Hide scrollbar for cleaner cinematic look */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #0A0A0F;
}

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

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

#features-grid .p-8 {
    opacity: 1;
}

/* Side Navigation Dots */
.nav-dot {
    width: 10px;
    height: 10px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid transparent;
}

.nav-dot:hover {
    background-color: rgba(74, 222, 128, 0.5);
    transform: scale(1.3);
}

.nav-dot.active {
    background-color: #4ADE80;
    transform: scale(1.5);
    box-shadow: 0 0 15px rgba(74, 222, 128, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Tooltip for dots */
.nav-dot::after {
    content: attr(data-label);
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%) translateX(10px);
    background-color: #12121A;
    color: white;
    padding: 4px 12px;
    border-radius: 6px;
    font-size: 11px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    letter-spacing: 0.05em;
}

.nav-dot:hover::after {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
}

#navbar {
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

#navbar > div {
    transition: all 0.4s ease;
}

#navbar:hover > div {
    background-color: rgba(255, 255, 255, 0.95);
    border-color: rgba(0, 0, 0, 0.1);
    transform: translateY(2px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

.dark #navbar:hover > div {
    background-color: rgba(18, 18, 26, 0.85);
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}