@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');

/* ===== RESET & SCROLLBAR ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-thumb {
    background-color: #e74c3c;
    border-radius: 3px;
}

::-webkit-scrollbar-track {
    background: #0d0d0d;
}

/* ===== GLOBAL ===== */
body {
    background-color: var(--bodyBackground, #121212);
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
    color: var(--textColor, #cecece);
}

.row--center {
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 1600px) {
    .container, .container-lg, .container-md,
    .container-sm, .container-xl, .container-xxl {
        max-width: 1320px;
    }
}

/* ===== ANNOUNCEMENT TICKER BAR ===== */
.ticker-bar {
    background: #0a0a0a;
    overflow: hidden;
    white-space: nowrap;
    padding: 10px 0;
    border-bottom: 1px solid #1a1a1a;
}

.ticker-bar__track {
    display: inline-flex;
    animation: ticker-scroll 40s linear infinite;
}

.ticker-bar__item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0 50px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #888;
}

.ticker-bar__item strong {
    color: #e74c3c;
}

.ticker-bar__dot {
    width: 4px;
    height: 4px;
    background: #444;
    border-radius: 50%;
}

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

/* ===== NAVBAR ===== */
.navbar {
    background: #fff;
    padding: 0 5%;
    height: 65px;
    display: flex;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #eaeaea;
    margin-bottom: 0;
}

.navbar-nav {
    margin-left: auto;
    align-items: center;
    gap: 0;
}

.navbar-brand {
    color: #111 !important;
    letter-spacing: 1.5px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 800;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 10px;
}

.navbar-brand img.navbar-logo {
    width: 28px;
    height: 28px;
    border-radius: 4px;
    object-fit: cover;
}

.navbar-brand:hover {
    color: #111 !important;
}

.navbar-expand-lg .navbar-nav .nav-link {
    padding: 22px 20px;
    color: #666;
    font-weight: 700;
    letter-spacing: 0.5px;
    font-size: 12px;
    text-transform: uppercase;
    transition: color 0.2s;
    text-decoration: none;
}

.navbar-expand-lg .navbar-nav .nav-link:hover {
    color: #111;
}

.navbar-expand-lg .navbar-nav .active {
    color: #e83e8c !important;
}

.nav-link--icon {
    padding: 22px 12px !important;
    font-size: 18px;
}

.navbar .fa-bars {
    color: #fff !important;
    font-size: 22px;
}

.navbar span {
    color: #fff;
}

/* Nav cart pill */
.nav-cart-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 50px;
    padding: 8px 20px;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    font-size: 12px;
    margin: 0 10px;
    transition: background 0.2s;
}

.nav-cart-pill:hover {
    background: #252525;
    color: #fff;
}

.nav-cart-pill i {
    color: #e74c3c;
}

.navbar--transparent {
    background: transparent;
}

.header-content-online {
    animation: pulse-green 3s linear infinite;
    border-radius: 100%;
    margin-right: 8px;
    margin-bottom: 3px;
}

