* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
body {
	background: #000000;
	color: #ffffff;
	margin: 0;
	left: 50%;
	top: 50%;
	font-family: Arial, sans-serif;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
}
footer {
    position: relative;
    margin-top: auto;
}

.content {
    flex-grow: 1;
    padding: 20px;
}

.logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 20px;
}

.logo-container.mobile-logo {
    position: absolute;
    left: 15px;
    top: 12px;
    z-index: 2001;
    display: block;
}

.logo {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.top-menu {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 10px;
	padding: 10px;
	background-color: rgba(0, 0, 0, 0.7);
	width: 100%;
	position: fixed;
	top: 0;
	z-index: 1000;
	backdrop-filter: blur(8px);
	box-shadow: 0px 2px 5px rgba(255, 255, 255, 0.1);
	overflow: hidden;
	transition: backdrop-filter 0.3s ease;
}

.menu-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
	height: 45px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 2001;
    padding: 10px 15px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.mobile-menu {
    display: none;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 2000;
    overflow-y: auto;
    padding-top: 45px;
    transition: backdrop-filter 0.3s ease;
    backdrop-filter: blur(8px);
}

.mobile-menu.active {
	display: flex;
	backdrop-filter: blur(8px);
	pointer-events: auto;
}
	
.body-lock {
	overflow: hidden;
	pointer-events: none;
}
	
.content-lock {
	pointer-events: none;
}

.menu-toggle {
	display: none;
	position: fixed;
	top: 15px;
	right: 15px;
	width: 30px;
	height: 24px;
	cursor: pointer;
	z-index: 3000;
}

.menu-toggle span {
	position: absolute;
	width: 100%;
	height: 4px;
	background-color: white;
	border-radius: 2px;
	transition: all 0.3s ease;
}

.menu-toggle span:nth-child(1) {
	top: 0;
}

.menu-toggle span:nth-child(2) {
	top: 10px;
}

.menu-toggle span:nth-child(3) {
	top: 20px;
}

.menu-toggle.active span:nth-child(1) {
	transform: rotate(45deg);
	top: 10px;
}

.menu-toggle.active span:nth-child(2) {
	opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
	transform: rotate(-45deg);
	top: 10px;
}

.blur-active {
	filter: blur(8px);
}

.footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 20px;
    background-color: #000000;
    color: white;
    border-top: 2px solid white;
    box-shadow: 0px -2px 5px rgba(255, 255, 255, 0.1);
    position: relative;
    width: 100%;
    z-index: 1000;
}

.footer-block-left {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.copyright {
    color: white;
    font-size: 14px;
    margin-top: 0;
}

.footer-block-right {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.author-container {
    text-align: right;
}

.author-name {
    color: white;
    font-size: 14px;
    margin-top: 0;
}

@keyframes pulse {
    0% {
        transform: rotate(45deg) translateY(0);
    }
    50% {
        transform: rotate(45deg) translateY(-3px);
    }
    100% {
        transform: rotate(45deg) translateY(0);
	}
}