/* Fixed navbar on top */
.menu20-fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 2000;
    background: #181713;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    transition: opacity 0.3s, transform 0.3s;
    opacity: 0;
    pointer-events: none;
}

.menu20-fixed.visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.menu20-fixed .hero-main.menu20 {
    margin-top: 0;
    padding: 10px 0;
}

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700;900&display=swap');

@font-face {
    font-family: 'Pretendard';
    src: url('fonts/Pretendard-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: '';
    src: url('fonts/Pretendard-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

:root {
    --font-heading: 'Cinzel', serif;
}

/*==Font-setup==*/

*,
::after,
::before {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Pretendard';
    font-size: 16px;
    color: #000;
    background: #E8E8E8;
}

a,
a:hover {
    text-decoration: none;
}

ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
label {
    margin: 0;
}

/*==Basic-setup==*/

/* Discord floating button */
.discord-float {
    position: fixed;
    right: 25px;
    bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
    background: #5865F2;
    color: #fff;
    padding: 12px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 999;
    box-shadow: 0 4px 15px rgba(88, 101, 242, 0.4);
    transition: all 0.3s ease;
}

.discord-float:hover {
    background: #4752C4;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(88, 101, 242, 0.6);
    color: #fff;
}

.discord-float i {
    font-size: 20px;
}

.discord-float span {
    font-family: var(--font-heading);
}

/*===this-is-code-start===*/
.container {
    max-width: 1230px;
    margin: 0 auto;
    padding: 0 15px;
}

/*==hero-section==*/
.hero-area {
    background: url('images/hero-bg.png') no-repeat;
    background-position: center;
    background-size: cover;
    padding-bottom: 60px;
}

.hero-logo-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    /*! position: relative; */
    /*! bottom: -53px; */
}

.hero-logo-wrapper img {
    width: 100%;
}

.hero-logo-left img {
    position: relative;
    z-index: 2;
    top: -30px;
    transform: scale(1.1);
    transform-origin: center center;
    transition: transform 0.4s ease, filter 0.4s ease;
}

.hero-logo-left img:hover {
    transform: scale(1.13);
    filter: brightness(1.08) contrast(1.05);
}

.hero-logo-right img {
    position: relative;
    left: -80px;
    z-index: 1;
    top: 90px;
    max-height: 640px;
    object-fit: contain;
}

.hero-main {
    display: grid;
    grid-template-columns: max-content 1fr max-content;
    background: #181713;
    align-items: center;
    padding: 20px 30px;
    column-gap: 40px;
    position: relative;
    z-index: 5;
    margin-top: -65px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.menu20.sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    transform: none;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    max-width: 100%;
    margin: 0;
    width: 100%;
    padding: 15px 40px;
    z-index: 1000;
}

.hero-main-img img {
    width: 100%;
}

.hero-left ul {
    display: flex;
    align-items: center;
    column-gap: 20px;
}

.hero-left ul li a img {
    vertical-align: bottom;
    transition: transform 0.25s ease, filter 0.25s ease;
}

.hero-left ul li a img:hover {
    transform: translateY(-3px) scale(1.1);
    filter: brightness(1.3);
}

/* Navbar social vector icons */
.nav-social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #808080;
    transition: color 0.25s ease, transform 0.25s ease;
}

.nav-social-icon:hover {
    color: #BD0917;
    transform: translateY(-2px) scale(1.1);
}

.nav-social-icon:active {
    color: #8b1a1a;
}

.hero-left ul li span {
    width: 1px;
    height: 20px;
    background: #312F2C;
    display: block;
}

.hero-middle ul {
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 40px;
}

.hero-middle ul li a {
    font-family: 'Pretendard';
    font-weight: 400;
    font-size: 14px;
    color: #ffffff;
    text-transform: uppercase;
    transition: 0.2s all ease;
}

.hero-middle ul li:nth-of-type(4) button {
    background: none;
    border: none;
    font-family: 'Pretendard';
    font-weight: 400;
    font-size: 14px;
    color: #ffffff;
    text-transform: uppercase;
    transition: 0.2s all ease;
    cursor: pointer;
}

.hero-middle ul li:nth-of-type(4) button:hover {
    color: #BD0917;
}

.hero-middle ul li a:hover {
    color: #BD0917;
}

.hero-right ul {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    column-gap: 20px;
}

.hero-right ul li img {
    transition: transform 0.25s ease, filter 0.25s ease;
}

.hero-right ul li img:hover {
    transform: translateY(-2px) scale(1.1);
    filter: brightness(1.3);
}

/* Language Switcher */
.lang-switcher-wrap {
    position: relative;
}

.lang-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 14px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50px;
    color: #999;
    font-size: 13px;
    font-family: var(--font-heading);
    font-weight: 600;
    cursor: pointer;
    transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.lang-pill:hover {
    background: rgba(255, 255, 255, 0.14);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.25);
}