@keyframes pulse-green {
    0% { box-shadow: 0 0 0 0 #67e872af; transform: scale(0.7); }
    40% { box-shadow: 0 0 0 10px transparent; transform: scale(0.9); }
    80% { box-shadow: 0 0 0 10px transparent, 0 0 0 10px transparent; transform: scale(0.8); }
    100% { box-shadow: 0 0 0 0 transparent, 0 0 0 10px transparent; transform: scale(0.7); }
}


/* ===== HERO SECTION ===== */
.hero {
    background: #fff;
    padding: 80px 7% 60px;
    position: relative;
    overflow: hidden;
    min-height: 500px;
}

.hero__inner {
    max-width: 1320px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.hero__left {
    flex: 0 0 50%;
    padding-bottom: 0;
    margin-top: -60px;
    z-index: 2;
}

.hero__title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 110px;
    font-weight: 800;
    font-style: normal;
    color: #111;
    line-height: 0.95;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.hero__desc {
    font-size: 15px;
    color: #555;
    max-width: 440px;
    margin-bottom: 35px;
    line-height: 1.7;
}

.hero__buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.hero__btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    font-weight: 800;
    font-size: 12px;
    text-decoration: none;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.25s ease;
    cursor: pointer;
    border: 2px solid #111;
}

.hero__btn--dark {
    background: #111;
    color: #fff;
    border-color: #111;
}

.hero__btn--dark:hover {
    background: #333;
    border-color: #333;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.hero__btn--outline {
    background: transparent;
    color: #111;
    border-color: #222;
}

.hero__btn--outline:hover {
    background: #111;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.hero__btn i {
    font-size: 14px;
}

/* Right side: character + server info */
.hero__right {
    flex: 0 0 50%;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    position: relative;
    z-index: 1;
}

.hero__character-wrap {
    position: relative;
    display: flex;
    justify-content: center;
    width: 100%;
}

.hero__character {
    max-height: 420px;
    filter: drop-shadow(0 8px 30px rgba(0,0,0,0.12));
    animation: char-float 4s ease-in-out infinite;
    z-index: 1;
}

@keyframes char-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

.hero__server-badge {
    text-align: right;
    margin-top: -20px;
    padding-right: 10px;
    z-index: 2;
}

.hero__server-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 44px;
    font-weight: 800;
    -webkit-text-stroke: 1px #111;
    color: #111;
    line-height: 1;
    letter-spacing: 2px;
}

.hero__online-count {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    margin-top: 8px;
    font-size: 13px;
    color: #666;
    font-weight: 500;
}

.hero__online-dot {
    width: 8px;
    height: 8px;
    background: #00ff2b;
    border-radius: 50%;
    animation: pulse-green 3s linear infinite;
}

/* Stars deco */
.hero__deco {
    position: absolute;
    pointer-events: none;
    z-index: 0;
}

.hero__deco--star-left {
    left: -60px;
    bottom: -30px;
    width: 140px;
    opacity: 0.9;
    transform: rotate(-10deg);
}

.hero__deco--star-right {
    right: -50px;
    top: -10px;
    width: 110px;
    opacity: 0.9;
    transform: rotate(15deg);
}

