:root {
    --brand: #5865f2;
    --button-hover: #4752c4;
    --background-dark: #313338;
    --background-card: #2b2d31;
    --text-normal: #dbdee1;
    --text-muted: #b5bac1;
    --text-link: #00a8fc;
    --input-bg: #1e1f22;
    --white: #ffffff;
    --header-bg: rgba(0, 123, 255, 1);
    --text-danger: #fa777a;
    --required: #fa777a;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    font-family: "gg sans", "Noto Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
    background-color: var(--background-dark);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    overflow: hidden;
    color: var(--text-normal);
}


.dev-header {
    width: 100%;
    padding: 8px 0;
    background-color: var(--header-bg);
    color: white;
    font-weight: bold;
    text-align: center;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.copyright,
.made-with,
.easter-egg {
    position: fixed;
    bottom: 10px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    z-index: 1000;
}

.copyright {
    left: 50%;
    transform: translateX(-50%);
    pointer-events: none;
}

.made-with {
    right: 10px;
    pointer-events: none;
}

.easter-egg {
    left: 10px;
    background: none;
    border: none;
    cursor: pointer;
    pointer-events: visible;
}


/* Global Transitions */
.fade-out {
    opacity: 0 !important;
    transition: opacity 2s ease;
    pointer-events: none;
}

/* Common Button Behavior */
button {
    cursor: pointer;
    border: none;
    outline: none;

    transition:
        background-color 0.2s cubic-bezier(0.4, 0, 0.2, 1),
        transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1),
        box-shadow 0.2s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

button:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    opacity: 0.9;
}

button:active {
    transform: translateY(0) scale(0.95);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
    transition: transform 0.05s linear;
}