html,
body {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100vw;
    min-height: 100vh;
    font-family: 'Noto Sans TC', sans-serif;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

*, ::after, ::before {
    box-sizing: border-box;
}

main {
    flex: 1;
    width: 100%;
}
main > .divider {
    width: 100%;
    height: 1px;
    background-color: #D0D5DD;
}

a {
    text-decoration: none;
    color: inherit;
}

header {
    box-sizing: border-box;
    position: relative;
    z-index: 99999;
    display: flex;
    justify-content: space-between;
    background-color: #101323;
    width: 100%;
    padding: 16px 120px 16px 40px;
    color: #FCFCFD;
    border-bottom: 1px solid rgba(102, 112, 133, .2);
}
#page-home header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    background: linear-gradient(180deg, #101323 0%, rgba(16, 19, 35, 0.17) 100%);
    border-bottom: none;
}
h1.title {
    margin: 0;
    padding: 0;
    font-family: Baloo Chettan;
    font-size: 40px;
    font-weight: 700;
    line-height: 58px;
    letter-spacing: 0;
    text-align: left;
}
nav ul {
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
    list-style: none;
}
nav a {
    display: block;
    color: inherit;
    cursor: pointer;
}
nav a:hover,
nav a:active {
    color: inherit;
    text-decoration: none;
}

header nav a {
    padding: 16px 24px;
}
@media (max-width: 992px)  {
    h1.title {
        font-size: 32px;
    }
    header .main-menu {
        display: none;
    }
}

.container {
    margin: 0 auto;
    width: 100%;
}
@media (max-width: 576px) {
    .container {
        padding: 0 16px;
    }
}
@media (min-width: 576px)  {
    .container {
        width: 540px;
    }
}
@media (min-width: 768px)  {
    .container {
        width: 720px;
    }
}
@media (min-width: 992px)  {
    .container {
        width: 960px;
    }
}
@media (min-width: 1200px)  {
    .container {
        width: 1140px;
    }
}
@media (min-width: 1400px)  {
    .container {
        width: 1280px;
    }
}

footer {
    padding: 24px 80px 24px 80px;
    background: linear-gradient(45deg, #101828 0%, #475467 100%);
    color: #FCFCFD;
}
footer .top {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
footer .divider {
    width: 100%;
    height: 1px;
    margin: 24px 0;
    background-color: #FFFFFF;
}
@media (max-width: 992px) {
    footer {
        padding: 24px;
    }
}

.nav-icons {
    font-size: 24px;
}
.nav-icons ul {
    justify-content: center;
    align-items: center;
    height: 100%;
}
.nav-icons a {
    padding: 8px;
}


.nav-legal-links {
    font-size: 14px;
}
.nav-legal-links ul {
    width: 100%;
    justify-content: center;
}
.nav-legal-links a {
    padding: 8px 12px;
    text-decoration: underline;
    text-align: center;
}
.mobile-menu-switch {
    display: none;
    position: absolute;
    top: 50%;
    right: 32px;
    transform: translateY(-50%);
    padding: 8px;
    font-size: 20px;
    cursor: pointer;
}
.mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #101323;
}
.mobile-menu nav {
    height: 0;
    overflow: hidden;
}
.mobile-menu nav,
.mobile-menu nav ul,
.mobile-menu nav li,
.mobile-menu nav a {
    width: 100%;
    text-align: center;
}
.mobile-menu nav ul {
    width: 100%;
    flex-direction: column;
}
@media (max-width: 992px) {
    .mobile-menu-switch,
    .mobile-menu {
        display: block;
    }
    .mobile-menu.show nav {
        height: 100%;
    }
}


.date {
    white-space: nowrap;
}

.banner-layout {
    margin: 0;
    color: #FFFFFF;
}
.banner-layout .banner {
    position: relative;
    width: 100%;
    height: 100vh;
}
.banner-layout .banner-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}
.banner-layout .banner-container {
    display: flex;
    padding: 48px;
    width: 100%;
    max-width: 1200px;
}
.banner-layout.slick-dotted.slick-slider {
    margin-bottom: 0;
}
.banner-layout .slick-dots {
    bottom: 24px;
}
.banner-layout .slick-dots li button:before {
    font-size: 12px;
}
.banner .left-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    max-width: 50%;
}
.banner .banner-img {
    z-index: -1;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.banner .title {
    text-align: center;
    font-size: 64px;
    background: rgba(16, 19, 35, 0.77);
}
.banner .sub-title {
    font-size: 16px;
    margin-top: 24px;
    text-align: center;
    padding: 24px;
}
.banner .banner-link {
    display: inline-block;
    background-color: #1957A5;
    border-radius: 2px;
    font-size: 16px;
    margin-top: 32px;
    padding: 12px 32px;
}
@media (max-width: 992px)  {
    .banner-layout .banner {
        height: 320px;
    }
    .banner .left-content {
        max-width: 100%;
    }
    .banner .title {
        max-width: 320px;
        font-size: 32px;
    }
    .banner .sub-title {
        display: none;
    }
}

.home-block {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin: 24px 0 48px;
}
.home-block .top {
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin: 24px 0 16px;
}
.home-block .label {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 24px;
    color: #293056;
    text-decoration: none;
}

#page-home .tournament-list-action {
    display: flex;
    gap: 8px;
}
#page-home .tournament-list-action button {
    width: 40px;
    height: 40px;
    padding: 8px;
    border-radius: 40px;
    background-color: #EAECF5;
    font-size: 20px;
    border: none;
    cursor: pointer;
}

