/* Rainbow background animation */
@keyframes rainbow_bg {
    0% { background-color: #ff0000; }
    25% { background-color: #ffff00; }
    50% { background-color: #00ff00; }
    75% { background-color: #0000ff; }
    100% { background-color: #ff0000; }
}

/* HTML base */
html {
    overflow-x: hidden;
    height: 100%;
    animation: rainbow_bg 0.5s linear infinite;
}

/* Body base - REMOVED font-family from here */
body {
    margin: 0;
    color: white;
    background: black;
    cursor: none !important;
    -webkit-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
    user-drag: none;
    animation: none !important;
}

/* Disable cursor and drag for all elements */
* {
    cursor: none !important;
    -webkit-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
    user-drag: none;
}

/* Sidebar styling - ENFORCED font-family here */
.sidebar {
    position: fixed;
    left: 0;
    top: 0;
    width: 100px;
    height: 100%;
    background: linear-gradient(to bottom, #000080, #000040);
    border-right: 3px ridge #ccc;
    padding: 10px;
    z-index: 1001;
    overflow-y: auto;
    font-family: Arial, sans-serif !important;
}

.sidebar-icon {
    width: 80px;
    height: 80px;
    margin: 10px 0;
    background: rgba(255,255,255,0.1);
    border: 2px outset #ccc;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    font-size: 12px;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.1s;
    font-family: Arial, sans-serif !important;
}

.sidebar-icon:hover {
    background: rgba(255,255,255,0.2);
    border: 2px inset #ccc;
}

/* Main content area */
.main-content {
    padding: 20px;
    padding-left: 120px;
    min-height: 100vh;
}

/* Cursor image */
#cursor {
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-22px, -23px);
}
