@import url('https://fonts.cdnfonts.com/css/friz-quadrata');
@import url('https://fonts.cdnfonts.com/css/trajan-pro');
@import url('https://fonts.cdnfonts.com/css/open-sans');
:root {
    --open-sens: 'Open Sans', sans-serif;
    --friz-quadrata: 'Friz Quadrata', sans-serif;
    --trajan-pro: 'Trajan Pro', sans-serif;
    --primaryColor: #A6FF61;
    --whiteColor: #fff;
    --blackColor: #000;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--open-sens);
    font-size: 16px;
    font-weight: 400;
    background: var(--whiteColor);
    color: #333333;
	padding: 0 !important;
}

.stat-hex{
	    filter: hue-rotate(69deg) contrast(1.2);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    font-weight: 700;
}

p,
figure,
label {
    margin: 0;
}

img {
    max-width: 100%;
    vertical-align: middle;
}

small {
    font-size: inherit;
}

a {
    display: inline-block;
    text-decoration: none;
    color: inherit;
    transition: 0.2s all ease;
    -webkit-transition: 0.2s all ease;
}

a:hover {
    text-decoration: none;
}

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

input,
button {
    background-color: transparent;
    border: 1px solid transparent;
    outline: none;
    transition: 0.2s all ease;
    -webkit-transition: 0.2s all ease;
}

input[type=number] {
    -moz-appearance: textfield;
    -webkit-appearance: textfield;
    appearance: textfield;
}

select {
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url(images/select-input-arrow.png);
    background-repeat: no-repeat;
    background-size: 15px;
    background-position: calc(100% - 15px) 50%;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    appearance: none;
    margin: 0;
}

::selection {
    color: var(--whiteColor);
    background: var(--primaryColor);
}

::-webkit-selection {
    color: var(--whiteColor);
    background: var(--primaryColor);
}

::-moz-selection {
    color: var(--whiteColor);
    background: var(--primaryColor);
}

.scrolltotop {
    position: fixed;
    right: 30px;
    bottom: 25px;
    display: none;
    z-index: 100;
}

.scrolltotop img {
    max-width: 85px;
}

/*======= header-area design =======*/

.header-area {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 100;
    color: var(--whiteColor);
    background: rgba(0, 0, 0, 0.8);
}

.header-wrapper {
    display: flex;
    align-items: center;
    gap: 50px;
    padding-block: 15px;
}

.logo img {
    max-width: 137px;
}

.lang-selector-container {
    position: relative;
    user-select: none;
    width: fit-content;
}

/* Trigger Box */

.lang-selected-display {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    background: transparent;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.2s;
}

.lang-selected-display:hover {
    background: #1a1d21;
}

.flag-wrapper {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid #1e2227;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.flag-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lang-label {
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    flex-grow: 1;
}

.chevron-icon {
    width: 16px;
    height: 16px;
    color: #666;
    transition: transform 0.2s;
}

.active .chevron-icon {
    transform: rotate(180deg);
}

/* Dropdown Menu */

.lang-dropdown-menu {
    position: absolute;
    top: calc(100% + 5px);
    left: 0;
    width: 100%;
    background: #14171c;
    border: 1px solid #2a2e33;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
    display: none;
    z-index: 100;
    overflow: hidden;
    padding: 4px;
}

.lang-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    cursor: pointer;
    border-radius: 6px;
    transition: background 0.2s;
}

.lang-option:hover {
    background: #1a1d21;
}

.lang-option .flag-wrapper {
    width: 20px;
    height: 20px;
}

.lang-option span {
    color: #ccc;
    font-size: 14px;
}

.lang-option:hover span {
    color: #ffffff;
}

/* Hidden Original Select */

#native-lang-select {
    display: none;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 50px;
}

.desktop-navbar {
    flex: 1;
}

.desktop-navbar ul {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: space-between;
}

.desktop-navbar ul a {
    font-size: 14px;
    font-weight: 700;
    position: relative;
}

.desktop-navbar ul a:hover,
.desktop-navbar ul a.active {
    color: var(--primaryColor);
}

.desktop-navbar ul a.active::before {
    content: '';
    width: 168px;
    height: 74px;
    background: url(images/active.png) no-repeat;
    background-size: 100% 100%;
    position: absolute;
    left: 50%;
    top: -33px;
    transform: translateX(-50%);
    pointer-events: none;
}

.sing-in a {
    display: flex;
    align-items: center;
    font-size: 14px;
    font-weight: 700;
    gap: 10px;
}