#page-home .tournament-list {
    display: flex;
    gap: 16px;
}
#page-home .tournament-list .slick-track {
    margin: 0;
}
#page-home .tournament-wrapper {
    padding: 8px;
}
#page-home .tournament {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    min-height: 160px;
    padding: 16px;
    border-radius: 4px;
    background-color: #101323;
    text-decoration: none;
}
#page-home .tournament .start-date {
    font-size: 20px;
    color: #AFB5D9;
    white-space: nowrap;
}
#page-home .tournament .title {
    font-size: 16px;
    color: #FFFFFF;
    text-decoration: underline;
    text-align: center;
}
#page-home .tournament .location {
    font-size: 14px;
    color: #EAECF5;
}

.news-list {
    display: flex;
    flex-wrap: wrap;
}
.news-wrapper {
    width: 100%;
    margin-bottom: 16px;
    padding: 8px;
    box-sizing: border-box;
}
@media (min-width: 576px)  {
    .news-wrapper {
        width: 50%;
    }
}
@media (min-width: 992px)  {
    .news-wrapper {
        width: 33.3333%;
    }
}
.news {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
    text-decoration: none;
}
.news .cover-container {
    position: relative;
    width: 100%;
    height: 200px;
    border-radius: 4px;
    object-fit: cover;
    object-position: center;
    overflow: hidden;
}
.news .cover-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(93.5% 93.5% at 50% 50%, rgba(217, 217, 217, 0) 36.46%, rgba(16, 19, 35, 0.77) 100%);
}
.news .cover-container .cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.news .category {
    font-size: 16px;
    color: #667085;
}
.news .name {
    font-size: 20px;
    color: #1D2939;
}