.lang-pill .fa-globe {
    font-size: 14px;
}

.lang-arrow {
    font-size: 10px;
    transition: transform 0.3s ease;
}

.lang-code {
    letter-spacing: 1px;
    font-size: 12px;
}

.lang-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    min-width: 170px;
    background: #1e1d1a;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 6px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
    z-index: 1001;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.lang-switcher-wrap.open .lang-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 16px;
    color: #aaa;
    font-size: 13px;
    font-weight: 500;
    transition: background 0.2s ease, color 0.2s ease;
}

.lang-option img {
    width: 20px;
    height: 14px;
    object-fit: cover;
    border-radius: 2px;
}

.lang-option:hover {
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
}

.lang-option.active {
    color: #BD0917;
}

.lang-option.active:hover {
    color: #BD0917;
}

.hero-right ul li:nth-of-type(3) button {
    font-family: var(--font-heading);
    font-weight: 400;
    font-size: 15px;
    color: #ffffff;
    text-transform: uppercase;
    width: 156px;
    height: 37px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: url('images/btn-bg1.png') no-repeat;
    background-position: 100% 100%;
    border: none;
    cursor: pointer;
    transition: transform 0.25s ease, filter 0.25s ease;
}

.hero-right ul li:nth-of-type(3) button:hover {
    transform: translateY(-2px) scale(1.03);
    filter: brightness(1.2);
}

.hero-right ul li:nth-of-type(3) a:hover {
    opacity: 0.8;
}

.hero-right ul li span {
    /* width: 1px; */
    height: 20px;
    background: #312F2C;
    display: block;
}

.hero-btm img {
    width: 100%;
    position: relative;
    margin-top: -20px;
    vertical-align: bottom;
}

.menu-btn {
    width: 24px;
    cursor: pointer;
    display: none;
    flex-direction: column;
    gap: 5px;
    z-index: 1001;
}

.menu-btn span {
    height: 2px;
    background: #fff;
    display: block;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.menu-btn.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.menu-btn.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Mobile menu overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Mobile dropdown menu */
.mobile-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #181713;
    z-index: 999;
    transform: translateY(-100%);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    padding: 70px 24px 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.mobile-nav.active {
    transform: translateY(0);
}

.mobile-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-nav ul li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-nav ul li a,
.mobile-nav ul li button {
    display: block;
    padding: 14px 0;
    color: #fff;
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: color 0.2s ease;
    background: none;
    border: none;
    cursor: pointer;
    width: 100%;
    text-align: left;
}

.mobile-nav ul li a:hover,
.mobile-nav ul li button:hover {
    color: #BD0917;
}

.mobile-nav ul li:last-child {
    border-bottom: none;
}

.mobile-nav .mobile-social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-nav .mobile-social a img {
    width: 24px;
    opacity: 0.7;
    transition: opacity 0.2s ease;
}

.mobile-nav .mobile-social a img:hover {
    opacity: 1;
}

/*==news-section==*/
.news-area {
    background: #E8E8E8;
    padding: 10px 0 70px 0;
}

.news-section-heading {
    text-align: center;
    margin-bottom: 35px;
}

.news-section-heading h2 {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
    transition: transform 0.3s ease;
    margin: 0;
}

.news-section-heading .heading-line {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #8b1a1a, transparent);
    margin: 12px auto 0;
}

.news-main {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    column-gap: 35px;
    margin-top: 25px;
}

.news-btn1 {
    position: relative;
}

/* Featured news (left) */
.news-left {
    overflow: hidden;
    transition: transform 0.3s ease;
}

.news-left:hover {
    transform: translateY(-3px);
}

.news-left-img {
    overflow: hidden;
    border-radius: 0;
    position: relative;
}

.news-left-img img {
    width: 100%;
    display: block;
    transition: transform 0.5s ease, filter 0.3s ease;
}

.news-left:hover .news-left-img img {
    transform: scale(1.04);
}

.news-left-img:hover img {
    filter: brightness(0.85);
}

.news-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #BD0917;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    padding: 4px 12px;
    border-radius: 3px;
    text-transform: uppercase;
    z-index: 2;
}