@media (max-width: 991px) {
    .hero {
        padding: 40px 5% 30px;
        min-height: auto;
    }
    .hero__inner {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .hero__left {
        flex: none;
        width: 100%;
        padding-bottom: 20px;
    }
    .hero__title {
        font-size: 52px;
    }
    .hero__desc {
        margin-left: auto;
        margin-right: auto;
    }
    .hero__buttons {
        justify-content: center;
    }
    .hero__right {
        flex: none;
        width: 100%;
        align-items: center;
    }
    .hero__character {
        max-height: 280px;
    }
    .hero__server-badge {
        text-align: center;
        padding-right: 0;
    }
    .hero__server-title {
        font-size: 30px;
    }
    .hero__online-count {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .hero__title {
        font-size: 40px;
    }
}


/* ===== MODES SECTION (WYBIERZ TRYB) ===== */
.modes-section {
    background: #111;
    padding: 70px 7% 80px;
}

.modes-section__inner {
    max-width: 1320px;
    margin: 0 auto;
}

.modes-section__header {
    margin-bottom: 35px;
}

.modes-section__title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 38px;
    color: #fff;
    letter-spacing: 2px;
    margin-bottom: 5px;
}

.modes-section__subtitle {
    color: #666;
    font-size: 13px;
}

.modes-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.mode-card {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 170px;
    padding: 20px;
}

/* Gradient backgrounds for each mode */
.mode-card--lifesteal {
    background: linear-gradient(135deg, #f5a623 0%, #d4780a 100%);
}

.mode-card--skypvp {
    background: linear-gradient(135deg, #a8a8a8 0%, #787878 100%);
}

.mode-card--boxpvp {
    background: linear-gradient(135deg, #e74c3c 0%, #a233c7 100%);
}

.mode-card--gunpvp {
    background: linear-gradient(135deg, #27ae60 0%, #1e8449 100%);
}

.mode-card--skygen {
    background: linear-gradient(135deg, #f39c12 0%, #c07a0e 100%);
}

.mode-card--kitpvp {
    background: linear-gradient(135deg, #d4780a 0%, #a85e08 100%);
}

.mode-card--practice {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
}

.mode-card--chestpvp {
    background: linear-gradient(135deg, #2ecc71 0%, #27ae60 100%);
}

/* Default gradient */
.mode-card--default {
    background: linear-gradient(135deg, #e8740c 0%, #c95600 100%);
}

.mode-card:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0,0,0,0.4);
}

.mode-card__arrow {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(4px);
    border-radius: 50%;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 10px;
    transition: background 0.3s;
}

.mode-card:hover .mode-card__arrow {
    background: rgba(255,255,255,0.4);
}

.mode-card__img {
    max-width: 80%;
    max-height: 120px;
    object-fit: contain;
    filter: drop-shadow(0 4px 12px rgba(0,0,0,0.3));
    transition: transform 0.35s ease;
}

.mode-card:hover .mode-card__img {
    transform: scale(1.1);
}

@media (max-width: 991px) {
    .modes-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .modes-grid {
        grid-template-columns: 1fr;
    }
}


/* ===== DISCORD BANNER ===== */
.discord-section {
    background: #111;
    padding: 0 7% 70px;
}

.discord-banner {
    max-width: 1320px;
    margin: 0 auto;
    background: linear-gradient(135deg, #2d1117 0%, #1a0a0e 50%, #150a0d 100%);
    border-radius: 18px;
    padding: 45px 55px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.04);
}

.discord-banner::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(ellipse at 20% 50%, rgba(180,40,80,0.12) 0%, transparent 60%);
    pointer-events: none;
}

.discord-banner__left {
    flex: 1;
    z-index: 1;
}

.discord-banner__title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 38px;
    color: #fff;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.discord-banner__desc {
    color: #777;
    font-size: 14px;
    margin-bottom: 25px;
    max-width: 380px;
}

.discord-banner__btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: transparent;
    color: #fff;
    border: 2px solid #333;
    border-radius: 50px;
    font-weight: 800;
    font-size: 12px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.25s ease;
}

.discord-banner__btn:hover {
    background: #fff;
    color: #111;
    border-color: #fff;
    transform: translateY(-2px);
}

.discord-banner__btn i {
    font-size: 16px;
}

.discord-banner__right {
    flex-shrink: 0;
    z-index: 1;
}

.discord-banner__mascot {
    max-height: 200px;
    filter: drop-shadow(0 8px 25px rgba(180,40,80,0.25));
    animation: mascot-bob 5s ease-in-out infinite;
}

@keyframes mascot-bob {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@media (max-width: 768px) {
    .discord-banner {
        flex-direction: column;
        text-align: center;
        padding: 35px 25px;
    }
    .discord-banner__desc {
        margin-left: auto;
        margin-right: auto;
    }
    .discord-banner__mascot {
        max-height: 140px;
        margin-top: 25px;
    }
}


/* ===== FOOTER ===== */
.footer {
    background: #0d0d0d;
    padding: 55px 7% 25px;
    width: 100%;
    margin-top: 0;
    border-top: 1px solid #1a1a1a;
    position: relative;
}

.footer__inner {
    max-width: 1320px;
    margin: 0 auto;
}

.footer__top-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-bottom: 35px;
    border-bottom: 1px solid #1a1a1a;
}

.footer__left-block {}

.footer__social-icons {
    display: flex;
    gap: 16px;
    margin-bottom: 30px;
}

.footer__social-icons a {
    color: #fff;
    font-size: 18px;
    transition: color 0.2s, transform 0.2s;
    text-decoration: none;
}

.footer__social-icons a:hover {
    color: #e74c3c;
    transform: translateY(-2px);
}

.footer__columns {
    display: flex;
    gap: 70px;
}

.footer__col h4 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 18px;
    color: #fff;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.footer__col a {
    display: block;
    color: #666;
    text-decoration: none;
    font-size: 13px;
    margin-bottom: 6px;
    transition: color 0.2s;
}

.footer__col a:hover {
    color: #fff;
}

.footer__right-block {
    display: flex;
    align-items: flex-start;
    padding-top: 5px;
}

.footer__online-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #666;
    font-size: 13px;
    font-weight: 500;
}

.footer__online-dot {
    width: 8px;
    height: 8px;
    background: #00ff2b;
    border-radius: 50%;
    animation: pulse-green 3s linear infinite;
}

/* Footer bottom - copyright & SpaceIs */
.footer__bottom-row {
    padding-top: 20px;
}

.footer__h3 {
    font-size: 11px;
    color: #444;
    font-weight: 400;
    margin: 0;
    line-height: 1.7;
}

.footer__info {
    opacity: 0.7;
}

.footer__spaceis {
    font-size: 11px;
    color: #444;
    margin-top: 6px;
    display: flex;
    align-items: center;
    float: none;
}

.footer__spaceis__img {
    width: 80px;
    margin-left: 8px;
    opacity: 0.5;
    transition: 0.3s;
    content: var(--spaceisLogo);
}

.footer__spaceis__img:hover {
    opacity: 1;
}

.footer__a {
    color: #444;
    text-decoration: none;
}

.footer__a:hover {
    color: #fff;
}

@media (max-width: 991px) {
    .footer__top-row {
        flex-direction: column;
        gap: 25px;
    }
    .footer__columns {
        gap: 40px;
        flex-wrap: wrap;
    }
}

@media (max-width: 422px) {
    .footer__spaceis__img {
        margin-top: 8px;
        margin-left: 0;
        display: block;
    }
    .footer__spaceis {
        flex-direction: column;
        align-items: flex-start;
    }
}


/* ===== HEADER (shop/subpages) ===== */
.header {
    background: var(--headerBackground);
    display: var(--headerDisplay);
}

.header__content {
    padding: 8% 0%;
}

.header__content__h1 {
    color: var(--titleColor);
    font-size: 50px;
    font-weight: 600;
}

.header__content__p {
    color: var(--textColor);
    font-size: 18px;
    margin-bottom: 80px;
    max-width: 800px;
}

.header__content__btn {
    background-color: var(--specialElement);
    text-decoration: none;
    padding: 20px 70px;
    color: var(--buttonTextColor);
    transition: .3s;
    font-weight: 600;
    display: inline-block;
    border-radius: var(--borderRadius);
}

.header__content__btn:hover {
    color: var(--buttonTextColor);
    background-color: var(--specialElementTwo);
}

@media (max-width: 991px) {
    .header__content__btn {
        padding: 15px 40px;
    }
}


/* ===== SERVERS (fallback) ===== */
.servers {
    padding-top: 60px;
}

.servers__card {
    background-color: var(--secondBackgroundColor);
    padding: 30px;
    text-align: center;
    margin-bottom: 20px;
}

.servers__card__img {
    max-width: 160px;
    max-height: 160px;
    margin-bottom: 40px;
}

.servers__card__h3 {
    font-size: 24px;
    color: var(--titleColor);
    margin-bottom: 20px;
    font-weight: 600;
}

.servers__card__btn {
    background-color: #198754;
    text-decoration: none;
    padding: 10px 50px;
    color: var(--buttonTextColor);
    transition: .3s;
    font-weight: 600;
    border: 0;
    border-radius: var(--borderRadius);
}

.servers__card__btn:hover {
    color: var(--buttonTextColor);
    background-color: var(--specialElementTwo);
}


/* ===== SHOP ===== */
.shop {
    padding-top: 60px;
}

.shop__card {
    background-color: var(--secondBackgroundColor);
    padding: 30px;
    text-align: center;
    margin-bottom: 20px;
}

.shop__card__img {
    max-height: 160px;
    max-width: 160px;
    margin-bottom: 20px;
}

.shop__card__h3 {
    color: var(--titleColor);
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 10px;
}

.shop__card__description {
    height: 68px;
    overflow-y: auto;
    margin-bottom: 20px;
}

.shop__card__description__p {
    color: var(--textColor);
    font-size: 15px;
    margin-bottom: 0;
}

.shop__card__span {
    background-color: var(--spanBackgroundColor);
    color: var(--secondBackgroundColor);
    font-weight: 600;
    padding: 2px 8px;
    font-size: 14px;
    margin-bottom: 20px;
    display: inline-block;
}

.shop__card__btn {
    background-color: #198754;
    text-decoration: none;
    padding: 10px 50px;
    color: var(--buttonTextColor);
    transition: .3s;
    font-weight: 600;
    border: 0;
    display: inline-block;
    margin: auto;
    border-radius: var(--borderRadius);
}

.shop__card__btn:hover {
    color: var(--buttonTextColor);
    background-color: var(--specialElementTwo);
}

.shop__last__btn {
    background-color: #198754;
    text-decoration: none;
    padding: 10px 50px;
    color: var(--buttonTextColor);
    transition: .3s;
    font-weight: 600;
    border: 0;
    display: table;
    margin: auto;
    margin-bottom: 50px;
    border-radius: var(--borderRadius);
}

.shop__last__btn:hover {
    color: var(--buttonTextColor);
    background-color: var(--specialElementTwo);
}

.shop__last__h3 {
    font-size: 24px;
    color: var(--titleColor);
    text-align: center;
    font-weight: 600;
    margin-bottom: 20px;
}

.shop__last__card {
    width: 100%;
    background-color: var(--secondBackgroundColor);
    padding: 20px;
    margin-bottom: 20px;
    display: flex;
    padding-left: 40px;
}

.shop__last__card__left { width: 25%; }
.shop__last__card__right { width: 75%; }

.shop__last__card__right__h4 {
    font-size: 16px;
    margin-bottom: 0;
    color: var(--titleColor);
    font-weight: 600;
}

.shop__last__card__right__h5 {
    font-size: 14px;
    margin-bottom: 0;
    color: var(--textColor);
}

.shop__last__card__right__h6 {
    font-size: 14px;
    margin-bottom: 0;
    color: var(--textColor);
}

.shop__last__card__left__img {
    display: block;
    margin-top: 4px;
}

@media (max-width: 1400px) {
    .shop__last__card__left { width: 35%; }
    .shop__last__card__right { width: 65%; }
}

@media (max-width: 1200px) {
    .shop__last__card__left { width: 10%; }
    .shop__last__card__right { width: 90%; }
}

@media (max-width: 767px) {
    .shop__last__card__left { width: 20%; }
    .shop__last__card__right { width: 80%; }
}


/* ===== TOS ===== */
.tos {
    margin-top: 100px;
}

.tos__card {
    margin-top: 60px;
}

.tos__card h5 {
    color: var(--specialElement);
    font-size: 30px;
    margin-bottom: 10px;
    font-weight: 600;
}

.tos__card h6 {
    color: var(--textColor);
    opacity: 0.6;
    margin-bottom: 22px;
}

.tos__card p {
    color: var(--textColor);
    margin-bottom: 15px;
    font-size: 16px;
}


/* ===== VOUCHER ===== */
.voucher {
    margin-top: 100px;
}

.voucher__h3 {
    font-size: 35px;
    margin-bottom: 60px;
    color: var(--titleColor);
    font-weight: 600;
}

.voucher__content__h5 {
    margin-top: 20px;
    font-size: 20px;
}

.voucher__content__input {
    height: 50px;
    background-color: var(--secondBackgroundColor);
    border: 0;
    outline: 0;
    color: var(--titleColor);
    padding-left: 10px;
    margin-bottom: 20px;
    width: 500px;
    border-radius: var(--borderRadius);
}

.voucher__content__input:active,
.voucher__content__input:focus {
    background-color: var(--secondBackgroundColor);
    color: var(--titleColor);
    outline: none;
    box-shadow: none;
}

.voucher__content__btn {
    background-color: var(--specialElement);
    text-decoration: none;
    padding: 10px 60px;
    color: var(--buttonTextColor);
    transition: .3s;
    font-weight: 600;
    border: 0;
    display: block;
    margin-bottom: 50px;
    border-radius: var(--borderRadius);
}

.voucher__content__btn:hover {
    background-color: var(--specialElementTwo);
}


/* ===== PAYMENTS ===== */
.payments {
    margin-top: 100px;
}

.payments__content__product {
    background-color: var(--secondBackgroundColor);
    padding: 40px;
    min-height: 700px;
    margin-right: 30px;
    border-radius: var(--borderRadius);
}

.payments__content__label {
    color: var(--textColor);
    font-size: 14px;
    display: block;
    margin-bottom: 10px;
}

.payments__content__label__question {
    margin-right: 8px;
    color: var(--specialElementTwo);
}

.payments__content__product__item {
    text-align: center;
}

.payments__content__product__item__img {
    max-width: 200px;
    max-height: 200px;
}

.payments__content__product__description {
    max-height: 200px;
    min-height: 200px;
    overflow-y: auto;
    padding-right: 10px;
}

.payments__content__product__h3 {
    color: var(--titleColor);
    margin-bottom: 20px;
    margin-top: 40px;
    font-size: 24px;
    text-align: center;
    font-weight: 600;
}

.payments__content__product__description__p {
    color: var(--textColor);
    font-size: 16px;
}

.payments__content__code {
    margin-top: 20px;
}

.payments__content__code__input {
    height: 50px;
    background-color: var(--bodyBackground);
    border-radius: var(--borderRadius);
    border: 0;
    outline: 0;
    color: var(--titleColor);
    padding-left: 10px;
    width: 80%;
    float: left;
}

.payments__content__code__input:active,
.payments__content__code__input:focus {
    background-color: var(--bodyBackground);
    color: var(--titleColor);
    outline: none;
    box-shadow: none;
}

.payments__content__code__btn {
    background-color: var(--bodyBackground);
    color: var(--titleColor) !important;
    width: 50px;
    height: 50px;
    font-size: 16px;
    text-align: center;
    border: 0;
    float: right;
    transition: .3s;
    border-radius: var(--borderRadius);
}

.payments__content__code__btn:hover {
    background-color: var(--specialElement);
}

.payments__content__forms__title__number {
    background-color: var(--secondBackgroundColor);
    width: 50px;
    height: 50px;
    display: block;
    font-size: 20px;
    padding-top: 10px;
    text-align: center;
    color: var(--titleColor);
    border-radius: var(--borderRadius);
    float: left;
    font-weight: 600;
}

.payments__content__forms__title__h3 {
    color: var(--titleColor);
    font-size: 22px;
    padding-left: 20px;
    padding-top: 12px;
    display: inline-block;
}

.payments__content__forms__user {
    margin: 30px 0;
}

.payments__content__forms__user__input {
    height: 50px;
    background-color: var(--secondBackgroundColor);
    border-radius: var(--borderRadius);
    border: 0;
    outline: 0;
    color: var(--titleColor);
    padding-left: 10px;
    width: 100%;
}

.payments__content__forms__user__input:active,
.payments__content__forms__user__input:focus {
    background-color: var(--secondBackgroundColor);
    color: var(--titleColor);
    outline: none;
    box-shadow: none;
}

.payments__content__forms__method {
    margin: 30px 0;
}

.payments__content__forms__method__card {
    text-align: center;
    background-color: var(--secondBackgroundColor);
    padding: 25px 0;
    min-width: 120px;
    max-width: 410px;
    border: 2px solid var(--secondBackgroundColor);
    transition: .3s;
    border-radius: var(--borderRadius);
    margin-bottom: 10px;
}

.payments__content__forms__method__card:hover {
    border: 2px solid var(--paymentsBorder);
}

.payments__content__forms__method .active {
    color: var(--textColor);
    border: 2px solid var(--paymentsBorder);
}

.payments__content__forms__method .active .payments__content__forms__method__card__icon {
    color: var(--specialElement);
}

.payments__content__forms__method__card__icon {
    font-size: 30px;
    color: var(--textColor);
    margin-bottom: 10px;
}

.payments__content__forms__method__card__a {
    color: var(--textColor);
    text-decoration: none;
    display: block;
    margin-bottom: 0;
    font-size: 16px;
}

.payments__content__forms__method__card__p {
    color: var(--textColor);
    display: block;
    margin-bottom: 0;
    margin-top: -4px;
    font-size: 12px;
    font-weight: 600;
}

.payments__content__forms__method__card__a:hover {
    color: var(--textColor);
    text-decoration: none;
}

.payments__content__forms__method .active .payments__content__forms__method__card__a {
    color: var(--specialElement);
}

.payments__content__forms__left {
    float: left;
    color: var(--textColor);
    text-decoration: none;
}

.payments__content__forms__left:hover {
    color: var(--textColor);
}

.payments__content__forms__right {
    float: right;
    color: var(--textColor);
    text-decoration: none;
}

.payments__content__forms__right:hover {
    color: var(--textColor);
}

.payments__content__forms__title--second {
    margin-bottom: 30px;
}

.payments__content__forms__range {
    margin-bottom: 20px;
}

.payments__content__forms__range::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    background: var(--specialElement);
    cursor: pointer;
    outline: none !important;
    box-shadow: none !important;
    border: 0;
    border-radius: var(--borderRadius);
    width: 20px;
    height: 20px;
}

.payments__content__forms__range::-webkit-slider-runnable-track {
    background: var(--secondBackgroundColor);
    height: 12px;
    border-radius: var(--borderRadius);
}

.payments__content__forms__variant__info {
    padding: 12px 0;
    background-color: var(--secondBackgroundColor);
    text-align: center;
    width: 100%;
    margin-bottom: 30px;
    border-radius: var(--borderRadius);
}

.payments__content__forms_price__checkbox:checked {
    background-color: var(--specialElement);
    border-radius: var(--borderRadius);
    outline: none !important;
    box-shadow: none !important;
    border: 2px solid var(--specialElement);
}

.payments__content__forms_price__checkbox:hover,
.payments__content__forms_price__checkbox:active {
    border-radius: var(--borderRadius);
    outline: none !important;
    box-shadow: none !important;
    border: 2px solid var(--specialElement);
}

.payments__content__forms_price__checkbox {
    border-radius: var(--borderRadius) !important;
    background-color: var(--secondBackgroundColor);
    outline: none !important;
    box-shadow: none !important;
    font-size: 20px;
    border: 2px solid var(--specialElement);
}

.payments__content__forms_price a {
    color: var(--titleColor);
    text-decoration: none;
}

.payments__content__forms_price a:hover {
    color: var(--titleColor);
}

.payments__content__forms_price__label {
    margin-top: 4px;
    display: inline-block;
}

.payments__content__forms_price__label_operator {
    margin-top: 4px;
    display: block;
    margin-bottom: 20px;
}

.payments__content__forms__price__info {
    float: left;
    margin-top: 20px;
}

.payments__content__forms_price__btn {
    background-color: var(--specialElement);
    color: var(--buttonTextColor) !important;
    width: 300px;
    font-size: 16px;
    text-align: center;
    border: 0;
    float: right;
    margin-top: 20px;
    padding: 16px 0;
    border-radius: var(--borderRadius);
}

.payments__content__forms_price__btn:hover {
    background-color: var(--specialElementTwo);
}

@media (max-width: 1199px) {
    .payments__content__product {
        margin-bottom: 20px;
    }
}

@media (max-width: 1200px) {
    .navbar-expand-lg .navbar-nav .nav-link {
        padding: 20px 15px;
    }
}

@media (max-width: 991px) {
    .nav-link--icon {
        display: inline-block;
    }
    .payments__content__forms__user__input {
        margin-bottom: 10px;
    }
    .payments__content__forms__method__card {
        max-width: 50%;
        min-width: 150px;
        margin: auto;
        margin-bottom: 20px;
    }
    .payments__content__forms_price__btn {
        float: left;
    }
}

@media (max-width: 440px) {
    .payments__content__forms_price__label {
        width: 90%;
    }
}

/* ===== LIGHT THEME SHOP & PAYMENT REDESIGN ===== */

/* Header Override */
.header {
    background: #ffffff !important;
    background-image: none !important;
    padding: 60px 0 !important;
    border-bottom: 1px solid #eaeaea;
}
.header__content__h1 {
    font-family: 'Poppins', sans-serif !important;
    font-weight: 800 !important;
    font-size: 45px !important;
    color: #111 !important;
    letter-spacing: 0px !important;
    text-shadow: none !important;
}
.header__content__p {
    color: #e83e8c !important; /* pinkish accent like clearmc */
    font-size: 14px !important;
    font-weight: 700 !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 30px !important;
}
.header__content__btn {
    background: #fff !important;
    color: #111 !important;
    border: 2px solid #111 !important;
    border-radius: 50px !important;
    padding: 10px 30px !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    text-transform: none !important;
    letter-spacing: 0 !important;
    box-shadow: none !important;
}
.header__content__btn:hover {
    background: #f8f9fa !important;
    transform: translateY(-2px);
}

/* Backgrounds */
.shop, .payments, .tos {
    background: #fafafa !important;
    padding-top: 60px !important;
    padding-bottom: 80px !important;
}
body {
    background-color: #fafafa !important;
}

/* Cards (Products, Payments, TOS) */
.shop__card, .shop__last__card, .payments__content__product, .payments__content__forms__variant__info {
    background: #fff !important;
    border: 1px solid #eaeaea !important;
    border-radius: 20px !important;
    padding: 30px !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 20px rgba(0,0,0,0.03) !important;
}
.shop__card:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 12px 30px rgba(0,0,0,0.08) !important;
}

