/* Home Page Styles */
body {
    margin: 0;
    padding: 0;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    background-color: #000;
}

canvas#kineticCanvas {
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
}

/* Ensure nav is visible on dark background */
nav {
    background: rgba(0, 0, 0, 0.2) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
}

nav a {
    color: rgba(255, 255, 255, 0.7) !important;
}

nav a:hover,
nav a.active {
    color: #fff !important;
    background: rgba(255, 255, 255, 0.1) !important;
}