/* style.css */
body {
    font-family: 'Poppins', 'Fira Sans', sans-serif;
    margin: 0;
    overflow-x: hidden;
    background: #111;
    display: flex;
    flex-direction: column;
    height: 100vh;
}

canvas {
    display: block;
    width: 100%;
    height: 100%;
}

.hover-card {
    position: absolute;
    background: #1e1e1e;
    color: #fff;
    padding: 15px 20px;
    border-radius: 10px;
    font-family: sans-serif;
    font-size: 14px;
    pointer-events: none;
    display: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    width: 250px;
    z-index: 100;
}

.hover-card h3 {
    margin: 0 0 5px;
    font-size: 16px;
    color: #f0c200;
}

.hover-card p {
    margin: 5px 0 10px;
    font-size: 13px;
    color: #ccc;
}

.hover-card ul {
    margin: 0;
    padding-left: 18px;
}

.hover-card ul li {
    list-style-type: disc;
    font-size: 13px;
    color: #aaa;
}

.feature-list {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 10px;
}

.feature-pill {
    background: #2a2a2a;
    color: #fff;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 13px;
    font-family: sans-serif;
    border: 1px solid #444;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.card h3 {
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 5px;
}

.card p {
    font-size: 14px;
    color: #ccc;
    margin: 0;
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: #f0c200;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    z-index: 1000;
    font-family: 'Poppins', sans-serif;
    border-bottom: 2px solid #000;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.logo {
    display: flex;
    align-items: center;
    color: #000;
    font-weight: 700;
    font-size: 22px;
    text-transform: uppercase;
}

.logo img {
    height: 36px;
    margin-right: 10px;
}

.nav-links {
    display: flex;
    gap: 20px;
}

.nav-item {
    color: #000;
    text-decoration: none;
    font-weight: 600;
    padding: 8px 12px;
    border-radius: 5px;
    transition: background 0.2s, color 0.2s;
}

.nav-item:hover {
    background-color: #000;
    color: #fff;
}

footer {
    bottom: 0;
    left: 0;
    right: 0;
    background: #111;
    color: #eee;
    font-family: 'Fira Sans', 'Poppins', sans-serif;
    font-size: 14px;
    padding: 12px 20px;
    text-align: center;
    border-top: 1px solid #333;
    z-index: 999;
}

footer a {
    color: #f0c200;
    text-decoration: none;
    margin: 0 8px;
}

footer a:hover {
    text-decoration: underline;
}

.sidebar {
    display: none; /* Placeholder - set to block when needed */
}
