/* CSS */
body {
    background-color: #000000;
    color: #F8FAFC;
}

.chart-container {
    position: relative;
    width: 100%;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    height: 300px;
    max-height: 400px;
}

@media (min-width: 768px) {
    .chart-container {
        height: 350px;
    }
}

.scrolly-container {
    position: relative;
}

.scrolly-sticky {
    position: sticky;
    top: 0;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-block {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 2rem;
    opacity: 0.3;
    transition: opacity 0.5s;
}

.step-block.active {
    opacity: 1;
}

canvas#heroCanvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.glowing-border {
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: all 0.3s ease;
}

.glowing-border:hover {
    border-color: #06B6D4;
    box-shadow: 0 0 15px rgba(6, 182, 212, 0.15);
    transform: translateY(-2px);
}

.nav-link {
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -4px;
    left: 0;
    background-color: #06B6D4;
    transition: width 0.3s;
}

.nav-link:hover::after {
    width: 100%;
}

/* Hide scrollbar for neatness */
::-webkit-scrollbar {
    width: 8px;
}

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

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

::-webkit-scrollbar-thumb:hover {
    background: #06B6D4;
}