.sing-in a img {
    max-width: 34px;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.singup-btn a {
    width: 200px;
    height: 55px;
    font-size: 13px;
    line-height: 18px;
    color: #ffffff;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    filter: drop-shadow(0px 1px 2px rgba(9, 8, 12, 0.44));
    background: url(images/create-btn.png) no-repeat;
    background-size: 100% 100%;
    background-position: center;
}

.or-text {
    font-size: 14px;
    font-weight: 700;
    color: #E7EBEF;
}

.hamburger .line {
    width: 40px;
    height: 5px;
    background-color: #ecf0f1;
    display: block;
    margin: 6px auto;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.hamburger:hover {
    cursor: pointer;
}

#hamburger-1.is-active .line:nth-child(2) {
    opacity: 0;
}

#hamburger-1.is-active .line:nth-child(1) {
    -webkit-transform: translateY(11x) rotate(45deg);
    -ms-transform: translateY(11x) rotate(45deg);
    -o-transform: translateY(11x) rotate(45deg);
    transform: translateY(11px) rotate(45deg);
}

#hamburger-1.is-active .line:nth-child(3) {
    -webkit-transform: translateY(-11px) rotate(-45deg);
    -ms-transform: translateY(-11px) rotate(-45deg);
    -o-transform: translateY(-11px) rotate(-45deg);
    transform: translateY(-11px) rotate(-45deg);
}

.offcanvas-title img {
    max-width: 140px;
}

#mobileMenu {
    z-index: 1055;
}

.nav-link {
    font-weight: 700;
    font-size: 15px;
}

/*============== hero area style start hare =============== */

.hero-area {
    position: relative;
    z-index: 2;
    margin-top: -40px;
}

.hero-bg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}
.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}
.hero-wrapper {
    min-height: 750px;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: end;
    padding-top: 200px;
    gap: 40px;
    padding-bottom: 130px;
}

.hero-logo img {
    max-width: 700px;
    width: 100%;
}

.hero-actions {
    display: flex;
    width: 100%;
    max-width: 490px;
    gap: 20px;
}