#page-tournament-list {
    background-color: #101323;
}
#page-tournament-list .label-year-month {
    position: relative;
    display: flex;
    align-items: center;
    gap: 16px;
    font-family: 'Inter';
    font-size: 32px;
    font-weight: 700;
    color: #FFFFFF;
}
#page-tournament-list .label-year-month::after {
    content: '';
    flex: 1;
    height: 1px;
    background-color: #667085;
}
#page-tournament-list .tournament-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
    padding: 24px 0;
}
#page-tournament-list .tournament {
    display: flex;
    align-items: center;
    gap: 48px;
    padding: 32px;
    border-radius: 12px;
    background-color: #EAECF5;
    text-decoration: none;
}
#page-tournament-list .tournament .index {
    font-family: 'inter';
    font-size: 40px;
    font-weight: 900;
    color: #000000;
}
#page-tournament-list .tournament .info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}
#page-tournament-list .tournament .info .label {
    font-size: 18px;
    color: #667085;
}
#page-tournament-list .tournament .start-date {
    font-family: 'Inter';
    font-size: 28px;
    font-weight: 700;
    color: #53389E;
    white-space: nowrap;
}
#page-tournament-list .tournament .location {
    width: 120px;
    padding: 8px 12px;
    font-size: 18px;
    color: #1D2939;
    border: 2px solid #717BBC;
    border-radius: 8px;
    background-color: #D5D9EB;
    text-align: center;
}
#page-tournament-list .tournament .title {
    font-size: 20px;
    color: #101828;
}
@media (max-width: 992px) {
    #page-tournament-list .label-year-month {
        font-size: 24px;
    }
    #page-tournament-list .tournament .info .label,
    #page-tournament-list .tournament .location,
    #page-tournament-list .tournament .title {
        font-size: 16px;
    }
    #page-tournament-list .tournament .start-date {
        font-size: 20px;
    }
}
@media (max-width: 768px) {
    #page-tournament-list .tournament-list {
        gap: 16px;
    }
    #page-tournament-list .tournament {
        flex-direction: column;
        gap: 8px;
        padding: 16px;
    }
    #page-tournament-list .tournament .index {
        font-size: 32px;
    }
    #page-tournament-list .tournament .title {
        text-align: center;
    }
}

.page-label {
    display: flex;
    gap: 12px;
    align-items: center;
    margin: 24px 0 0;
    font-size: 24px;
    color: #D0D5DD;
}
@media (max-width: 992px) {
    .page-label {
        font-size: 20px;
    }
}

#page-session-list {
    background-color: #101323;
}
#page-session-list .session-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
    padding: 24px 0;
}
#page-session-list .session {
    box-sizing: border-box;
    display: flex;
    align-items: center;
    gap: 48px;
    min-height: 180px;
    padding: 16px 32px;
    border-radius: 12px;
    background-color: #EAECF5;
    text-decoration: none;
}
#page-session-list .block {
    display: flex;
    align-items: center;
    gap: 48px;
}
#page-session-list .session .no {
    font-family: 'inter';
    font-size: 40px;
    font-weight: 900;
    color: #000000;
}
#page-session-list .session .info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}
#page-session-list .session .info .label {
    font-size: 18px;
    color: #667085;
}
#page-session-list .session .start-date {
    font-family: 'Inter';
    font-size: 20px;
    font-weight: 700;
    color: #53389E;
    white-space: nowrap;
}
#page-session-list .session .start-end-time {
    display: flex;
    align-items: center;
    gap: 8px;
}
#page-session-list .session .start-end-time .time {
    font-family: 'Inter';
    font-size: 20px;
    color: #1D2939;
}
#page-session-list .session .score {
    font-family: 'Inter';
    font-size: 48px;
    font-weight: 900;
    color: #1D2939;
    text-align: center;
}
#page-session-list .session .group-name {
    font-size: 20px;
    font-weight: 500;
    color: #293056;
}
#page-session-list .session .team {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    min-width: 80px;
    font-size: 16px;
    color: #1D2939;
}
#page-session-list .session .team .name {
    color: #3E4784;
    text-align: center;
    text-decoration: underline;
    white-space: initial;
    word-break: break-all;
}
#page-session-list .session .team .logo {
    width: 80px;
    height: 80px;
    object-fit: contain;
    object-position: center;
}
@media (max-width: 992px) {
    #page-session-list .session {
        flex-direction: column;
        gap: 8px;
    }
    #page-session-list .block {
        justify-content: space-between;
        gap: 8px;
        width: 100%;
    }
    #page-session-list .session .team,
    #page-session-list .session .score {
        flex: 1;
    }
}

