* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    color: var(--text-color);
}
body {
    font-family: 'Courier New', Courier, monospace;
    width: 100%;
    height: 100vh;

    background-color: var(--background-color-body);

    --background-color-body: #0a1222;
    --background-color: #151f31;
    --border-color: #1f2b40;
    --curent-color: #5c2626;
    --text-color: #fffa;

    --color-tag-red-bg: #291515;
    --color-tag-red-border: #5c2626;
    --color-tag-red-color: #e04141;
    --color-tag-green-bg: #182915;
    --color-tag-green-border: #295c26;
    --color-tag-green-color: #41e04c;

    --sidebar-hover: #1c283f;
    --sidebar-active-bg: #1e2b43;
    --text-muted: rgba(255, 255, 255, 0.6);
}

 /* Фоновые элементы для украшения */
.bg-grid {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(var(--border-color) 1px, transparent 1px),
        linear-gradient(90deg, var(--border-color) 1px, transparent 1px);
    background-size: 40px 40px;
    opacity: 0.15;
    z-index: 0;
}

.bg-circles {
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.circle {
    position: fixed;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    background: rgba(255, 255, 255, 0.1);
    opacity: 0.5;
}

.circle-1 {
    animation: circle-1 0.3s ease-in-out 0.1s forwards;
}

.circle-2 {
    animation: circle-2 0.5s ease-in-out 0.1s forwards;
}
.top {
    position: relative;
    display: flex;
    justify-content: space-between;
    background-color: var(--background-color);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.5);
    padding: 1em;
    z-index: 11;
}
.top * {
    color: var(--text-color);
    text-decoration: none;
}
.top .right a[data-type="login"] {
    border: 1px solid;
    padding: 0.5em;
    border-radius: 4px;
}
@keyframes circle-1 {
    from {
        width: 0px;
        height: 0px;
        top: -100px;
        right: -100px;
    }
    to {
        width: 300px;
        height: 300px;
        top: -100px;
        right: -100px;
    }
}
@keyframes circle-2 {
    from {
        width: 0px;
        height: 0px;
        bottom: -80px;
        left: -80px;
    }
    to {
        width: 200px;
        height: 200px;
        bottom: -80px;
        left: -80px;
    }
}