html, body, pre, code, kbd, samp, input, button, select, option, textarea {
    font-family: var(--font-theme-1);
    font-weight: var(--font-regular);
    font-style: normal;
}
p {
    line-height: 165%;
    margin: 0px 0 1vw 0;
}
p a {
    text-decoration: underline;
}
p a:hover {
    text-decoration: none;
}
strong {
    font-weight: var(--font-semibold);
}
a {
    text-decoration: none;
    outline: none;
    cursor: pointer;
    color: var(--color-whitw);
    transition: var(--transition-all);
}
button, a, input[type="button"], .btn {
    outline: none;
    cursor: pointer;
    transition: all 0.2s ease-in;
    -moz-transition: all 0.2s ease-in;
    -webkit-transition: all 0.2s ease-in;
    -o-transition: all 0.2s ease-in;
    -ms-transition: all 0.2s ease-in;
}
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-theme-1);
    font-size: 100%;
    line-height: 120%;
    font-weight: var(--font-regular);
    color: var(--color-white);
}
input:-webkit-autofill, input:-webkit-autofill:hover, input:-webkit-autofill:focus, textarea:-webkit-autofill, textarea:-webkit-autofill:hover, textarea:-webkit-autofill:focus, select:-webkit-autofill, select:-webkit-autofill:hover, select:-webkit-autofill:focus {
    border: 2px solid #fff;
    -webkit-text-fill-color: #000;
    -webkit-box-shadow: 0 0 0px 0 #000 inset;
    transition: background-color 5000s ease-in-out 0s;
    color: #000;
    background-color: transparent;
    font-size: 100%;
}
input::placeholder {
    color: #000;
    opacity: 0.6;
}
/*Theme CSS*/
html, body {
    background-color: #070109;
    font-size: 17px;
    color: var(--color-white);
    -webkit-overflow-scrolling: touch;
    overflow-y: auto;
    touch-action: pan-y;
    overscroll-behavior-y: auto;
    position: fixed;
    overflow-x: hidden;
    overflow: hidden;
    width: 100vw;
    min-height: 100vh;
    min-height: 100dvh;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    transform: translateZ(0);
}
.main-wrapper {
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding-top: 100px;
}
.section-wrapper {
    display: flex;
    justify-content: center;
}
.overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.05);
    -webkit-backdrop-filter: blur(50px);
    backdrop-filter: blur(50px);
    pointer-events: none;
    z-index: 2;
}
.ad-container {
    width: 300px;
    height: 250px;
    background-color: azure;
}
#trailCanvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}
.app-wrapper {
    width: 100%;
    height: 100vh;
    height: 100dvh;
    position: absolute;
    top: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0px 8%;
}
.about-text {
    position: relative;
    z-index: 2;
    width: 28%;
    text-align: center;
    transform: translate3d(8vw, 0, 0);
}
.about-text h1 {
    font-size: 350%;
    line-height: 140%;
    text-align: center;
    margin-bottom: 2rem;
}
.about-text h1 span {
    display: block;
    font-weight: 800;
    font-size: 180%;
}
.about-text p {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}
.video-container {
    width: 22%;
    padding: 0px 0px;
    z-index: 2;
    /*
    opacity: 0;
    pointer-events: none;
*/
}
.all-videos {
    position: relative;
    aspect-ratio: 9/16;
    width: 100%;
}
.single-video {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
    top: 0;
    left: 0;
}
.single-video video {
    width: 100%;
    height: auto;
    background-color: rgba(0,0,0,0);
    border-radius: 0;
    overflow: hidden; 
}
.single-video h2 {
    display: block;
    text-align: center;
    line-height: 130%;
    font-size: 150%;
    font-weight: 500;
    padding-bottom: 10px;
    position: absolute;
    top: -3vw;
    left: 0;
    width: 100%;
}
.category-container {
    width: 30%;
    padding: 20px 0px;
    z-index: 2;
    transform: translate3d(-8vw, 0, 0);
}
.category-circle {
    padding-top: 8%;
}
.category-circle #CircleSvg {
    position: relative;
    transform: scale(1);
    transform-origin: center;
    width: 100%;
    height: auto;
}
.category-nav {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}
.category-nav li {
    text-align: center;
    display: block;
    position: absolute;
    cursor: pointer;
}
.category-nav li i {
    width: 5vw;
    padding-bottom: 2px;
}
.category-nav li i img {
    width: 100%;
    border-radius: 100%;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0);
}
.category-nav li span {
    font-weight: 600;
    font-size: 90%;
    display: none;
}

/**Conditions**/
.video-container {
    opacity: 0;
    pointer-events: none;
    transition: all 0.2s ease-in;
}
.category-nav li * {
    transition: all 0.2s ease-in;
}
.about-text, .category-container {
    transition: all 0.2s ease-in;
}
.category-nav li.is-active {
    opacity: 0.6;
    pointer-events: none;
} 
.category-nav li.is-active i img {
    width: 100%;
    border-radius: 100%;
    overflow: hidden;
    filter: grayscale(1);
}
.is-video .about-text {
    transform: translate3d(0, 0, 0);
    opacity: 0.6;
}
.is-video .about-text {
    transform: translate3d(0, 0, 0);
}
.is-video .category-container {
    transform: translate3d(0, 0, 0);
}
.is-video .video-container {
    opacity: 1;
    pointer-events: all;
}
.close-video {
    position: absolute;
    z-index: 3;
    top: 10px;
    left: 10px;
    cursor: pointer;
    display: flex;
    width: 40px;
    height: 40px;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background-color: #fff;
    border-radius: 100%;
    overflow: hidden;
    padding: 5px;
    opacity: 1;
    transition: opacity 0.2s ease-in;
}
.close-video svg {
    width: 100%;
    height: auto;
}
.close-video:hover {
    opacity: 0.8;
}
@keyframes bobAndScale {
    0%, 100% {
        transform: translateY(0) translateX(0) scale(1);
    }
    33% {
        transform: translateY(-12px) translateX(4px) scale(1.08);
    }
    66% {
        transform: translateY(8px) translateX(-4px) scale(0.95);
    }
}
.category-nav li {
    animation: bobAndScale 6s ease-in-out infinite;
}


/*Business*/
.category-nav li:nth-child(1) {
    top: 12%;
    left: 35%;
    width: 35%;
    animation-delay: 0s;
}
/*Entertainment*/
.category-nav li:nth-child(2) {
    top: 35%;
    left: 8%;
    width: 30%;
    animation-delay: -1.5s;
}
/*Politics*/
.category-nav li:nth-child(3) {
    top: 36%;
    right: 13%;
    width: 30%;
    animation-delay: -3s;
}
/*Sports*/
.category-nav li:nth-child(4) {
    bottom: 19%;
    left: 29%;
    width: 35%;
    animation-delay: -4.5s;
}

/*Auto*/
.category-nav li:nth-child(5) {
    bottom: 42%;
    left: 33%;
    width: 29%;
    animation-delay: -2.5s;
}

.help-text{  
    position: absolute;
    bottom: 10%;
    right: 5%;
    font-size: 90%;
    font-weight: 600;
    pointer-events: none;
    line-height: 120%;
    opacity: 1;
    width: 100%;
    text-align: center;
    z-index: 10;
}