.news-left-cnt {
    padding: 18px 0 0;
}

.news-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 10px;
}

.news-category {
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 700;
    color: #BD0917;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.news-date {
    font-size: 12px;
    color: #999;
    display: flex;
    align-items: center;
    gap: 5px;
}

.news-date i {
    font-size: 11px;
}

.news-title {
    margin-bottom: 12px;
}

.news-title a {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 18px;
    color: #1a1a1a;
    line-height: 1.4;
    transition: color 0.2s ease;
}

.news-title a:hover {
    color: #BD0917;
}

.news-left-cnt h4 {
    font-weight: 600;
    font-size: 13px;
    color: #d19e50;
    margin-top: 0;
}

.news-left-cnt span {
    color: #807f7f;
}

.news-left-cnt p {
    font-weight: 400;
    font-size: 14px;
    color: #555;
    margin-top: 0;
    line-height: 1.65;
}

.news-read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 18px;
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 600;
    color: #BD0917;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: gap 0.3s ease, color 0.2s ease;
}

.news-read-more:hover {
    gap: 14px;
    color: #8b1a1a;
}

.news-read-more i {
    font-size: 11px;
    transition: transform 0.3s ease;
}

.news-read-more:hover i {
    transform: translateX(3px);
}

/* Smaller news (right) */
.news-right {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.news-flex {
    display: grid;
    grid-template-columns: 170px auto;
    column-gap: 20px;
    align-items: center;
    padding: 18px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.news-flex:hover {
    transform: translateY(-2px);
}

.news-flex:last-child {
    border-bottom: none;
}

.news-flex2 {
    margin-top: 20px;
}

.news-col-left img {
    width: 100%;
    border-radius: 4px;
    transition: transform 0.4s ease, filter 0.3s ease;
}

.news-col-left {
    overflow: hidden;
    border-radius: 4px;
}

.news-col-left:hover img {
    transform: scale(1.06);
    filter: brightness(0.9);
}

.news-col-right .news-meta {
    margin-bottom: 8px;
}

.news-col-right h4 {
    font-weight: 600;
    font-size: 14px;
    color: #1a1a1a;
    line-height: 1.4;
}

.news-col-right h4 a {
    color: #1a1a1a;
    transition: 0.2s all ease;
}

.news-col-right h4 a:hover {
    color: #BD0917;
}

.news-col-right p {
    font-weight: 400;
    font-size: 13px;
    color: #777;
    margin-top: 8px;
    line-height: 1.5;
}

/* Empty state for tabs */
.news-empty-state {
    text-align: center;
    padding: 60px 20px;
}

.news-empty-state i {
    font-size: 40px;
    color: #ccc;
    margin-bottom: 15px;
}

.news-empty-state p {
    font-size: 15px;
    color: #999;
}

/* View all news button */
.news-view-all {
    text-align: center;
    margin-top: 40px;
}

.news-view-all a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 14px;
    color: #fff;
    background: #1a1a1a;
    padding: 14px 36px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: background 0.3s ease, transform 0.25s ease, gap 0.3s ease;
}

.news-view-all a:hover {
    background: #BD0917;
    transform: translateY(-2px);
    gap: 16px;
}

.news-view-all a i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.news-view-all a:hover i {
    transform: translateX(3px);
}

/* Tab buttons enhancement */
.tab-buttons ul {
    display: flex;
    align-items: center;
    column-gap: 40px;
    padding-bottom: 15px;
}

.tab-buttons ul li {
    position: relative;
}

.tab-btn {
    font-weight: 600;
    font-size: 14px;
    color: #666;
    z-index: 2;
    position: relative;
    transition: color 0.25s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    /* padding-bottom: 17px; */
}

.tab-btn i {
    font-size: 13px;
}

.tab-btn:hover {
    color: #BD0917;
}

.tab-btn.active {
    color: #BD0917;
    position: relative;
}

.tab-pane {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease, transform 0.4s ease;
    transform: translateY(10px);
    margin-top: 20px;
}

.tab-pane.active {
    position: relative;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.tab-content {
    position: relative;
    overflow: hidden;
}

.tab-btn-img img {
    position: absolute;
    left: 2px;
    bottom: 0;
    z-index: -1;
    display: none;
    width: 100%;
}

.tab-btn.active .tab-btn-img img {
    display: block;
}

/*==social-midea-section==*/

.social-midea-area {
    background: url('images/social-media-bg.png') no-repeat;
    background-position: center;
    background-size: cover;
    padding: 67px 0 60px 0;
}

.social-midea-main {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    column-gap: 15px;
    max-width: 1115px;
    margin: auto;
}

.social-midea-item {
    text-align: center;
}

.social-midea-item img {
    max-width: 130px;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.social-midea-item a:hover img {
    transform: translateY(-6px) scale(1.05);
    filter: brightness(1.2);
}

.social-midea-item a:hover {
    opacity: 1;
}

.social-midea-item h4 {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 18px;
    color: #0a0b0a;
    text-transform: uppercase;
    color: #ffffff;
    margin-top: 10px;
    text-shadow: 0px 1px 2px #ccc, 0px 8px 10px rgba(0, 0, 0, 0.15), 0px 8px 2px rgba(0, 0, 0, 0.7);
    background-image: linear-gradient(#fff 26%, #76270C 80%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/*==player-section==*/
.player-area {
    padding: 68px 0 92px 0;
}

.player-main {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 30px;
}

.player-item-topper {
    background: url('images/player-top-bg.png') no-repeat;
    background-position: center;
    background-size: cover;
    padding: 20px;
}

.player-item-topper ul {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.player-item-topper ul li {
    position: relative;
}

.player-line img {
    position: absolute;
    bottom: 0;
    left: 2px;
}

.player-item-topper ul li:nth-of-type(1) h4 {
    font-weight: 600;
    font-size: 14px;
    color: #ffffff;
}

.player-item-topper ul li:nth-of-type(2) a {
    font-weight: 400;
    font-size: 13px;
    color: #d19f50;
    text-transform: uppercase;
    transition: color 0.2s ease, letter-spacing 0.2s ease;
}

.player-item-topper ul li:nth-of-type(2) a:hover {
    color: #BD0917;
    letter-spacing: 0.5px;
}

.player-item-btmbar {
    background: #080904;
    margin-top: 5px;
    padding: 20px 25px;
    display: grid;
    grid-template-columns: 100%;
    min-height: 330px;
}

.player-table-row {
    display: grid;
    grid-template-columns: 60% auto 20% auto;
    align-items: center;
    padding: 8px 0;
}

.player-table-col1 ul {
    display: flex;
    align-items: center;
    column-gap: 25px;
}

.player-table-col ul li {
    font-weight: 400;
    font-size: 14px;
    color: #ffffff;
}

.player-table-col ul li span {
    color: #807f7f;
}

.player-table-col ul li sup {
    font-size: 10px;
    color: #d19f50;
    text-transform: uppercase;
}

.player-table-col3 {
    text-align: right;
}

.player-btn {
    margin-top: auto;
}

.player-btn a {
    font-family: var(--font-heading);
    font-weight: 400;
    font-size: 19px;
    color: #ffffff;
    text-transform: uppercase;
    width: 200px;
    height: 45px;
    background: url('images/player-btn-bg.png') no-repeat;
    background-position: 100% 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
    margin-top: 20px;
    transition: transform 0.25s ease, filter 0.25s ease, box-shadow 0.25s ease;
}

.player-btn a:hover {
    transform: translateY(-2px) scale(1.03);
    filter: brightness(1.2);
}

.player-table-row2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.color-name {
    color: #d19f50 !important;
}

.color-name2 {
    color: #ac0a0b !important;
}

/*==mage-section==*/
.mage-area {
    background: url('images/mage-bg.png') no-repeat;
    background-position: center;
    background-size: cover;
    padding: 48px 0;
    position: relative;
    overflow: hidden;
}

.mega-right-flex {
    position: relative;
}

.maga-mian-img img {
    width: 100%;
    position: absolute;
}

.maga-mian-img1 img {
    max-width: 600px;
    top: -60px;
    right: -50px;
}

.maga-mian-img2 img {
    max-width: 566px;
    top: -87px;
    right: 0;
}

.maga-mian-img3 img {
    max-width: 895px;
    top: -87px;
    right: 0;
}

.maga-mian-img4 img {
    max-width: 600px;
    top: 56px;
    right: -77px;
}

.maga-mian-img5 img {
    max-width: 650px;
    top: 5px;
    right: -90px;
}

.maga-mian-img6 img {
    max-width: 750px;
    top: 51px;
    right: -35px;
}

.maga-mian-img7 img {
    max-width: 750px;
    top: 126px;
    right: -172px;
}

.maga-mian-img8 img {
    max-width: 793px;
    top: 105px;
    right: -155px;
}

.maga-mian-img9 img {
    max-width: 717px;
    top: 71px;
    right: -139px;
}

.maga-mian-img10 img {
    max-width: 750px;
    top: 2px;
    right: -65px;
}

.maga-mian-img11 img {
    max-width: 750px;
    top: -87px;
    right: -140px;
}

.maga-mian-img12 img {
    max-width: 753px;
    top: 32px;
    right: -50px;
}

.maga-mian-img13 img {
    max-width: 835px;
    top: 76px;
    right: -70px;
}

.mage-left ul {
    display: grid;
    grid-template-columns: 100%;
    row-gap: 15px;
}

.mage-left {
    text-align: center;
}

.indicator h4 {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 14px;
    color: #0a0b0a;
    text-align: center;
}

.mage-right h2 {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 60px;
    background-image: linear-gradient(#0a0b0a 26%, #76270C 60%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    z-index: 3;
}

.mage-right h3 {
    font-family: var(--font-heading);
    font-weight: 400;
    font-size: 22px;
    background: linear-gradient(81deg, #0a0b0a 0%, #D86968 18%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 22px;
    padding: 10px 0;
}

.menga-line1 img {
    vertical-align: bottom;
}

.menga-line2 img {
    vertical-align: top;
}

.menga-line img {
    max-width: 196px;
    position: relative;
    left: -20px;
}

.mega-dot {
    margin-top: 15px;
}

.mage-right h4 {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 14px;
    color: #d19f50;
    display: inline-block;
    border-bottom: 2px solid #d19f50;
    margin-top: 20px;
    text-transform: uppercase;
}

.mage-right p {
    font-weight: 400;
    font-size: 14px;
    color: #0a0b0a;
    margin-top: 15px;
    max-width: 440px;
    position: relative;
    z-index: 3;
    line-height: 1.6;
}

.mage-right a {
    font-weight: 600;
    font-size: 14px;
    color: #d19f50;
    text-transform: uppercase;
    display: inline-block;
    margin-top: 25px;
    transition: color 0.2s ease, letter-spacing 0.2s ease, transform 0.2s ease;
}

.mage-right a:hover {
    color: #BD0917;
    letter-spacing: 1px;
    transform: translateX(3px);
}

.custom-slider {
    display: grid;
    grid-template-columns: 160px 1fr;
    column-gap: 50px;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

/* LEFT SIDE */
.indicator-wrapper {
    overflow: hidden;
}

.indicators {
    display: flex;
    flex-direction: column;
    transition: transform .4s ease;
}

.indicator {
    border: none;
    cursor: pointer;
    transition: transform 0.3s ease, filter 0.3s ease;
    margin-bottom: 11px;
    text-align: center;
}

.indicator:hover {
    transform: scale(1.1);
    filter: brightness(1.15);
}

.indicator img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}

.controls-top {
    margin-bottom: 10px;
}

.controls-btm {
    margin-top: 10px;
}

.controls button {
    background: none;
    color: white;
    cursor: pointer;
    border: none;
    text-align: center;
    width: 100%;
    transition: transform 0.25s ease, filter 0.25s ease;
}

.controls button:hover {
    transform: scale(1.15);
    filter: brightness(1.3);
}

.slides-wrapper {
    position: relative;
    overflow: visible;
    width: 100%;
    min-width: 0;
    min-height: 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    overflow: visible;
}

.slide.active-slide {
    position: relative;
    opacity: 1;
    visibility: visible;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    min-width: 0;
    min-height: 420px;
    width: 100%;
}
.mega-right-flex {
    position: relative;
    width: 100%;
}

/* Ensure character images in slider are not cropped */
.slide img {
    max-width: 100%;
    max-height: 600px;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}

/*==backpack-section==*/
.backpack-area {
    background: url('images/backpack-bg.png') no-repeat;
    background-position: center;
    background-size: cover;
    padding: 42px 0;
    position: relative;
    margin-top: -10px;
    z-index: 3;
}

.backpack-main {

    grid-template-columns: 8% 15% 21% 21% 21% 8%;
    align-items: center;
}

.backpack-item {
    text-align: center;
}

.backpack-item a {
    display: block;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), filter 0.3s ease;
}

.backpack-item a:hover {
    transform: translateY(-10px) scale(1.05);
}

.backpack-item img {
    max-width: 200px;
    transition: filter 0.3s ease, transform 0.4s ease;
}

.backpack-item a:hover img {
    filter: drop-shadow(0 8px 20px rgba(209, 159, 80, 0.4)) brightness(1.1);
}

.backpack-cnt {
    position: relative;
    top: -35px;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.backpack-item a:hover .backpack-cnt {
    transform: translateY(-4px);
}

.backpack-cnt h3 {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 18px;
    color: #ffffff;
    text-transform: uppercase;
    text-shadow: 0px 1px 2px #ccc, 0px 8px 10px rgba(0, 0, 0, 0.15), 0px 8px 2px rgba(0, 0, 0, 0.7);
    transition: color 0.3s ease;
}

.backpack-item a:hover .backpack-cnt h3 {
    color: #fff;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.4), 0px 1px 2px #ccc, 0px 8px 10px rgba(0, 0, 0, 0.15);
}

.backpack-cnt h4 {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 18px;
    color: #d19f50;
    text-shadow: 0px 1px 0px #ccc, 0px 8px 10px rgba(0, 0, 0, 0.15), 0px 8px 2px rgba(0, 0, 0, 0.7);
    margin-top: 10px;
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

.backpack-item a:hover .backpack-cnt h4 {
    color: #f0c060;
    text-shadow: 0 0 12px rgba(209, 159, 80, 0.5), 0px 1px 0px #ccc, 0px 8px 10px rgba(0, 0, 0, 0.15);
}

.backpack-right-arrow {
    text-align: right;
}

.splide-slider {
    width: 100%;
    overflow: visible;
    max-width: 900px;
    margin: auto;
}

/* Custom arrows */
.custom-arrows {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 15px;
}

.backpack-container {
    position: relative;
}

.custom-arrows button {
    background: none;
    color: #fff;
    border: none;
    cursor: pointer;
    filter: brightness(0.7);
    opacity: 0.8;
    padding: 0;
}

.custom-arrows button:hover,
.custom-arrows button:focus {
    filter: brightness(1.2);
    opacity: 1;
}

.custom-arrows button:active {
    filter: brightness(0.5);
}

.arrow-inner img {
    transition: transform 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94), filter 0.25s;
}

.custom-arrows button:hover .arrow-inner img,
.custom-arrows button:focus .arrow-inner img {
    transform: scale(1.15);
}

.custom-arrows button:active .arrow-inner img {
    transform: scale(0.92);
}

.left-arrow {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%) scaleX(-1);
}

.left-arrow:hover {
    transform: translateY(-50%) scaleX(-1) scale(1.15);
}

.right-arrow {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

.right-arrow:hover {
    transform: translateY(-50%) scale(1.15);
}

/* Custom Dots */
.custom-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 15px;
    display: none;
}

.custom-dots button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background: #fff;
    cursor: pointer;
}

.custom-dots button.active {
    background: red;
}

/*==footer-section==*/
.footer-area {
    padding: 50px 0 25px 0;
}

.footer-main ul {
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 40px;
}

.footer-main ul li a {
    font-weight: 600;
    font-size: 14px;
    color: #0a0b0a;
    text-transform: uppercase;
    transition: color 0.2s ease, transform 0.2s ease;
    display: inline-block;
}

.footer-main ul li a:hover {
    color: #BD0917;
    transform: translateY(-2px);
}

.copyright-item {
    padding-top: 30px;
    border-top: 1px solid #000000;
    margin-top: 50px;
}

.copyright-item ul {
    display: flex;
    align-items: center;
    column-gap: 25px;
    justify-content: center;
}

.copyright-item ul li p {
    font-weight: 600;
    font-size: 14px;
    color: #0a0b0a;
}

.copyright-item ul li span {
    width: 2px;
    height: 20px;
    background: #807F7F;
    display: block;
}

.copyright-item ul li a {
    font-weight: 600;
    font-size: 14px;
    color: #0a0b0a;
    transition: color 0.2s ease, transform 0.2s ease;
    display: inline-block;
}

.copyright-item ul li a:hover {
    color: #BD0917;
    transform: translateY(-1px);
}

/*==login-page==*/
.login-title {
    text-align: center;
    position: relative;
}

.login-title h2 {
    font-weight: 600;
    font-size: 14px;
    color: #e1dfe0;
    text-transform: uppercase;
    position: relative;
    z-index: 2;
}

.login-line {
    position: absolute;
    margin-top: -28px;
    left: 50%;
    transform: translateX(-50%);
    bottom: -3px;
}

.login-item {
    padding: 20px 37px;
}

.login-item1 {
    background: url('images/login-item-bg1.png') no-repeat;
    background-position: 100% 100%;
}

.login-item2 {
    background: url('images/login-item-bg2.png') no-repeat;
    background-position: 100% 100%;
}

.login-flex-wrap {
    margin-top: 30px;
}

.input-flex {
    display: grid;
    grid-template-columns: 38px auto;
    column-gap: 18px;
    background: #151611;
    padding: 10px 20px;
    margin-top: 15px;
}

.input-item-left ul {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.devide {
    display: block;
    height: 20px;
    width: 2px;
    background: #383934;
}

.input-flex ul li i {
    color: #000000;
}

.input-flex:focus-within li i {
    color: #807F7F;
}

.input-item-right input {
    font-weight: 400;
    font-size: 14px;
    color: #e1dfe0;
    width: 100%;
    background: none;
    border: none;
    outline: none;
}

.input-item-right input::placeholder {
    font-weight: 400;
    font-size: 14px;
    color: #e1dfe0;
}

.sign-btm h4 {
    font-weight: 400;
    font-size: 14px;
    color: #807f7f;
    text-align: center;
    margin-top: 15px;
}

.sign-btm h4 span {
    color: #d19f50;
}

.input-submit {
    text-align: center;
    margin-top: 24px;
}

.input-submit button {
    font-family: var(--font-heading);
    font-weight: 400;
    font-size: 15px;
    color: #ffffff;
    width: 160px;
    height: 36px;
    background: url('images/submit-bg.png') no-repeat;
    background-position: 100% 100%;
    border: none;
    cursor: pointer;
    transition: transform 0.25s ease, filter 0.25s ease;
}

.input-submit button:hover {
    transform: translateY(-2px) scale(1.03);
    filter: brightness(1.2);
}

.checkbox {
    display: grid;
    grid-template-columns: 20px auto;
    align-items: center;
    column-gap: 12px;
    margin-top: 20px;
}

.checkbox input[type=checkbox] {
    appearance: none;
    height: 20px;
    width: 20px;
    background: #1F2120;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
}

.checkbox input[type=checkbox]::after {
    content: "\f00c";
    font-weight: 900;
    font-family: 'Font Awesome 5 Free';
    font-size: 15px;
    color: #ffffff;
    display: none;
}

.checkbox input[type=checkbox]:checked {
    background: #6E2226;
}

.checkbox input[type=checkbox]:checked::after {
    display: block;
}

.checkbox label {
    font-weight: 400;
    font-size: 14px;
    color: #807f7f;
    cursor: pointer;
}

/* ===== Modal Overlay ===== */
.modal-ad {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .85);
    z-index: 999;
    overflow-y: auto;
    padding: 40px 0;

    opacity: 0;
    visibility: hidden;
    transition: opacity .4s ease, visibility .4s ease;
}

/* Active modal */
.modal-ad.active-ad {
    opacity: 1;
    visibility: visible;
}

/* ===== Modal Box ===== */
.modal-box-ad {
    max-width: 400px;
    width: 90%;
    margin: 80px auto;
    position: relative;
    transform: translateY(-120px);
    opacity: 0;
    transition: transform .55s cubic-bezier(.22, .61, .36, 1),
        opacity .45s ease;
}

/* Slide down animation */
.modal-ad.active-ad .modal-box-ad {
    transform: translateY(0);
    opacity: 1;
}

/* ===== Close Button ===== */
.modal-close-ad {
    position: absolute;
    top: -15px;
    right: -15px;
    font-size: 20px;
    cursor: pointer;
    user-select: none;
    color: #fff;
    width: 40px;
    height: 40px;
    background: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}