.breadcrumbs {
    display: flex;
    margin: 24px 0 0;
    padding: 0;
    list-style: none;
    font-size: 20px;
    font-weight: 500;
    color: #98A2B3;
}
.breadcrumbs li {
    position: relative;
    display: flex;
    align-items: center;
}
.breadcrumbs li:not(:last-child)::after {
    font-family: "Font Awesome 6 Pro";
    content: '\f054';
    font-weight: 400;
    color: #FFFFFF;
    font-size: 16px;
    margin: 0 12px;
}
.breadcrumbs li:last-child {
    color: #FFFFFF;
}
.breadcrumbs.light,
.breadcrumbs.light li:not(:last-child)::after,
.breadcrumbs.light li:last-child {
    color: #000000;
}
@media (max-width: 992px) {
    .breadcrumbs {
        font-size: 14px;
    }
}

.page-header {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 150px;
    font-size: 32px;
    font-weight: 500;
    color: #FFFFFF;
    background-color: rgba(29, 41, 57, 1);
    background-blend-mode: overlay;
    background-image: linear-gradient(180deg, rgba(16, 24, 40, 0) 0%, #101828 100%), url('../image/bg-header.png');
}
@media (max-width: 992px) {
    .page-header {
        height: 120px;
        font-size: 24px;
    }
}

#page-team-list {

}
#page-team-list .team-list {
    display: flex;
    flex-wrap: wrap;
    margin: 40px 0;
}
#page-team-list .team-wrapper {
    box-sizing: border-box;
    display: flex;
    width: 20%;
    min-height: 300px;
    padding: 12px;
}
#page-team-list .team {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 8px;
    width: 100%;
    padding: 24px;
    overflow: hidden;
    border: 2px solid rgba(222, 189, 97, 1);
    border-radius: 8px;
    background: linear-gradient(0deg, rgba(29, 41, 57, 1) 0%, rgba(71, 84, 103, 1) 100%);
    font-weight: 500;
}
#page-team-list .team .logo {
    position: relative;
    width: 100%;
    height: 0;
    margin-bottom: 16px;
    padding-bottom: 100%;
}
#page-team-list .team .logo img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}
#page-team-list .team .name {
    font-size: 18px;
    color: #FFFFFF;
    text-align: center;
}
#page-team-list .team .date {
    font-size: 14px;
    color: #98A2B3;
}
#page-team-list .team .location {
    font-size: 14px;
    color: #D0D5DD;
}
@media (max-width: 992px) {
    #page-team-list .team .date {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }
    #page-team-list .team-wrapper {
        width: 25%;
    }
}
@media (max-width: 768px) {
    #page-team-list .team-list {
        margin: 16px 0;
    }
    #page-team-list .team-wrapper {
        width: 33.33333%;
    }
}
@media (max-width: 768px) {
    #page-team-list .team-list {
        margin: 16px 0;
    }
    #page-team-list .team-wrapper {
        width: 33.33333%;
    }
}
@media (max-width: 576px) {
    #page-team-list .team-wrapper {
        width: 50%;
        padding: 8px;
    }
}

#page-team-detail {
    background: linear-gradient(257.63deg, #1D2939 29.4%, #475467 58.92%);
    color: #FFFFFF;
}
#page-team-detail .top {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    margin: 32px 0 32px;
}
#page-team-detail .team-info {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
}
#page-team-detail .team-info .logo {
    width: 120px;
    height: 120px;
    object-fit: contain;
    object-position: center;
}
#page-team-detail .team-info .name {
    margin: 0;
    font-size: 48px;
    font-weight: 700;
    line-height: 70px;
    letter-spacing: 1px;
    text-align: left;
}
#page-team-detail .team-info .date,
#page-team-detail .team-info .location {
    font-size: 20px;
    font-weight: 500;
    color: #98A2B3;
}
#page-team-detail .content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
}
#page-team-detail .left {
    width: 40%;
}
#page-team-detail .right {
    width: 50%;
    padding-left: 24px;
}
#page-team-detail .description {
    padding: 0 24px;
    border-left: 1px solid #667085;
    border-right: 1px solid #667085;
}
@media (max-width: 992px) {
    #page-team-detail .left {
        width: 45%;
    }
    #page-team-detail .right {
        width: 55%;
    }
}
@media (max-width: 768px) {
    #page-team-detail .team-info {
        gap: 16px;
    }
    #page-team-detail .team-info .logo {
        width: 80px;
        height: 80px;
    }
    #page-team-detail .team-info .name {
        font-size: 36px;
    }
    #page-team-detail .content {
        flex-direction: column;
    }
    #page-team-detail .left,
    #page-team-detail .right {
        width: 100%;
        padding: 0;
    }
    #page-team-detail .team-info .date,
    #page-team-detail .team-info .location {
        font-size: 16px;
    }
}