.hero-actions .download-btn {
    font-size: 15px;
    font-weight: 700;
    filter: drop-shadow(0px 1px 0px #0e0d0d);
    background-position: center;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    text-align: center;
    display: flex;
    align-items: center;
    flex: 1;
    padding-inline: 15px;
}

.hero-actions a:hover {
    opacity: 0.8;
}

.hero-actions .download-btn {
    background-image: url(images/btn-bg.png);
    color: var(--whiteColor);
}

.download-btn img {
    max-width: 75px;
}

.presentation-btn .presentation-btn-icon-wrap {
    width: 75px;
    max-width: 75px;
    flex: 0 0 75px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.presentation-btn .presentation-btn-icon {
    font-size: 22px;
    color: #dce8de;
    line-height: 1;
}

.hero-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 700;
    color: #9A9EA2;
}

.hero-btn img {
    max-width: 30px;
}

.hero-btn.btn-mac {
    color: var(--whiteColor);
}

/*========== hero area end hare =============== */

.part-two {
    background: url(images/bg.png) no-repeat;
    background-size: 100% 100%;
    padding-bottom: 6%;
	background-size: cover;
    background-position: center;
}

/*=========== vote area start hare ========= */

.vote-area {
    margin-top: -25px;
    position: relative;
    z-index: 5;
}

.vote-wrapper {
    display: flex;
    gap: 10px;
}

.vote-left-wp {
    width: 66%;
}

.single-promo-card {
    position: relative;
    z-index: 2;
}

.promo-content {
    position: absolute;
    left: 0;
    bottom: 0;
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.promo-content h4 {
    font-size: 36px;
    letter-spacing: 1px;
    line-height: 1.2;
    color: #ffffff;
    font-family: var(--friz-quadrata);
    filter: drop-shadow(0.052px 3px 1.5px #000000);
}

.promo-content p {
    opacity: 0.502;
    font-size: 17px;
    line-height: 2;
    text-transform: uppercase;
    color: #ffffff;
    font-weight: bold;
    font-family: var(--trajan-pro);
    filter: drop-shadow(0.052px 3px 1.5px #000000);
}

.social-card {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #0E1417;
}

.social-card a {
    padding: 30px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.social-card a img {
    width: 100%;
    max-width: 45px;
}

.social-card a:last-child {
    border-bottom: none;
}

.vote-bottom {
    padding: 20px;
    background: url(images/banner-bg.png) no-repeat;
    background-size: 100% 100%;
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.vote-btm-left .icon {
    max-width: 50px;
    filter: invert(1);
}

.vote-btm-left {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
}

.vote-btm-left h4 {
    font-size: 17px;
    color: #fff;
    font-weight: 700;
    filter: drop-shadow(0 0 3.5px rgba(111, 255, 72, 0.39));
}

.vote-btm-left p {
    font-size: 14px;
    color: #fff;
    font-weight: 400;
    filter: drop-shadow(0 0 3.5px rgba(111, 255, 72, 0.39));
}

.vote-now-btn a {
    padding: 10px 45px;
    background: url(images/btn-bg.png) no-repeat;
    background-size: 100% 100%;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
	/* margin: 10px; */
}

.vote-slider {
    position: relative;
}

.vote-slider-actions {
    position: absolute;
    left: 20px;
    top: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 5;
}

.vote-slider-actions button img {
    max-width: 26px;
}

.vote-slider .swiper-pagination-bullet {
    width: 17px;
    height: 17px;
    opacity: 1;
    background: url(images/bullet.png) no-repeat;
    background-size: 100% 100%;
}

.vote-slider .swiper-pagination-bullet-active {
    background: url(images/bullet-active.png) no-repeat;
    background-size: 100% 100%;
}

.user-panel-card {
    width: 34%;
    background: url(images/user-panel-bg.png) no-repeat;
    background-size: 100% 100%;
    display: flex;
    flex-direction: column;
    gap: 22px;
    padding-bottom: 15px;
}

.user-panel-top {
    display: flex;
    align-items: center;
    padding: 18px 20px;
    background: url(images/banner-bg.png) no-repeat;
    background-size: 100% 100%;
    justify-content: space-between;
}

.user-panel-top h4 {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 700;
    color: var(--whiteColor);
}

.user-panel-top h4 img {
    max-width: 23px;
}

.user-panel-top a {
    font-size: 11px;
    font-weight: 700;
    color: var(--whiteColor);
}

.user-panel-top a:hover {
    color: var(--primaryColor);
}

.input-wrapper {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.single-input {
    display: flex;
    align-items: center;
    padding: 5px 20px;
    gap: 10px;
    background: #0F1517;
    filter: drop-shadow(0px 1px 0px rgba(72, 157, 43, 0.17));
    box-shadow: inset 3.078px 8.457px 12px rgba(10, 10, 13, 0.07);
}

.user-inner-wp {
    padding: 0 16px;
}

.single-input input {
    flex: 1;
    width: 100%;
    color: var(--whiteColor);
    font-size: 14px;
    background: transparent;
    border: none;
    min-height: 38px;
}

.single-input:focus-within {
    box-shadow: inset 0px -1px 0px #377e15;
}

.checkbox label {
    display: flex;
    align-items: start;
    gap: 12px;
    cursor: pointer;
}

.custom-checkbox {
    width: 22px;
    height: 20px;
    filter: drop-shadow(0px 1px 0px rgba(72, 157, 43, 0.17));
    box-shadow: inset 3.078px 8.457px 12px rgba(10, 10, 13, 0.07);
    background-color: #0f1517;
    position: relative;
}

.custom-checkbox img {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: 0.3s;
}

.checkbox label span {
    flex: 1;
    font-size: 14px;
    color: var(--whiteColor);
}

.checkbox label span a {
    color: var(--primaryColor);
    text-decoration: underline;
}

#terms:checked+label .custom-checkbox img {
    opacity: 1;
}

.checkbox {
    margin-top: 10px;
}

.form-actions {
    margin-top: 28px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-actions button {
    padding: 10px 50px;
    background: url(images/btn-bg.png) no-repeat;
    background-size: 100% 100%;
    font-size: 12px;
    color: #ffffff;
    font-weight: 700;
    text-shadow: 0px 1px 2px rgba(9, 8, 12, 0.44);
}

.form-actions span {
    font-size: 14px;
    color: var(--whiteColor);
}

.form-actions a {
    font-size: 14px;
    color: var(--primaryColor);
    text-decoration: underline;
}

.form-btn {
    display: flex;
    align-items: center;
    flex-direction: column;
}

.form-btn-action {
    display: flex;
    align-items: center;
    gap: 15px;
    width: 100%;
}

.form-btn-action a {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--whiteColor);
}

.form-btn-action a span {
    width: 5px;
    height: 5px;
    border-radius: 3px;
    background-color: #dfff3f;
}

.section-top {
    display: flex;
    align-items: center;
    gap: 30px;
    padding-block: 20px;
}

.section-top>img {
    flex: 1;
    max-width: 100%;
    width: 100%;
}

.section-three-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.m2-left-wrapper {
    background: url(images/card-bg.png) no-repeat;
    background-size: 100% 100%;
    border-radius: 4px;
    padding: 15px;
    display: flex;
    flex-direction: column;
}

.card-header-left {
    display: flex;
    align-items: center;
    gap: 40px;
}

.card-header-left h4 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 700;
    filter: drop-shadow(0 0 3.5px rgba(111, 255, 72, 0.39));
    text-shadow: 0px 1px 2px rgba(9, 8, 12, 0.44);
    color: var(--whiteColor);
}

.card-header-left h4 img {
    max-width: 23px;
}

.card-header-left button {
    font-size: 14px;
    color: #ecf0f1;
    font-weight: 700;
    text-align: center;
    filter: drop-shadow(0 0 3.5px rgba(111, 255, 72, 0.39));
    text-shadow: 0px 1px 2px rgba(9, 8, 12, 0.44);
}

.card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.050980392156862744);
    padding-bottom: 20px;
}

.table-tab-nav {
    display: flex;
    align-items: center;
}

.table-tab-nav a {
    font-size: 13px;
    color: #ecf0f1;
    text-align: center;
    filter: drop-shadow(0 0 12px rgba(255, 209, 113, 0.3));
    text-shadow: 0 0 4.5px #09080c;
    font-weight: 700;
    padding-inline: 15px;
    position: relative;
}

.table-tab-nav a.active::before {
    content: '';
    width: 168px;
    height: 74px;
    background: url(images/active-2.png) no-repeat;
    background-size: 100% 100%;
    position: absolute;
    left: 50%;
    bottom: -21px;
    transform: translateX(-50%);
    pointer-events: none;
}

.table-tab-nav a.active {
    color: var(--primaryColor);
}

.m2-leaderboard-card {
    width: 100%;
    max-width: 900px;
}

.m2-table-root {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

.m2-header-cell {
    font-size: 14px;
    text-transform: capitalize;
    letter-spacing: 1.5px;
    padding: 12px 15px;
    color: #a1ada8 !important;
    border-bottom: 1px solid #1a1e1c;
    font-weight: 600;
}

.m2-row-data td {
    padding: 10px 15px;
    font-size: 14px;
    vertical-align: middle;
    border-bottom: 1px solid rgba(255, 255, 255, 0.02);
}

/* Player Identity Section */

.m2-player-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #ffffff;
}

.m2-avatar-circle {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1px solid #333;
    background: #1a1a1a;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.5);
}

.m2-txt-jinno {
    color: #3498db !important;
}

.m2-txt-shinsoo {
    color: #e74c3c !important;
}

.m2-txt-chunjo {
    color: #f1c40f !important;
}

/* Stats Columns */

.m2-stats-align-right {
    text-align: right;
    font-variant-numeric: tabular-nums;
}

.m2-val-level {
    color: #2ecc71;
    font-weight: 500;
}

.m2-val-divider {
    color: #444;
    padding: 0 6px;
}

.m2-val-score {
    color: #ffffff;
}

.m2-row-data:hover {
    background: url(images/table-banner.png) no-repeat;
    background-size: 100% 100%;
    position: relative;
}

.m2-rank-index {
    width: 30px;
    color: #4a4a4a;
}

.table-btm {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-top: 20px;
}

.table-btm img {
    flex: 1;
    width: 100%;
}

.table-btm button {
    background: url(images/btn-bg.png) no-repeat;
    background-size: 100% 100%;
    padding: 10px 30px;
    font-size: 14px;
    font-weight: 700;
    color: var(--whiteColor);
}

.server-tab-content {
    display: none;
}

.server-tab-content.active {
    display: block;
}

.m2-hide-mobile {
    color: #fff;
}

.filter-nav {
    display: flex;
    align-items: center;
}

.filter-nav a {
    font-size: 13px;
    color: #ecf0f1;
    text-align: center;
    filter: drop-shadow(0 0 12px rgba(255, 209, 113, 0.3));
    text-shadow: 0 0 4.5px #09080c;
    font-weight: 700;
    padding-inline: 15px;
    position: relative;
}

.filter-nav a.active::before {
    content: '';
    width: 168px;
    height: 74px;
    background: url(images/active-2.png) no-repeat;
    background-size: 100% 100%;
    position: absolute;
    left: 50%;
    bottom: -21px;
    transform: translateX(-50%);
    pointer-events: none;
}

.accordion-header {
    display: flex;
    align-items: center;
    gap: 20px;
    cursor: pointer;
}

.news-header-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.news-header-content h4 {
    font-size: 14px;
    color: var(--whiteColor);
    font-weight: 400;
}

.news-header-content h4 span {
    font-weight: 600;
    color: var(--primaryColor);
    text-transform: uppercase;
}

.news-header-content p {
    display: flex;
    align-items: center;
    font-size: 13px;
    color: #353A3A;
    gap: 5px;
}

.news-header-content p span {
    color: var(--whiteColor);
}

.news-header-content p a {
    color: var(--primaryColor);
}

.accordion-content p {
    color: #798784;
    font-size: 13px;
}

.accordion-content {
    padding-top: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.accordion-content p a {
    color: #fff;
    text-decoration: underline;
}

.accordion-content p span {
    color: var(--primaryColor);
}

.news-content-area {
    padding-top: 15px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.accordion-content {
    display: none;
}

.single-news-item.active .accordion-content {
    display: block;
}

.section-four-wrapper {
    display: flex;
    gap: 20px;
    padding-top: 15px;
}

.discord-card {
    width: calc(100% / 3);
    padding: 40px 25px;
    background: url(images/discord-bg.png) no-repeat;
    background-size: 100% 100%;
    padding-left: 9%;
	display: block;
    display: flex;
    flex-direction: column;
    gap: 6px;
    position: relative;
    z-index: 2;
}

.discord-card h4 {
    font-size: 17px;
    color: #fff;
    font-weight: 700;
    filter: drop-shadow(0 0 3.5px rgba(111, 255, 72, 0.39));
    text-shadow: 0px 1px 2px rgba(9, 8, 12, 0.44);
}

.discord-card p {
    font-size: 13px;
    color: #798784;
    font-weight: 400;
    filter: drop-shadow(0px 1px 2px rgba(9, 8, 12, 0.44));
}

.discord-card p a {
    text-decoration: underline;
    color: var(--whiteColor);
}

.discord-card p span {
    color: var(--primaryColor);
}

.discord-card img {
    position: absolute;
    left: -30px;
    bottom: 0;
    max-width: 175px;
}

.rewarded-card {
    flex: 1;
    background: url(images/rewarded-image.png) no-repeat;
    background-size: 100% 100%;
    display: flex;
    align-items: center;
    padding-right: 20px;
}

.rewarded-card .icon {
    max-width: 130px;
}

.rewarded-content {
    flex: 1;
	gap: 5px;
	display: flex;
	flex-direction: column;
}

.rewarded-content h4 {
    font-size: 17px;
    color: #fff;
    font-weight: 700;
    filter: drop-shadow(0 0 3.5px rgba(111, 255, 72, 0.39));
    text-shadow: 0px 1px 2px rgba(9, 8, 12, 0.44);
}

.rewarded-content p {
    font-size: 13px;
    color: #798784;
	margin-right: 15px;
    font-weight: 400;
    filter: drop-shadow(0px 1px 2px rgba(9, 8, 12, 0.44));
}

.rewarded-content p a {
    text-decoration: underline;
    color: var(--whiteColor);
}

.rewarded-content p span {
    color: var(--primaryColor);
}

.rewarded-card .vote-now-btn a {
    padding: 10px 30px;
    font-size: 12px;
}

/*========= footer area start hare ========= */

.footer-area {
    padding-block: 20px;
    background: #09080F;
}

.footer-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.copyright p {
    font-size: 13px;
    color: #798784;
    font-weight: 400;
}

.copyright p span {
    color: var(--whiteColor);
}

.copyright p a {
    color: var(--primaryColor);
}

.footer-wrapper .lang-dropdown-menu {
    bottom: calc(100% + 5px);
    top: unset;
}

.footer-right {
    display: flex;
    align-items: center;
    gap: 30px;
}

.footer-right a {
    font-size: 13px;
    color: #e7ebef;
    font-weight: 700;
    filter: drop-shadow(0 0 4.5px #09080c);
    text-shadow: 0 0 1.5px #09080c;
}

.section-top-ractangle {
    flex: 1;
}

.table-btm-ractanlge {
    flex: 1;
}
/* --- NOWOCZESNY GAMING UI (Dodatki) --- */
:root {
    --glass-bg: rgba(15, 21, 23, 0.6);
    --glass-border: rgba(166, 255, 97, 0.2);
    --glow-shadow: 0 0 15px rgba(166, 255, 97, 0.4);
}

/* Nowoczesne karty z Glassmorphismem */
.modern-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 30px;
    transition: 0.3s ease;
}

.modern-card:hover {
    border-color: rgba(166, 255, 97, 0.5);
    box-shadow: var(--glow-shadow);
}

/* Nowoczesny przycisk (zamiast tła z obrazka) */
.modern-btn {
    background: linear-gradient(45deg, #0f1517, #1a2427);
    border: 1px solid var(--primaryColor);
    color: var(--whiteColor);
    padding: 12px 30px;
    border-radius: 6px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: 0.3s all ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.modern-btn:hover {
    background: var(--primaryColor);
    color: var(--blackColor);
    box-shadow: var(--glow-shadow);
    transform: translateY(-2px);
}

/* --- STYLE DLA PODSTRON --- */
.page-header-bg {
    padding: 150px 0 50px;
    background: linear-gradient(to bottom, rgba(0,0,0,0.8), rgba(0,0,0,1)), url('images/hero-bg.jpg') center/cover;
    text-align: center;
}

.page-title {
    font-family: var(--friz-quadrata);
    font-size: 42px;
    color: var(--primaryColor);
    text-shadow: 0 0 10px rgba(166, 255, 97, 0.5);
    margin-bottom: 15px;
}

.page-subtitle {
    color: #9A9EA2;
    font-size: 16px;
}
/* =========================================
   HOVER EFFECTS FOR IMAGE BUTTONS
========================================= */

/* Upewniamy się, że przyciski mają płynne przejście (animację) */
.vote-now-btn a,
.form-actions button,
.table-btm button,
.hero-actions .download-btn {
    transition: all 0.3s ease-in-out !important;
    cursor: pointer;
    position: relative;
}

/* Efekt po najechaniu myszką (Hover) */
.vote-now-btn a:hover,
.form-actions button:hover,
.table-btm button:hover {
    /* Rozjaśnia obrazek tła o 15% i dodaje zielony glow (poświatę) */
    filter: brightness(1.15) drop-shadow(0px 0px 12px rgba(166, 255, 97, 0.4));
    
    /* Unosi przycisk lekko do góry */
    transform: translateY(-2px);
    
    /* Zmienia kolor tekstu na główny zielony z palety */
    color: var(--primaryColor);
}

/* Mocniejszy i bardziej epicki efekt dla głównego przycisku DOWNLOAD na górze strony */
.hero-actions .download-btn:hover {
    transform: translateY(-3px) scale(1.03);
    filter: brightness(1.2) drop-shadow(0px 0px 20px rgba(166, 255, 97, 0.6));
    color: var(--primaryColor);
}

/* Efekt wciśnięcia przycisku (Click) */
.vote-now-btn a:active,
.form-actions button:active,
.table-btm button:active,
.hero-actions .download-btn:active {
    transform: translateY(1px);
    filter: brightness(0.9) drop-shadow(0px 0px 5px rgba(166, 255, 97, 0.2));
}

/* =========================================
   UNIVERSAL FLAT RED BUTTON (np. Logout)
========================================= */

.btn-flat-red {
    background-color: #d6303138; /* Płaski, nasycony czerwony */
    color: #ffffff !important;
    border: 1px solid #d63031;
    padding: 8px 25px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease-in-out;
    text-decoration: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3); /* Lekki bazowy cień dla głębi */
}

.btn-flat-red:hover {
    background-color: #d6303091; /* Jaśniejsza, agresywniejsza czerwień przy najeździe */
    border-color: #ff4757;
    color: #ffffff !important;
    box-shadow: 0 0 18px rgba(255, 71, 87, 0.6); /* Mocny czerwony Glow */
    transform: translateY(-2px); /* Lekkie uniesienie */
    text-decoration: none;
}

.btn-flat-red:active {
    background-color: #b33939; /* Ciemniejszy przy wciśnięciu kliknięciem */
    border-color: #b33939;
    box-shadow: 0 0 8px rgba(214, 48, 49, 0.4);
    transform: translateY(1px); /* Wciśnięcie */
}
/* ===== PHP Integration Additions ===== */

/* Ranking rank colors */
.rank-1-index { color: #FFD700; font-size: 18px; font-weight: bold; text-shadow: 0 0 5px rgba(255, 215, 0, 0.5); }
.rank-1-avatar { border-color: #FFD700 !important; color: #FFD700 !important; font-weight: bold; }
.rank-1-text { color: #FFD700 !important; font-weight: bold; }
.rank-2-index { color: #C0C0C0; font-size: 16px; font-weight: bold; }
.rank-2-avatar { border-color: #C0C0C0 !important; color: #C0C0C0 !important; font-weight: bold; }
.rank-2-text { color: #C0C0C0 !important; font-weight: bold; }
.rank-3-index { color: #cd7f32; font-size: 16px; font-weight: bold; }
.rank-3-avatar { border-color: #cd7f32 !important; color: #cd7f32 !important; font-weight: bold; }
.rank-3-text { color: #cd7f32 !important; font-weight: bold; }
.txt-primary { color: var(--primaryColor) !important; }

/* Kingdom colors */
.m2-txt-jinno { color: #FFD700; }
.m2-txt-chunjo { color: #e74c3c; }
.m2-txt-shinsoo { color: #3498db; }

/* Stat hex filter */
.stat-hex { filter: hue-rotate(69deg) contrast(1.2); }

/* Nice-select for language - simple version */
.lan-select select { cursor: pointer; }

/* Pagination links from paginate class (outputs: div.pagination > div.buttons > a + span.active) */
.pagination { display: flex; justify-content: center; margin-top: 20px; }
.pagination .buttons { display: flex; gap: 4px; flex-wrap: wrap; justify-content: center; }
.pagination .buttons a,
.pagination .buttons span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    padding: 8px 12px;
    background: rgba(0,0,0,0.4);
    border: 1px solid rgba(255,255,255,0.05);
    color: #798784;
    font-size: 13px;
    font-weight: bold;
    text-decoration: none;
    transition: 0.3s;
    border-radius: 3px;
}
.pagination .buttons a:hover { background: rgba(166,255,97,0.05); color: #fff; border-color: rgba(166,255,97,0.3); text-decoration: none; }
.pagination .buttons span.active { background: url('images/btn-bg.png') no-repeat center/100% 100%; color: #fff; border-color: transparent; }

/* Alert styles */
.alert { padding: 15px; border-radius: 4px; margin-bottom: 15px; }
.alert-danger { background: rgba(231,76,60,0.1); border: 1px solid rgba(231,76,60,0.3); color: #e74c3c; }
.alert-success { background: rgba(46,204,113,0.1); border: 1px solid rgba(46,204,113,0.3); color: #2ecc71; }
.alert-info { background: rgba(52,152,219,0.1); border: 1px solid rgba(52,152,219,0.3); color: #3498db; }
.alert-warning { background: rgba(243,156,18,0.1); border: 1px solid rgba(243,156,18,0.3); color: #f39c12; }

/* Table rows from paginate (for players/guilds) */
.m2-table-root .m2-row-data td { padding: 10px 12px; border-bottom: 1px solid rgba(255,255,255,0.04); color: #a1ada8; font-size: 13px; }
.m2-table-root .m2-row-data:hover td { background: rgba(166,255,97,0.03); }
.m2-table-root .m2-row-data:last-child td { border-bottom: none; }

/* Form btn flat red for logout in header */
.btn-flat-red-header {
    background: rgba(231, 76, 60, 0.1);
    border: 1px solid rgba(231, 76, 60, 0.3);
    color: #e74c3c;
    padding: 8px 20px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 13px;
    display: flex;
    align-items: center;
    transition: 0.3s;
    text-decoration: none;
}
.btn-flat-red-header:hover { background: #e74c3c; color: #fff; border-color: #e74c3c; text-decoration: none; }

/* Subpage layout background */
.part-two { background: url('images/bg.png') no-repeat top center; background-size: cover; min-height: 100vh; }

/* Add news form (admin) */
.add-news-form { background: rgba(0,0,0,0.4); border: 1px solid rgba(255,255,255,0.05); padding: 20px; margin-bottom: 20px; border-radius: 4px; }
.add-news-form input, .add-news-form textarea, .add-news-form select { background: #0F1517; border: 1px solid rgba(255,255,255,0.05); color: #fff; padding: 10px 15px; width: 100%; margin-bottom: 10px; border-radius: 3px; }
.add-news-form button { background: url('images/btn-bg.png') no-repeat center/100% 100%; color: #fff; font-weight: bold; border: none; padding: 12px 30px; cursor: pointer; }

/* Read-more link in news */
.news-content-area a { color: var(--primaryColor); }
.news-content-area .accordion-content a { color: var(--primaryColor); text-decoration: none; }
.news-content-area .accordion-content a:hover { text-decoration: underline; }

/* News item active state */
.single-news-item.active .accordion-header { background: rgba(166,255,97,0.03); }

/* lang select */
.lan-select { position: relative; }
.lan-select select { background: rgba(0,0,0,0.5); border: 1px solid rgba(255,255,255,0.1); color: #fff; padding: 6px 30px 6px 10px; border-radius: 4px; font-size: 12px; }
.lan-select select option { background: #0F1517; color: #fff; }

/* Table rows generated by paginate class (no m2-row-data class) */
.m2-table-root tbody tr td,
.m2-table-root tbody tr th {
    padding: 10px 15px;
    font-size: 14px;
    vertical-align: middle;
    border-bottom: 1px solid rgba(255, 255, 255, 0.02);
    color: #a1ada8;
}
.m2-table-root tbody tr:hover td,
.m2-table-root tbody tr:hover th {
    background: rgba(166, 255, 97, 0.02);
}

/* News paginate output classes */
.content-xy {
    background: rgba(0,0,0,0.3);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 4px;
    margin-bottom: 15px;
    padding: 20px;
}
.xy-title {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
    display: block;
}
.xy-text-cont {
    color: #a1ada8;
    font-size: 13px;
    line-height: 1.6;
}
/* News xy-title layout */
.xy-title { display: flex; justify-content: space-between; align-items: flex-start; flex-wrap: wrap; gap: 10px; margin-bottom: 12px; }
.xy-title .left { flex: 1; }
.xy-title .left h3 { margin: 0; font-size: 16px; font-weight: 700; color: #fff; }
.xy-title .left h3 a { color: #fff; text-decoration: none; }
.xy-title .left h3 a:hover { color: var(--primaryColor); }
.xy-title .right { flex-shrink: 0; }
ul.xy { list-style: none; margin: 0; padding: 0; display: flex; gap: 10px; }
ul.xy li { font-size: 12px; color: #798784; }

.xy-read-more {
    display: inline-block;
    margin-top: 10px;
    color: var(--primaryColor);
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 1px;
}
.xy-read-more:hover { text-decoration: underline; color: var(--primaryColor); }

/* Old CMS classes for pages not yet fully migrated */
.page-hd {
    background: rgba(0,0,0,0.4);
    border: 1px solid rgba(255,255,255,0.05);
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 4px;
}
.bd-c { color: #a1ada8; }
.pre-social { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 15px; }
.pre-social a { color: var(--primaryColor); text-decoration: none; font-size: 13px; }
.padding-container { padding: 20px; }
.mt2cms2-c-l { color: #a1ada8; font-size: 13px; }

/* News read page classes */
.post { background: rgba(0,0,0,0.3); border: 1px solid rgba(255,255,255,0.05); border-radius: 4px; padding: 25px; }
.post_title { font-size: 20px; font-weight: 700; color: #fff; margin-bottom: 15px; display: block; }
.post_content { color: #a1ada8; font-size: 14px; line-height: 1.7; }
.post_date { font-size: 12px; color: #798784; margin-bottom: 10px; display: block; }

/* Jumbotron compat (Bootstrap 4 → 5) */
.jumbotron {
    background: rgba(0,0,0,0.3);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 4px;
    padding: 30px;
    margin-bottom: 20px;
}

/* Vote4coins page */
.thead-inverse th { color: #a1ada8; background: rgba(0,0,0,0.5); }
.table-dark th, .table-dark td { color: #a1ada8; background: rgba(15,21,23,0.8); border-color: rgba(255,255,255,0.05); }
.table-striped tbody tr:nth-of-type(odd) { background: rgba(255,255,255,0.02); }
.table { width: 100%; border-collapse: collapse; }
.table th, .table td { padding: 10px 12px; border-bottom: 1px solid rgba(255,255,255,0.05); color: #a1ada8; font-size: 13px; }
.table thead th { color: #a1ada8; font-weight: 600; border-bottom: 1px solid rgba(255,255,255,0.1); }

/* Generic form styles for unmigrated pages */
.input-group { display: flex; }
.input-group input { flex: 1; }
.input-group-append .btn, .input-group-prepend .btn { border-radius: 0; }
.btn { display: inline-flex; align-items: center; justify-content: center; padding: 8px 20px; font-size: 13px; font-weight: 700; border-radius: 4px; cursor: pointer; border: none; transition: 0.3s; text-decoration: none; }
.btn-success { background: rgba(166,255,97,0.1); color: var(--primaryColor); border: 1px solid rgba(166,255,97,0.3); }
.btn-success:hover { background: rgba(166,255,97,0.2); color: var(--primaryColor); }
.btn-danger { background: rgba(231,76,60,0.1); color: #e74c3c; border: 1px solid rgba(231,76,60,0.3); }
.btn-danger:hover { background: #e74c3c; color: #fff; }
.btn-primary { background: rgba(52,152,219,0.1); color: #3498db; border: 1px solid rgba(52,152,219,0.3); }
.btn-primary:hover { background: #3498db; color: #fff; }
.btn-warning { background: rgba(243,156,18,0.1); color: #f39c12; border: 1px solid rgba(243,156,18,0.3); }
.btn-warning:hover { background: #f39c12; color: #fff; }
.btn-info { background: rgba(52,152,219,0.1); color: #3498db; border: 1px solid rgba(52,152,219,0.3); }
.btn-info:hover { background: #3498db; color: #fff; }
.btn-sm { padding: 5px 12px; font-size: 11px; }
.btn-lg { padding: 12px 30px; font-size: 15px; }

/* Utility classes */
.text-center { text-align: center !important; }
.text-right { text-align: right !important; }
.text-left { text-align: left !important; }
.text-danger { color: #e74c3c !important; }
.text-success { color: #2ecc71 !important; }
.text-muted { color: #798784 !important; }
.d-flex { display: flex !important; }
.align-items-center { align-items: center !important; }
.justify-content-center { justify-content: center !important; }
.justify-content-between { justify-content: space-between !important; }
.gap-4 { gap: 1rem !important; }
.mt-4 { margin-top: 1.5rem !important; }
.mb-0 { margin-bottom: 0 !important; }
.d-none { display: none !important; }
.d-md-block { display: none !important; }
@media (min-width: 768px) { .d-md-block { display: block !important; } }
