@font-face {
    font-family: Sukhumvit;
    src: url('../fonts/sukhumvit.ttf');
}
body {
    font-family: Sukhumvit, serif;
    background: url(../images/bg.jpg);
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
    background-color: #000;
}

:root {
    --header-height: 236px;
    --offcanvas-menu-active-color: #fff;
    --offcanvas-menu-active-bg: #2a5fd4;
    --footer-height: 320px
}

/*
 * ==============================
 * Top Navbar
 * ==============================
 */
header {
    width: 100%;
    min-width: 1210px;
    height: var(--header-height);
    background: #1a1d20;
}

.header-top-section {
    width: 100%;
    height: 178px;
    background: url(../images/header-bg.jpg);
    display: flex;
    justify-content: center;
    align-items: center;
}
.header-bottom-section {
    width: 100%;
    height: 58px;
    background: #f2eb16;
    display: flex;
    justify-content: center;
}
.header-nav {
    width: 1210px;
    height: 100%;
}
.header-nav ul {
    width: 100%;
    height: 100%;
    list-style-type: none;
    display: flex;
    justify-content: center;
}
.header-nav ul li {
    display: inline;
}
.header-nav ul li a {
    display: inline-block;
    height: 100%;;
    padding: 20px;
    text-decoration: none;
    color: #000;
}
.header-nav ul li a:hover {
    background: #222;
    cursor: pointer;
    color: #eee;
}
/*
 * ==============================
 * Body
 * ==============================
 */
main {
    width: 100%;
    min-height: calc((100vh - var(--header-height)) - var(--footer-height));
    display: flex;
    justify-content: start;
    padding: 20px 0;
    flex-wrap: wrap;
    align-items: center;
    flex-direction: column;
}
main>h1 {
    display: block;
    text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000;
}
.content-section-container {
    width: 1210px;
    height: auto;
    display: flex;
    justify-content: space-between;
}
.content-side {
    width: 230px;
    height: auto;
    min-height: 10px;
    border-radius: 8px;
}
.content-middle {
    width: 730px;
    margin: 0 10px;
    min-height: 10px;
}
.side-card {
    background: rgba(0, 0, 0, .6);
    width: 230px;
    min-height: 100px;
    border-radius: 4px;
    display: flex;
    justify-content: center;
    align-items: start;
    margin-bottom: 10px;
}
.side-card-inner {
    width: 220px;
    height: auto;
    background: #000;
    margin: 5px;
}
.side-card-inner-header {
    width: 100%;
    height: 40px;
    border-radius: 8px 8px 0 0;
    background: #f2eb16;
    color: #000;
    padding: 9px;
    text-align: center;
}
.side-card-link-ul {
    list-style-type: none;
    width: 200px;
    height: auto;
    margin-left: 10px;
    margin-bottom: 5px;
    padding: 0;
}
.side-card-link-ul li {
    width: 100%;
    height: 48px;
    border: dashed 1px #222103;
    background: #312f04;
    border-radius: 8px;
}
.side-card-link-ul a {
    display: inline-block;
    width: 100%;
    height: 100%;
    color: #f0f0ed;
    text-decoration: none;
    text-align: center;
    line-height: 3em;
    font-size: 16px;
}
.side-card-link-ul a:hover {
    background: #1d1c02;
}
.side-card-link-ul li.is-active {
    background: #f2eb16;
    border-color: #f2eb16;
}
.side-card-link-ul li.is-active a {
    color: #111;
    font-weight: 800;
}
.side-card-link-ul li.is-active a:hover {
    background: #e6df10;
}

/* Mini App card */
.side-card-mini-app .side-card-inner {
    overflow: hidden;
}
.side-card-mini-app .side-card-inner-header {
    background: linear-gradient(90deg, #f2eb16 0%, #d4c80f 100%);
    font-weight: 800;
    letter-spacing: .02em;
}
.mini-app-list {
    list-style: none;
    margin: 8px 10px 12px;
    padding: 0;
    width: auto;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.mini-app-item a {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    min-height: 52px;
    padding: 8px 10px;
    box-sizing: border-box;
    text-decoration: none;
    color: #f5f5f5;
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 10px;
    transition: border-color .15s ease, background .15s ease, transform .15s ease;
}
.mini-app-item a:hover {
    background: #242424;
    border-color: #f2eb16;
}
.mini-app-badge {
    flex: 0 0 36px;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 900;
    color: #111;
    background: #f2eb16;
    letter-spacing: -.02em;
    overflow: hidden;
}
.mini-app-badge-img {
    padding: 0;
    background: transparent;
}
.mini-app-badge-img img {
    width: 36px;
    height: 36px;
    object-fit: cover;
    display: block;
    border-radius: 10px;
}
.mini-app-item.mini-app-flickreels .mini-app-badge {
    background: #ff4d6d;
    color: #fff;
}
.mini-app-item:nth-child(2) .mini-app-badge:not(.mini-app-badge-img) {
    background: #ff4d6d;
    color: #fff;
}
.mini-app-meta {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}
.mini-app-name {
    font-size: 15px;
    font-weight: 800;
    line-height: 1.2;
    color: #fff;
}
.mini-app-sub {
    font-size: 11px;
    color: #9a9a9a;
    line-height: 1.2;
}
.mini-app-item.is-active a {
    background: #2a2808;
    border-color: #f2eb16;
    box-shadow: inset 0 0 0 1px rgba(242, 235, 22, .25);
}
.mini-app-item.is-active .mini-app-sub {
    color: #f2eb16;
    font-weight: 700;
}
.side-card-year-ul {
    display: flex;
    flex-wrap: wrap;
    list-style-type: none;
    width: 200px;
    height: auto;
    margin-left: 10px;
    margin-bottom: 5px;
    padding: 0;
    justify-content: space-between;
}
.side-card-year-ul li {
    display: block;
    margin-top: 10px;

}
.side-card-year-ul a {
    display: inline-block;
    width: 60px;
    height: 40px;
    color: #f0f0ed;
    text-decoration: none;
    text-align: center;
    line-height: 3em;
    font-size: 14px;
    background: none;
    border-radius: 8px;
}
.side-card-year-ul a:hover {
    background: #1a1d20;
}

/*
 * ==============================
 * Footer area
 * ==============================
 */
footer {
    width: 100%;
    height: var(--footer-height);
    background: rgba(0, 0, 0, .4);
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}
.footer-top-section {
    width: 1200px;
    height: 230px;
    text-align: center;
    padding-top: 50px;
}
.footer-top-section strong {
    font-size: 1.4rem;
}
.footer-bottom-section {
    width: 100%;
    height: 90px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
}

*::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}
*::-webkit-scrollbar-track {
    background: #333333;
}
*::-webkit-scrollbar-thumb {
    background-color: #8b8b8b;
    border-radius: 4px;
    border: 0;
}