:root {
	--panel-width: calc(100% / 7);
	--darkblue: #02020c;
	--white: #fff;
	--lightgray: #dedede;
}

ul {
	list-style: none;
}
body {
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
    text-align: center;
    background-color: #000000;
    overflow: hidden;
}

.perde {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: black;
    z-index: 9998;
    opacity: 1;
}
.hidden {
    opacity: 0;
    pointer-events: none;
}

/* THERE IS NO FRICKING WAYY */
.panels .panel {
	position: fixed;
	top: 0;
	left: 0;
	bottom: 0;
    z-index: 9999;
	width: calc(var(--panel-width) + 1px);
	clip-path: inset(100% 0 0 0);
	background: var(--lightgray);
	transition: all 1s cubic-bezier(0.25, 1, 0.25, 1);
}

.panels .panel:nth-child(2) {
	left: var(--panel-width);
}
.panels .panel:nth-child(3) {
	left: calc(var(--panel-width) * 2);
}
.panels .panel:nth-child(4) {
	left: calc(var(--panel-width) * 3);
}
.panels .panel:nth-child(5) {
	left: calc(var(--panel-width) * 4);
}
.panels .panel:nth-child(6) {
	left: calc(var(--panel-width) * 5);
}
.panels .panel:nth-child(7) {
	left: calc(var(--panel-width) * 6);
}
/* THERE IS NO FRICKING WAYY */


/* THERE IS NO FRICKING WAYY */
.loaded .panels .panel {
	clip-path: inset(0);
	transition-delay: calc(var(--index) * 0.06s);
}

.loaded.second-round .panels .panel {
	clip-path: inset(0 0 100% 0);
}

.loaded.third-round {
	overflow: auto;
}

.loaded.third-round .page-main > div > * {
	opacity: 1;
	transform: none;
}
/* THERE IS NO FRICKING WAYY */

.mdc-top-app-bar {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    backdrop-filter: blur(10px);
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.35);
    background: linear-gradient(
        to right, 
        rgba(21, 21, 21, 0.5),
        rgba(255, 178, 0, 0.5),
        rgba(235, 91, 0, 0.5),
        rgba(228, 0, 58, 0.5),
        rgba(182, 0, 113, 0.5),
        rgba(33, 33, 33, 0.5)
    );
    padding: 10px;
    border-bottom-left-radius: 50px;
    border-bottom-right-radius: 50px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.35),
    inset 0px -10px 15px rgba(33, 100, 255, 0.5);
}
.mdc-top-app-bar__row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mdc-top-app-bar__section {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    overflow: hidden;
}

.mdc-top-app-bar__title {
    margin: 0 auto;
}
@media (max-width: 840px) {
    body {
        .mdc-top-app-bar__title {
            margin: 0 auto;
            height: 150px;
        }
        
        .fockman {
            padding: 0 15px;
        }
    }
}
@media (max-width: 767px) {
    body {
        .mdc-top-app-bar__title {
            margin: 0 auto;
            margin-top: -30px;
            height: 150px;
        }
        
        .mdc-top-app-bar {
            height: 220px;
        }
        .content {
            margin-top: 220px;
        }
        .fockman {
            padding: 0 15px;
        }
        .mdc-typography--headline2{
            padding-left: 10vw;
        }
    }
}
@media (max-width: 450px) {
    body {
        .mdc-top-app-bar__title {
            margin: 0 auto;
            margin-top: -30px;
            height: 150px;
        }
        
        .mdc-top-app-bar {
            height: 220px;
        }
        .content {
            margin-top: 220px;
        }
        .fockman {
            padding: 0 15px;
            border-bottom-left-radius: 30px;
            border-bottom-right-radius: 30px;        
        }
        .mdc-typography--headline2{
            padding-left: 10vw;
            padding-top: 5vw;
            font-size: 58px;
        }
    }
}
h1 {
  text-align: left;
}

.content {
    margin-top: 160px;
    max-width: 600px;
    margin-right: auto;
}

.demo-card {
    padding: 16px;
    margin: 20px auto;
    max-width: 400px;
    background-color: #212121;
}
@keyframes movingGradient {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.fockman {
    padding: 0 20px;
    margin: auto;
    max-width: 450px;
    height: 60px;
    background-color: rgba(0, 0, 0, 0.6);
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.35), 
    inset 0px -10px 15px rgba(33, 100, 255, 0.5);
    position: relative;
    overflow: hidden;
}

.fockman::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(90deg, 
        #0057ff, #8a00ff, #ff008a, #ff5200, #ffd700, #00ff8a, #0057ff
    ); 
    background-size: 400% 400%;
    animation: movingGradient 6s infinite linear;
    filter: blur(15px);
    opacity: 0.7;
}
.omegle{
    background-color: rgba(33, 33, 33, 0.5);
    margin-top: 0 auto;
    margin-bottom: 0 auto;
    margin-left: 5px;
    margin-right: 5px;
    font-family: "Inter", sans-serif;
    --mdc-theme-primary: #018b88;
    color: #dedede !important;
}
.mdc-typography--headline2{
    color: #dedede !important;
    width: auto;
    padding-left: 15vw;
	padding-top: 3vw;
}
.mdc-typography--headline6{
    color: #dedede !important;
}
.mdc-typography--body2{
    color: #dedede !important;
}
.omegle .mdc-button__label {
    color: #dedede !important;
}
.card-content{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    height: 100%;
}