@import url('https://fonts.googleapis.com/css2?family=Jim+Nightshade&display=swap');


:root {
    --text-primary: #ffffff;
    --text-secondary: #B3B3B3;
    --font-family: 'Jim Nightshade', cursive;
}

#page-container{
    width: 100%;
    height: 100vh;
    background-color: #000;
    background-image: radial-gradient(circle at top right, rgba(121, 68, 154, 0.13),       transparent),
    radial-gradient(circle at 20% 80%, rgba(41, 196, 255, 0.13), transparent)
}

html, body {
  margin: 0;
  padding: 0;
  overflow: hidden;   /* <- removes ALL scrollbars */
  height: 100%;
}

canvas {
    position: fixed;
    width: 100vw;
    height: 100vh;
    z-index: -1;
}
#page-content{
    color: var(--text-primary);
    padding: 10px;
    font-family: var(--font-family);
    font-size: 1.3rem;
    line-height: 2px;
}

a {
    color: var(--text-primary);
    text-decoration: none;
}

.page-centered{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    padding: 20px;
}

#bot-stats-button {
    margin-top: 20px;
    padding: 12px 28px;
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    text-decoration: none;
    letter-spacing: 1px;

    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 8px;

    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);

    cursor: pointer;
    transition: 
        background 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease,
        transform 0.15s ease;
}

/* Hover effect */
#bot-stats-button:hover {
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 255, 255, 0.45);
    box-shadow: 0 0 12px rgba(255, 255, 255, 0.35);
    transform: translateY(-2px);
}

/* Click animation */
#bot-stats-button:active {
    transform: scale(0.97);
    box-shadow: 0 0 6px rgba(255, 255, 255, 0.2);
}