.info-card-list {
    display: flex;
    flex-direction: column;
}
.info-card-list .label {
    width: 100%;
    padding: 24px 0;
    margin-bottom: 24px;
    font-size: 24px;
    font-weight: 500;
    color: #F2F4F7;
    border-bottom: 2px solid #475467;
}
.info-card-list .list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.info-card-list .info-card-wrapper {
    box-sizing: border-box;
    display: flex;
    width: 100%;
}
.info-card {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 8px;
    border: 2px solid rgba(222, 189, 97, 1);
    color: #FFFFFF;
    font-size: 20px;
    font-weight: 500;
}
.info-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(76.25% 76.25% at 50% 22.86%, rgba(16, 19, 35, 0) 0%, rgba(16, 19, 35, 0.17) 64.45%, rgba(16, 19, 35, .9) 100%);
}
.info-card .avatar {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    background-blend-mode: multiply;
}
.info-card .name {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50%;
    padding: 12px;
    z-index: 9;
}
.info-card .number {
    position: absolute;
    bottom: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background-color: #475467;
    border-top-left-radius: 6px;
    z-index: 9;
}
@media (max-width: 992px) {
    .info-card-list .list {
        grid-template-columns: repeat(2, 1fr);
    }
    .info-card-list .label {
        font-size: 20px;
    }
}

.table-tournament-history {
    margin-bottom: 24px;
    width: 100%;
    border-spacing: 0;
    color: #1D2939;
}
.table-tournament-history th {
    color: #FFFFFF;
    background-color: #101828;
    padding: 8px 24px;
    text-align: start;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
}
.table-tournament-history tbody tr {
    border: 2px solid #FFFFFF;
    background-color: #F2F4F7;
}
.table-tournament-history td {
    padding: 16px 24px;
    text-align: start;
    font-size: 16px;
    border-top: 1px solid #FFFFFF;
    border-bottom: 1px solid #FFFFFF;
}
.table-tournament-history td:first-child {
    color: #3E4784;
}
@media (max-width: 576px) {
    .table-tournament-history th {
        padding: 8px 16px;
    }
    .table-tournament-history td {
        padding: 12px 16px;
    }
}

.filter-bar {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    margin: 16px 0;
}

.input-group {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.input-control {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    border-radius: 100px;
    background-color: #EAECF5;
    color: #667085;
    font-size: 16px;
}
.input-control input {
    max-height: 160px;
    font-family: inherit;
    border: none;
    background: none;
    color: inherit;
    outline: none;
}

.pagination {
    list-style: none;
    display: flex;
    justify-content: center;
}
.pagination li {
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Inter';
    height: 24px;
    min-width: 24px;
    padding: 8px;
    border: 1px solid #D0D5DD;
    white-space: nowrap;
}
.pagination li a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}
.pagination li:first-child {
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
}
.pagination li:last-child {
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
}
.pagination .prev,
.pagination .next {
    padding-left: 16px;
    padding-right: 16px;
}

#icon-search {
    cursor: pointer;
}

.slick-list {
    width: 100%;
}

#page-news-list .content {
    display: flex;
    margin: 32px 0;
}
#page-news-list .category-list {
    min-width: 200px;
    margin-right: 24px;
    padding: 8px;
    border-right: 1px solid #DDDDDD;
}
#page-news-list .category-list .label {
    font-size: 24px;
    font-weight: 500;
}
#page-news-list .category-list ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
#page-news-list .category-list li {
    font-size: 18px;
    padding: 8px;
}

.news-detail {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin: 32px 0 32px;
}
.news-detail .cover {
    width: 100%;
    height: 320px;
    object-fit: cover;
    object-position: center;
}
.news-detail .title {
    font-size: 32px;
}
.news-detail .date {
    font-family: 'Inter';
    color: #667085;
}