.page-content {
		transition: filter 0.3s ease;
}
.c {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	justify-content: center;
	color: white;
	text-align: center;
	animation: blinking-glow 1.5s infinite;
	position: absolute;
	top: 25%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.title {
	font-weight: 700;
	font-size: 80px;
	color: white;
	text-align: center;
	animation: blinking-glow 1.5s infinite;
}
@keyframes blinking-glow {
	0%, 100% {
		text-shadow: 0 0 5px white, 0 0 10px white, 0 0 20px white, 0 0 30px white;
	}
	50% {
		text-shadow: 0 0 2px white, 0 0 4px white, 0 0 8px white, 0 0 15px white;
	}
}


.container {
    width: 100%;
    padding: 20px;
    background-color: #333;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.header {
    display: flex;
    align-items: center;
    gap: 10px;
}

.header h1 {
    font-weight: bold;
    font-size: 24px;
    color: white;
    margin: 0;
}

.vertical-line {
    width: 10px;
    height: 30px;
    background-color: white;
    border-radius: 5px;
}

.description {
    font-size: 16px;
    color: #ddd;
}

.content-section {
    font-size: 14px;
    color: #bbb;
    background-color: #444;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}


.top-container {
        background-color: #111;
        width: 100%;
        height: 180px;
        display: flex;
        justify-content: center;
        align-items: center;
        position: relative;
    }

.page-title {
	font-size: 36px;
	font-weight: bold;
	color: white;
	animation: blinking-glow-title 1.5s infinite;
}
@keyframes blinking-glow-title {
	0%, 100% {
		text-shadow: 0 0 3px white, 0 0 4px white, 0 0 8px white, 0 0 12px white;
	}
	50% {
		text-shadow: 0 0 1px white, 0 0 2px white, 0 0 4px white, 0 0 6px white;
	}
}


.toggle-container-3 {
    width: 100%;
    max-width: 800px;
    margin: 20px auto;
    background-color: #222;
    padding: 15px;
    border-radius: 8px;
    color: white;
}

.toggle-container-dll {
    max-width: 100%;
    margin-left: 0px;
	margin-top: 5px;
    margin-bottom: 5px;
    background-color: #222;
    padding: 15px;
    border-radius: 8px;
    color: white;
	scrollbar-width: thin;
    scrollbar-color: #333 #222222;
}

.toggle-button-3 {
    background-color: #333;
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    transition: background-color 0.3s;
}

.toggle-button-3:hover {
    background-color: #444;
}

.toggle-icon-3 {
    font-size: 18px;
    display: inline-block;
    margin-right: 10px;
    transition: transform 0.3s ease, content 0.3s ease;
}

.toggle-content-3 {
    display: none;
    margin-top: 15px;
    background-color: #444;
    padding: 10px;
    border-radius: 5px;
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.5s ease-out;
	overflow: auto;
}

.toggle-content-3.active {
    display: block;
    max-height: 500px;
}


.empty-block {
	width: 100%;
	height: 300px;
	background-color: transparent;
	margin: 20px 0;
}

.empty-block-2 {
	width: 100%;
	height: 150px;
	background-color: transparent;
	margin: 20px 0;
}
.empty-block-3 {
	width: 100%;
	height: 50px;
	background-color: transparent;
}


.navigation {
	display: flex;
	flex-direction: column;
	gap: 20px;
	margin: 20px;
	background: #050505;
	border-radius: 20px;
}

.nav-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 15px;
	border-radius: 8px;
	color: white;
}

.nav-item h3 {
	margin-bottom: 10px;
	font-size: 18px;
}
	
.nav-buttons {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
	justify-content: center;
}

.empty-nav-block {
	background-color: transparent;
	margin: 5px 0;
}


.icon-button .icon-image {
	width: 20px;
	height: 20px;
	margin-right: 8px;
}
	
.icon-button {
	background-color: transparent;
	color: white;
	border: 1px solid white;
	padding: 10px 20px;
	display: flex;
	align-items: center;
	border-radius: 5px;
	text-decoration: none;
	font-size: 16px;
	cursor: pointer;
	transition: 0.3s;
}
	
.icon-button:hover {
	background-color: #333333;
	box-shadow: 0 0 10px 2px white
}


.dll {
	display: flex;
	flex-direction: column;
	background: #050505;
	width: 100%;
    height: auto;
}

.dll-buttons {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
	margin-top: 5px;
	margin-bottom: 5px;
}

.dll-indent {
	height: 10px;
}


.double-line {
        border: none;
        height: 4px;
        background-color: transparent;
        box-shadow: 0 2px 0 red, 0 -2px 0 blue;
}

.white-line {
        border: none;
        height: 4px;
        background-color: #ffffff40;
		margin: 5px 0px;
}


.copy-item {
    cursor: pointer;
	font-family: Consolas;
}

.copy-info {
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%) translateY(20px);
	background: rgba(0, 0, 0, 0.7);
	color: white;
	padding: 10px 20px;
	font-size: 16px;
	border-radius: 8px;
	backdrop-filter: blur(8px);
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.4s ease, transform 0.4s ease;
	border: 1px solid white;
}

.show-copy-info {
	opacity: 1;
	transform: translate(-50%, -50%) translateY(0);
}

.hidden-copy-info {
	display: none;
}


.hiden-block {
    display: none;
}


.video-container {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}

.video-container video {
    width: 100%;
    height: auto;
    display: block;
}