:root {
    --primary: #FF6600;
    --bg-dark: #242d32;
    --text-color: #f1f1f1;
    --bg-footer: #111111;
}
[data-theme="light"] {
    --bg-dark: #dedede;
    --text-color: #161b1d;
    --bg-footer: #cccccc;
}
body {
    background-color: var(--bg-dark);
    color: var(--text-color);
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: normal;
    min-height: 100vh;
    font-size: 14px;
}
.section-main {
    background: var(--bg-dark);
    padding: 4rem 1.5rem;
    border-radius: 2rem 2rem 0 0;
    box-shadow: 0 -8px 10px #00000036;
    position: relative;
}
.section-hero {
    background: var(--primary);
    padding-bottom: 30px;
}
.section-main-outer {
    position: relative;
    top: -30px;
}
.section-mobileapp {
    background: #0000002b;
}
.hero-slogan {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 1rem 0;
}
.hero-slogan h1 {
    text-transform: uppercase;
    font-size: 3rem;
    font-weight: 200;
}
.hero-slogan h2 {
    text-transform: uppercase;
    font-size: 2.6rem;
    font-weight: 200;
}
.header-container {
    display: flex;
    justify-content: space-between;
    background: #0000000a;
    border-bottom: 1px solid #56565640;
}
.topmenu-icon {
    padding: 24px;
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    line-height: 1;
}
.topmenu-icon a {
    color: var(--text-color);
}
h2 {
    text-transform: uppercase;
    font-size: 1.2rem;
    letter-spacing: 2px;
}
a {
    color: var(--primary);
    text-decoration: none
}
a:hover {
    text-decoration: none;
    color: var(--primary);
}
p,
ol li {
    font-size: .9rem;
    letter-spacing: 1px;
}
.btn-primary {
    background: var(--primary);
    color: var(--text-color);
}
.filter-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 24px;
}
.filter-container .btn-filter,
.filter-container .btn-watch {
    color: var(--text-color);
    border-radius: 0;
    padding: 8px 0;
    font-size: 12px;
    display: flex;
    align-items: center;
    line-height: 1;
    gap: 8px;
    border-width: 0;
}
.filter-container .btn.active,
.filter-container .btn:hover {
    color: var(--primary);
}
.brand img {
    height: 40px;
    margin: 20px;
}
[data-theme="light"] .header-container .brand,
[data-theme="dark"] .btn-close {
    filter: invert(1);
}
.search-outer {
    margin: 16px auto;
    max-width: 50%;
    position: relative;
}
.search-outer .form-control {
    background: #00000029;
    color: var(--text-color);
    padding: .8rem 1rem .8rem 3rem;
    font-size: 16px;
    height: 54px;
    border-radius: 30px;
    border: 1px solid var(--text-color);
}
.search-icon {
    position: absolute;
    left: 20px;
    top: 20px;
}
.sticky-bg {
    backdrop-filter: blur(6px);
}
.watchimg {
    transition: .3s ease all;
    background-image: url(../images/Watch-7.png);
    width: 100%;
    background-size: 100%;
    aspect-ratio: 1/1;
    position: relative;
}
.watchimg .spinner-border {
    position: absolute;
    left: calc(50% - 16px);
    top: calc(50% - 16px);
    color: var(--primary) !important;
}
.category {
    padding: 2rem;
}
.category .watchimg:hover::after {
    font-family: 'icomoon' !important;
    content: "\e921";
    position: absolute;
    left: calc(50% - 16px);
    font-size: 2rem;
    top: calc(50% - 16px);
    line-height: 1;
    pointer-events: none;
    color: var(--primary);
}
.watchimg img {
    width: 100%;
    padding: 14%;
    transition: .3s all ease;
    cursor: pointer;
}
.category .watchimg:hover img {
    opacity: .3;
    transition: .3s all ease;
}
.watchface-text {
    text-align: center;
    display: flex;
    flex-direction: column;
    margin: 20px 0;
    gap: 10px;
}
.watchface-text h3 {
    font-size: .9rem;
    height: 30px;
    letter-spacing: 1px;
}
.watchface-text .highlights {
    font-size: .5rem;
    color: #ffffff73;
    align-items: center;
    display: flex;
    justify-content: center;
    gap: 4px;
    position: relative;
    flex-wrap: wrap;
}
.watchface-text .highlights .categories {
    color: var(--text-color);
    background: #00000045;
    padding: 2px 6px;
    border-radius: 4px;
    opacity: 0.5;
}
.watchface-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}
.watchface-btn .btn {
    font-size: 10px;
    padding: 4px 8px;
    background: var(--primary);
    color: var(--bg-dark);
    border-color: var(--primary);
}
.watchface-btn .btn-youtube {
    font-size: 2rem;
    color: var(--primary);
}
.offcanvas {
    background-color: var(--bg-dark);
}
.bg-transparent {
    background: transparent;
}
.socialmenu {
    font-size: 2rem;
}
.socialmenu li a {
    font-size: 2rem;
    color: var(--text-color);
}
.nav-link {
    color: var(--primary);
}
.footer {
    position: relative;
    padding: 6rem 0;
    background: var(--bg-footer);
}
ul.socialmenu li a {
    color: var(--text-color);
    opacity: 0.4;
}
.footer p {
    font-size: 10px;
    opacity: 0.5;
}
.footer:before {
    background: linear-gradient(-45deg, var(--bg-footer) 16px, transparent 0), linear-gradient(45deg, var(--bg-footer) 16px, transparent 0);
    background-position: left-bottom;
    background-repeat: repeat-x;
    background-size: 32px 32px;
    content: " ";
    display: block;
    position: absolute;
    top: -32px;
    left: 0px;
    width: 100%;
    height: 32px;
}
.splashscreen {
    position: fixed;
    background: var(--primary);
    height: 100%;
    width: 100%;
    animation: fade 0.8s ease-in-out;
    animation-delay: .3s;
    animation-fill-mode: forwards;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999;
}
.splashscreen img {
    height: 80px;
}
.btn-floating {
    position: fixed;
    z-index: 1022;
    bottom: 15px;
    right: 15px;
    border-radius: 50%;
    font-size: 1.2rem;
    height: 50px;
    width: 50px;
    border: 0;
    background-color: var(--primary);
    box-shadow: 0 0 20px #00000099;
    color: var(--text-color);
    display: flex;
    align-items: center;
    justify-content: center;
}
.btn-floating:hover {
    color: var(--bg-dark);
}
.watchimgsrc {
    display: none;
}
.confetti {
    position: absolute;
    width: 16px;
    height: 16px;
    border-radius: 2px;
    animation: explode 1s ease-out forwards;
}
@keyframes explode {
    0% {
        transform: translate(0, 0) scale(1);
        opacity: 1;
    }
    100% {
        transform: translate(var(--dx), var(--dy)) rotate(720deg) scale(0.8);
        opacity: 0;
    }
}
.zoom-bounce {
    overflow: hidden;
}
/* Modal dialog starts hidden and scaled down */
.zoom-bounce .modal-dialog {
    animation: zoomBounceIn 0.5s forwards ease-out;
}
/* When modal is shown, animate dialog */
.zoom-bounce.show .modal-dialog {
    animation: zoomBounceIn 0.5s forwards ease-out;
}
::-moz-selection {
    color: #fff;
    background: var(--primary)
}
::selection {
    color: #fff;
    background: var(--primary)
}
.tagwords {
    display: none;
}
#category-tabs .is-disabled {
    pointer-events: none;
    opacity: 0.5;
}
.modal-backdrop.show {
    opacity: inherit;
    backdrop-filter: blur(10px);
    background-color: #0000001c;
}
/* Keyframe animation: 0.5 -> 1.1 -> 1 */
@keyframes zoomBounceIn {
    0% {
        transform: scale(0.5);
        opacity: 0;
    }
    60% {
        transform: scale(1.1);
        opacity: 1;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}
@media only screen and (max-width: 992px) {
    .hero-slogan {
        justify-content: center;
        text-align: center;
    }
    .hero-slogan h1 {
        font-size: 1.6rem;
    }
}
@media only screen and (max-width: 768px) {
    .hero-slogan {
        justify-content: center;
        text-align: center;
    }
    .hero-slogan h1,
    .hero-slogan h2 {
        font-size: 1.6rem;
    }
    .filter-container {
        gap: 12px;
    }
    .watchface-text h3 {
        font-size: 0.7rem;
    }
    .search-outer {
        max-width: 100%;
    }
}
@keyframes fade {
    0% {
        opacity: 1;
        visibility: visible;
        transform: scale(1);
    }
    80% {
        opacity: 1;
        visibility: visible;
        transform: scale(1.2);
    }
    100% {
        opacity: 0;
        visibility: hidden;
        transform: scale(1.5);
    }
}