/* css/style.css */

/* --- Default Styles --- */
body {
    font-family: "Segoe UI", "Roboto", "Helvetica Neue", "Arial", sans-serif;
    color: #eee;
    margin: 0;
    background-color: transparent;
    /* NOCOPY STYLES */
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

header {
    position: sticky;
    top: 0;
    z-index: 100;

    background: linear-gradient(135deg, rgba(30, 30, 30, 0.6), rgba(50, 50, 50, 0.4));
    
    backdrop-filter: blur(15px); 
    -webkit-backdrop-filter: blur(15px);
    
    padding: 15px 0;
    text-align: center;
    border-bottom: 1px solid #444;
}

header h1 {
    margin: 0 0 10px 0;
    font-size: 1em;
    font-weight: 600;
}

main#content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    
    /* min-height: calc(100vh - 70px); */
    padding: 20px;
    
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.75s, visibility 0.75s;
}

main#content.content--visible {
    opacity: 1;
    visibility: visible;
}

main#content h1 {
    font-family: 'Courier New', Courier, monospace;
    font-size: 1.5em;
    font-weight: 600;
    margin: 0;
    text-align: center;
}

nav {
    display: flex;
    justify-content: center;
    align-items: center;
}

nav a {
    margin: 0 15px;
    color: #7b38bb;
    text-decoration: none;
    font-weight: bold;
    position: relative;
    transition: color 0.3s ease;
}

nav a::before {
    content: '';
    position: absolute;
}

nav a:hover {
    color: #fff;
}



/* --- Custom Scrollbar Styles --- */
html {
    scrollbar-width: thin;
    scrollbar-color: #853dc9 #000000;
}

::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: #000000;
}

::-webkit-scrollbar-thumb {
    background-color: #853dc9;
    border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
    background-color: #a358e8;
}