@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: #D90000;
    --whiteColor: #fff;
    --blackColor: #000;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--open-sens);
    font-size: 16px;
    font-weight: 400;
    background: transparent !important;
    color: #333333;
	padding: 0 !important;
    
    /* Custom Arkanis2 Cursor */
    cursor: url('images/sword.png') 4 4, auto;
}

/* Also apply to interactive elements for consistency */
a, button, input, select, .btn-primary, .btn-danger {
    cursor: url('images/sword.png') 4 4, pointer;
}

.stat-hex{
	    filter: hue-rotate(0deg) 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: 90px;
}

.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: 40px;
    justify-content: center;
}

.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: -24px;
    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;
}

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

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

.hero-area {
    position: relative;
    z-index: 2;
    margin-top: 0; /* Adjusted for continuous background */
}

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

.hero-bg::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: transparent; /* Canvas 3D remplace ce fond */
    pointer-events: none;
}

.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: center;
    justify-content: center;
    padding-top: 100px;
    gap: 40px;
    padding-bottom: 50px;
}

.hero-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-bottom: 20px;
}

.hero-logo img {
    max-width: 650px;
    width: 100%;
    object-fit: contain;
    /* Removed mix-blend-mode for the clean transparent image */
}

.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;
}

.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: transparent !important;
    padding-bottom: 6%;
}

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

.vote-area {
    margin-top: 0; /* Adjusted for continuous background */
    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(217, 0, 0, 0.39));
}

.vote-btm-left p {
    font-size: 14px;
    color: #fff;
    font-weight: 400;
    filter: drop-shadow(0 0 3.5px rgba(217, 0, 0, 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(179, 0, 0, 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 #8B0000;
}

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

.custom-checkbox {
    width: 22px;
    height: 20px;
    filter: drop-shadow(0px 1px 0px rgba(179, 0, 0, 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: #D90000;
}

.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(217, 0, 0, 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(217, 0, 0, 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: #3a3f3c !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(217, 0, 0, 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(217, 0, 0, 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(217, 0, 0, 0.2);
    --glow-shadow: 0 0 15px rgba(217, 0, 0, 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(217, 0, 0, 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(217, 0, 0, 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(217, 0, 0, 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(217, 0, 0, 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(217, 0, 0, 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: #D90000;
    color: #ffffff !important;
    box-shadow: 0 0 18px rgba(217, 0, 0, 0.6); /* Mocny czerwony Glow */
    transform: translateY(-2px); /* Lekkie uniesienie */
    text-decoration: none;
}

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

/* =========================================
   MARQUEE BANNER
========================================= */
.marquee-banner {
    width: 100%;
    background-color: #0b0f12;
    border-top: 1px solid #1c2128;
    border-bottom: 2px solid #5a0a0a;
    overflow: hidden;
    padding: 15px 0;
    position: relative;
    white-space: nowrap;
    margin-top: 15px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.6);
    display: flex;
}

.marquee-content {
    display: inline-block;
    white-space: nowrap;
    animation: marqueeRoll 120s linear infinite;
    padding-left: 0;
    will-change: transform;
}

.marquee-content span {
    font-family: Arial, sans-serif;
    font-size: 16px;
    font-weight: 900;
    font-style: italic;
    letter-spacing: 5px;
    text-transform: uppercase;
    padding-right: 20px;
    
    /* Fire/Red Glow Effect */
    color: #ffcccc;
    text-shadow: 
        0 0 5px #ff0000, 
        0 0 10px #ff0000, 
        0 0 20px #ff0000, 
        0 0 40px #cc0000;
    animation: pulseFire 1.5s infinite alternate;
}

@keyframes pulseFire {
    0% {
        text-shadow: 0 0 5px #ff0000, 0 0 10px #ff0000, 0 0 15px #ff0000, 0 0 25px #cc0000;
        color: #ffb3b3;
    }
    100% {
        text-shadow: 0 0 8px #ff0000, 0 0 15px #ff4500, 0 0 25px #ff0000, 0 0 40px #cc0000;
        color: #ffffff;
    }
}

@keyframes marqueeRoll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.marquee-banner:hover .marquee-content {
    animation-play-state: paused;
}
