/* style.css */
html,
body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
}

html {
    scroll-behavior: smooth;
    /* Custom scrollbar works nicely with dark themes */
    scrollbar-width: thin;
    scrollbar-color: #FF4500 #0B0F15;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

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

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

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

/* Canvas styling */
#canvas-container canvas {
    display: block;
    outline: none;
}

/* Text selections */
::selection {
    background: #FF4500;
    color: white;
}

/* Animations for Chapter Titles on Scroll */
.chapter-active {
    opacity: 1 !important;
    transform: scale(1) !important;
}