@charset "UTF-8";

/**
Copyright 2025
**/

/*
* Frontend
*/

:root {
    --primary-bg: #161C77;
    --navigation: #FF9E0E;
    --text-light: #FFFFFF;
    --text-dark: #333333;
    --card-bg: #F5F5F5;
}

/*
* Header
*/

header {
    /* background-color: var(--primary-bg); */
    padding: .1rem 1rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

header .logo {
    max-width: 150px;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 1.5rem;
}

.nav-links a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 600;
    padding: 0.5rem 0.5rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.nav-links a:hover, .nav-links a.active {
    background-color: var(--navigation);
    color: var(--primary-bg);
}

.mainMenu a:hover {
    color: var(--navigation);
    background-color: unset !important;
}

.mainMenu a.active {
    background-color: unset !important;
    color: var(--navigation);
    border-bottom: 2px solid var(--navigation);
    border-radius: unset !important;
}

.mainMenu a.btn-signup,
.mainMenu a.btn-signup:focus, .mainMenu a.btn-signup:active {
    background-color: var(--navigation) !important;
    color: #FFF;
}

.menu-toggle {
    display: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}

/*
* End Header
*/

/*
* Champion Pool
*/

.champions-section {
    margin-bottom: 3rem;
}

.champions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

.champion-card {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.champion-card:hover {
    transform: translateY(-5px);
}

.champion-img {
    width: 100%;
    /* height: 200px; */
    object-fit: cover;
}

.champion-info {
    padding: 1rem;
}

.champion-info h3 {
    color: var(--primary-bg);
    margin-bottom: 0.5rem;
}

.champion-info p {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

/*
* End Champion Pool
*/

/*
* News Feed
*/

iframe {
    border: 1px solid #000;
    width: 100%;
    height: 100vh;
    display: block;
}

.news-feed {
    margin-bottom: 3rem;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

.news-card {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.news-card:hover {
    transform: translateY(-5px);
}

.news-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.news-content {
    padding: 1.2rem;
}

.news-date {
    color: var(--navigation);
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.news-content h3 {
    color: var(--primary-bg);
    margin-bottom: 0.8rem;
    font-size: 1.2rem;
}

.news-content p {
    font-size: 0.9rem;
    margin-bottom: .1rem;
}

.news-content small {
    font-size: .6rem;
}

.read-more {
    color: var(--primary-bg);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

.read-more:hover {
    color: var(--navigation);
}

/*
* End News Feed
*/

.champion-pool h2, .wrap-matches h2 {
    font-size: 1.5rem;
}

.champion-pool ul > li > a {
    font-size: 100%;
}

.wrap-matches .nav-pills .nav-link {
    color: #FFF;
    background-color: #1C1C1C;
    font-size: 1rem;
}

.wrap-matches .nav-pills .nav-link.active {
    background-color: #AF4708;
}

.wrap-matches .score-plate {
    width: 20%;
}

.wrap-matches .match-datetime {
    font-size: .6rem;
    display: inline-block;
    position: absolute;
    top: -20%;
    left: 17%;
    z-index: 1;
}

.wrap-matches .match-candidate > b > i,
.wrap-matches-pool .match-candidate > b > i {
    display: inline-block;
    width: 20px;
    height: 20px;
    background: url('../../assets/img/flag/ms.png') no-repeat center center;
    background-size: 100%;
}

.wrap-matches-pool .pool-checkbox .form-check {
    min-height: unset !important;
    margin-bottom: unset !important;
}

.wrap-matches-pool > a {
    cursor: pointer;
}

.event-box {
    max-height: calc(100vh - 350px);
	max-height: -webkit-calc(100vh - 350px);
	max-height: -moz-calc(100vh - 350px);
	overflow-y: scroll;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
}

.playerImg {
    width: 15%;
}

/* 
* Hero Section
*/

.hero {
    /* background: linear-gradient(rgba(22, 28, 119, 0.8), rgba(22, 28, 119, 0.9)), url('https://images.unsplash.com/photo-1595435934249-5df7ed86e1c0?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80') no-repeat center center/cover; */
    color: var(--text-light);
    padding: 5rem 2rem;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

/* 
* End Hero Section
*/

/*
* Footer
*/

footer {
    /* background-color: var(--primary-bg); */
    color: var(--text-light);
    padding: 3rem 2rem 1.5rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-column h3 {
    color: var(--navigation);
    margin-bottom: 1.2rem;
    font-size: 1.2rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: #ddd;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--navigation);
}

.copyright {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    color: #aaa;
}

/*
* End Footer
*/

/*
* Games
*/

.swiper .swiper-slide {
    position: relative;
    overflow: hidden;
    border-radius: 1rem;
    -webkit-border-radius: 1rem;
    -moz-border-radius: 1rem;
    -ms-border-radius: 1rem;
    -o-border-radius: 1rem;
    /* box-shadow: 0px 5px 10px rgba(255, 158, 14, 0.05); */
}

.swiper .swiper-slide .hover_layer {
    display: flex;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 10;
    background-color: rgba(255,255,255,.8);
    transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
}

.swiper .swiper-slide:hover .hover_layer {
    top: 0%;
}

.swiper .swiper-slide article {
    position: relative;
}

.swiper .swiper-slide article h6 {
    width: 80%;
    font-size: .8rem;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}

.swiper .swiper-slide label {
    font-size: .7rem;
}

.swiper .swiper-slide article::before {
    content: '';
    display: inline-block;
    position: absolute;
    top: 6%;
    right: 3%;
    z-index: 1;
    font-size: .7rem;
    color: #FFF;
    padding: .2rem .8rem;
    border-radius: 1rem;
    -webkit-border-radius: 1rem;
    -moz-border-radius: 1rem;
    -ms-border-radius: 1rem;
    -o-border-radius: 1rem;
}

.swiper .swiper-slide article.hot::before {
    content: 'Hot';
    background-color: #FF6600;
}

.swiper .swiper-slide article.new::before {
    content: 'New';
    background-color: #31E50D;
    animation: zoom-in-zoom-out 1s ease infinite;
}

.zoom-in-out-element {
    animation: zoom-in-zoom-out 1s ease infinite;
}

@keyframes zoom-in-zoom-out {
    0% {
        scale: 80%;
    }
    50% {
        scale: 100%;
    }
    100% {
        scale: 80%;
    }
}

/*
* End Games
*/

/*
* Announcement
*/

.swiper-button-next:after, .swiper-rtl .swiper-button-prev:after,
.swiper-button-prev:after, .swiper-rtl .swiper-button-next:after {
    height: 27px;
    width: 100%;
    background-color: #FFF;
    font-size: 1rem !important;
    border-radius: 50% !important;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #ff6200;
    -webkit-border-radius: 50% !important;
    -moz-border-radius: 50% !important;
    -ms-border-radius: 50% !important;
    -o-border-radius: 50% !important;
}

/*
* End Announcement
*/

/*
* End Frontend
*/