/* Logo Sizing Fix */
.shop__card__img, .payments__content__product__item__img {
    max-height: 120px !important;
    max-width: 100% !important;
    object-fit: contain !important;
    margin: 0 auto 20px !important;
    display: block !important;
    filter: none !important;
}

/* Typography in Cards */
.shop__card__h3, .shop__last__h3, .payments__content__product__h3, .payments__content__forms__title__h3, .tos__card h5 {
    font-family: 'Poppins', sans-serif !important;
    font-weight: 800 !important;
    font-size: 26px !important;
    color: #222 !important;
    letter-spacing: 0 !important;
}
.shop__last__h3 { margin-bottom: 25px !important; text-align: left !important; }

.shop__card__description__p, .payments__content__product__description__p, .tos__card p {
    color: #666 !important;
    font-size: 13px !important;
    line-height: 1.6 !important;
    font-weight: 500 !important;
}

/* Kup juz za Span (Pink accent like clearmc) */
.shop__card__span {
    background: transparent !important;
    color: #e83e8c !important;
    border: none !important;
    padding: 0 !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    letter-spacing: 0 !important;
    margin-bottom: 5px !important;
    display: block !important;
}

/* Buttons (White with dark border) */
.shop__card__btn, .shop__last__btn, .payments__content__code__btn, .payments__content__forms_price__btn {
    background: #fff !important;
    color: #111 !important;
    padding: 12px 30px !important;
    border-radius: 50px !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    text-transform: none !important;
    border: 2px solid #111 !important;
    box-shadow: none !important;
    transition: all 0.3s ease !important;
    display: block !important;
    margin: 20px auto 0 !important;
    width: 100% !important;
    max-width: 250px !important;
}
.shop__card__btn:hover, .shop__last__btn:hover, .payments__content__code__btn:hover, .payments__content__forms_price__btn:hover {
    background: #f8f9fa !important;
    transform: translateY(-2px) !important;
}

/* Payment Specifics */
.payments__content__forms__method__card {
    background: #fff !important;
    border: 2px solid #eaeaea !important;
    border-radius: 16px !important;
    transition: all 0.3s ease !important;
}
.payments__content__forms__method .active {
    border-color: #111 !important;
    background: #fafafa !important;
}
.payments__content__forms__method .active .payments__content__forms__method__card__icon {
    color: #111 !important;
}
.payments__content__forms__user__input, .payments__content__code__input {
    background: #fff !important;
    border: 1px solid #ddd !important;
    color: #111 !important;
    border-radius: 12px !important;
    padding: 16px 20px !important;
    font-family: 'Poppins', sans-serif !important;
    font-size: 15px !important;
    transition: border-color 0.3s !important;
}
.payments__content__forms__user__input:focus, .payments__content__code__input:focus {
    border-color: #111 !important;
    outline: none !important;
}
.payments__content__forms__title__number {
    background: #111 !important;
    color: #fff !important;
    border-radius: 12px !important;
    font-family: 'Poppins', sans-serif !important;
    font-weight: 700 !important;
    font-size: 20px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0 !important;
}
