/* =========================
   GLOBAL
========================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #080808;
    color: #ffffff;
    line-height: 1.6;
}

a {
    color: inherit;
}

button,
input {
    font-family: inherit;
}


/* =========================
   NAVBAR
========================= */

.navbar {
    height: 75px;
    padding: 0 7%;

    display: flex;
    align-items: center;
    justify-content: space-between;

    background: #0d0d0d;
    border-bottom: 1px solid #222;

    position: relative;
    z-index: 10;
}

.logo {
    font-size: 20px;
    font-weight: 800;
}

.logo span {
    font-weight: 400;
}

nav {
    display: flex;
    gap: 30px;
}

nav a {
    color: #aaa;
    text-decoration: none;
    transition: 0.2s;
}

nav a:hover {
    color: #ffffff;
}


/* =========================
   HERO
========================= */

.hero {
    min-height: 600px;

    display: flex;
    align-items: center;

    padding: 80px 7%;

    background:
        radial-gradient(
            circle at 70% 40%,
            #252525 0%,
            #080808 50%
        );
}

.hero-content {
    max-width: 700px;
}

.badge {
    display: inline-block;

    padding: 7px 14px;

    border: 1px solid #333;
    border-radius: 30px;

    color: #bbb;

    font-size: 13px;

    margin-bottom: 20px;
}

.hero h1 {
    font-size: clamp(45px, 7vw, 80px);

    line-height: 1.05;

    margin-bottom: 25px;
}

.hero h1 span {
    color: #8b5cf6;
}

.hero-text {
    max-width: 600px;

    color: #aaa;

    font-size: 18px;

    margin-bottom: 35px;
}

.primary-button {
    display: inline-block;

    padding: 14px 25px;

    border-radius: 10px;

    background: #8b5cf6;

    color: #ffffff;

    text-decoration: none;

    font-weight: 700;

    transition: 0.2s;
}

.primary-button:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}


/* =========================
   SECTIONS
========================= */

.section {
    padding: 90px 7%;
}

.section-heading {
    text-align: center;

    margin-bottom: 50px;
}

.small-title {
    color: #8b5cf6;

    font-weight: 700;

    font-size: 13px;

    letter-spacing: 2px;
}

.section-heading h2 {
    font-size: 40px;

    margin: 8px 0;
}

.section-heading p:last-child {
    color: #888;
}


/* =========================
   GAME GRID
========================= */

.game-grid {
    width: 100%;
    max-width: none;

    margin: 0;

    display: grid;

    grid-template-columns:
        repeat(6, minmax(0, 1fr));

    gap: 20px;
}

.game-card {
    background: #111;

    border: 1px solid #242424;

    border-radius: 18px;

    padding: 25px;

    transition:
        transform 0.2s,
        border-color 0.2s;
}

.game-card:hover {
    transform: translateY(-5px);

    border-color: #8b5cf6;
}

.game-icon {
    width: 70px;
    height: 70px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 16px;

    background: #151515;

    overflow: hidden;

    margin-bottom: 20px;
}

.game-icon img {
    width: 100%;
    height: 100%;

    object-fit: contain;
    display: block;
}


.game-info h3 {
    font-size: 22px;
}

.game-info p {
    color: #999;
}

.game-info span {
    display: inline-block;

    margin-top: 10px;

    padding: 4px 10px;

    border-radius: 20px;

    background: #1c1c1c;

    color: #aaa;

    font-size: 12px;
}

.game-button {
    display: block;

    margin-top: 25px;

    text-align: center;

    padding: 12px;

    border-radius: 10px;

    background: #181818;

    color: #ffffff;

    text-decoration: none;

    transition: 0.2s;
}

.game-button:hover {
    background: #8b5cf6;
}


/* =========================
   HOW IT WORKS
========================= */

.how-section {
    background: #0d0d0d;
}

.steps {
    max-width: 1100px;

    margin: auto;

    display: grid;

    grid-template-columns:
        repeat(auto-fit, minmax(200px, 1fr));

    gap: 20px;
}

.step {
    padding: 25px;

    background: #111;

    border: 1px solid #222;

    border-radius: 15px;
}

.step-number {
    width: 40px;
    height: 40px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #8b5cf6;

    font-weight: bold;

    margin-bottom: 15px;
}

.step p {
    color: #888;
}


/* =========================
   FOOTER
========================= */

footer {
    padding: 40px 7%;

    text-align: center;

    background: #050505;

    color: #777;
}

.footer-logo {
    color: #ffffff;

    font-weight: 700;

    margin-bottom: 10px;
}


/* =========================
   GAME PAGE
========================= */

.game-page {
    min-height: 100vh;
}

.game-header {
    max-width: 1100px;

    margin: auto;

    padding: 60px 7% 30px;
}

.back-button {
    display: inline-block;

    color: #999;

    text-decoration: none;

    margin-bottom: 30px;
}

.back-button:hover {
    color: #ffffff;
}

.game-title {
    display: flex;

    align-items: center;

    gap: 20px;
}

.large-game-icon {
    width: 85px;
    height: 85px;
    min-width: 85px;
    min-height: 85px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 20px;
}

.game-title h1 {
    font-size: 42px;

    line-height: 1.1;
}

.game-title p:last-child {
    color: #888;
}


/* =========================
   ORDER
========================= */

.order-container {
    max-width: 850px;

    margin: auto;

    padding: 20px 7% 80px;
}

.order-card {
    background: #101010;

    border: 1px solid #242424;

    border-radius: 18px;

    padding: 25px;

    margin-bottom: 20px;
}

.card-heading {
    display: flex;

    align-items: center;

    gap: 15px;

    margin-bottom: 25px;
}

.card-heading h2 {
    font-size: 21px;
}

.card-heading p {
    color: #777;

    font-size: 14px;
}

.number {
    width: 42px;
    height: 42px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 10px;

    background: #1c1c1c;

    color: #8b5cf6;

    font-weight: 800;

    flex-shrink: 0;
}


/* =========================
   FORM
========================= */

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;

    margin-bottom: 8px;

    font-size: 14px;

    color: #bbb;
}

.form-group input {
    width: 100%;

    padding: 14px 15px;

    background: #080808;

    border: 1px solid #292929;

    border-radius: 10px;

    color: #ffffff;

    outline: none;

    font-size: 15px;
}

.form-group input:focus {
    border-color: #8b5cf6;
}

.verification-note {
    display: flex;

    gap: 10px;

    align-items: center;

    padding: 12px;

    border-radius: 10px;

    background: #151515;

    color: #888;

    font-size: 13px;
}


/* =========================
   PACKAGES
========================= */

.package-grid {
    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 12px;
}

.package-card {
    text-align: left;

    padding: 18px;

    border-radius: 12px;

    background: #0b0b0b;

    border: 1px solid #292929;

    color: #ffffff;

    cursor: pointer;

    transition: 0.2s;
}

.package-card:hover {
    border-color: #8b5cf6;
}

.package-card.selected {
    border-color: #8b5cf6;

    background: #171120;
}

.package-name {
    font-weight: 700;

    margin-bottom: 5px;
}

.package-price {
    color: #aaa;
}


/* =========================
   SUMMARY
========================= */

.summary {
    padding: 5px 0;
}

.summary-row {
    display: flex;

    justify-content: space-between;

    gap: 20px;

    padding: 12px 0;

    color: #888;
}

.summary-row strong {
    color: #ffffff;

    text-align: right;
}

.summary-divider {
    height: 1px;

    background: #252525;

    margin: 5px 0;
}

.summary-row.total {
    font-size: 19px;
}

.summary-row.total strong {
    color: #8b5cf6;
}


/* =========================
   CHECKOUT BUTTON
========================= */

.checkout-button {
    width: 100%;

    margin-top: 20px;

    padding: 15px;

    border: none;

    border-radius: 11px;

    background: #8b5cf6;

    color: #ffffff;

    font-size: 15px;

    font-weight: 700;

    cursor: pointer;
}

.checkout-button:hover {
    opacity: 0.9;
}

.checkout-button:disabled {
    opacity: 0.5;

    cursor: not-allowed;
}


/* =========================
   MOBILE
========================= */

@media (max-width: 600px) {

    .navbar {
        padding: 0 5%;
    }

    nav {
        display: none;
    }

    .hero {
        padding: 70px 5%;
    }

    .hero h1 {
        font-size: 48px;
    }

    .section {
        padding: 70px 5%;
    }

    .game-title {
        align-items: flex-start;
    }

    .large-game-icon {
        width: 65px;
        height: 65px;

        font-size: 30px;
    }

    .game-title h1 {
        font-size: 30px;
    }

    .package-grid {
        grid-template-columns: 1fr;
    }

    .order-card {
        padding: 20px;
    }
}.verify-button {
    width: 100%;
    margin-top: 18px;
    padding: 14px 20px;
    border: none;
    border-radius: 12px;
    background: #ffffff;
    color: #000000;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.2s ease;
}

.verify-button:hover {
    transform: translateY(-1px);
    opacity: 0.9;
}

.verification-status {
    margin-top: 12px;
    font-size: 14px;
    font-weight: 600;
    display: none;
}

.verification-status.success {
    display: block;
    color: #4ade80;
}

.verification-status.error {
    display: block;
    color: #f87171;
}

.package-card img {
    width: 55px;
    height: 55px;
    object-fit: contain;
    display: block;
}
.package-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.package-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}.package-icon {
    width: 55px;
    height: 55px;
    margin: 0 auto 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 12px;
}

.package-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.large-game-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}/* =========================
   AUTH PAGES
========================= */

.auth-page {
    min-height: calc(100vh - 160px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
}

.auth-card {
    width: 100%;
    max-width: 450px;
    background: #111111;
    border: 1px solid #242424;
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

.auth-header {
    text-align: center;
    margin-bottom: 30px;
}

.auth-icon {
    width: 65px;
    height: 65px;
    margin: 0 auto 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    color: #000000;
    border-radius: 18px;
    font-size: 28px;
}

.auth-header h1 {
    margin: 6px 0;
}

.auth-header p:last-child {
    color: #888;
    margin-top: 8px;
}

.auth-button {
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 12px;
    background: #ffffff;
    color: #000000;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.2s ease;
}

.auth-button:hover {
    transform: translateY(-1px);
    opacity: 0.9;
}

.auth-footer {
    text-align: center;
    margin-top: 22px;
    color: #888;
    font-size: 14px;
}

.auth-footer a {
    color: #ffffff;
    font-weight: 700;
    text-decoration: none;
}

.auth-message {
    display: none;
    margin: 12px 0;
    font-size: 14px;
    font-weight: 600;
}

.auth-message.error {
    display: block;
    color: #f87171;
}

.auth-message.success {
    display: block;
    color: #4ade80;
}.account-info {
    margin-bottom: 25px;
    border: 1px solid #242424;
    border-radius: 14px;
    padding: 5px 18px;
}

.logout-button {
    margin-top: 12px;
    background: #1a1a1a;
    color: #ffffff;
    border: 1px solid #333333;
}

.logout-button:hover {
    opacity: 0.8;
}.payment-placeholder {
    text-align: center;
    padding: 30px 15px;
    border: 1px solid #242424;
    border-radius: 14px;
}

.payment-icon {
    font-size: 38px;
    margin-bottom: 12px;
}

.payment-placeholder h3 {
    margin-bottom: 8px;
}

.payment-placeholder p {
    color: #888;
    font-size: 14px;
}.order-history-item {
    border: 1px solid #242424;
    border-radius: 15px;
    padding: 20px;
    margin-top: 15px;
}

.order-history-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    margin-bottom: 18px;
}

.order-history-top strong {
    font-size: 14px;
}

.order-status {
    padding: 6px 10px;
    border-radius: 8px;
    background: #1c1c1c;
    font-size: 12px;
    font-weight: 700;
}

.order-history-info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.order-history-info div {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.order-history-info span {
    color: #777;
    font-size: 12px;
}

.order-history-info strong {
    font-size: 14px;
}

.order-history-bottom {
    margin-top: 18px;
    padding-top: 15px;
    border-top: 1px solid #242424;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.order-history-bottom small {
    color: #777;
}

.view-order-button {
    padding: 9px 14px;
    border: 1px solid #333;
    border-radius: 9px;
    background: #fff;
    color: #000;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
}

.view-order-button:hover {
    opacity: 0.85;
}

@media (max-width: 600px) {

    .order-history-info {
        grid-template-columns: 1fr;
    }

    .order-history-top,
    .order-history-bottom {
        align-items: flex-start;
        flex-direction: column;
    }

}/* =========================
   ORDER TRACKER
========================= */

.order-tracker {
    margin-top: 25px;
    padding: 20px;
    border: 1px solid #242424;
    border-radius: 14px;
}

.tracker-step {
    display: flex;
    align-items: center;
    gap: 14px;
    opacity: 0.35;
}

.tracker-step.active {
    opacity: 1;
}

.tracker-dot {
    width: 35px;
    height: 35px;
    min-width: 35px;
    border-radius: 50%;
    background: #242424;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
}

.tracker-step.active .tracker-dot {
    background: #ffffff;
    color: #000000;
}

.tracker-step div:last-child {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.tracker-step small {
    color: #777;
    font-size: 12px;
}

.tracker-line {
    width: 2px;
    height: 25px;
    background: #242424;
    margin: 4px 0 4px 16px;
}/* =====================================
   BOGASTORE NEW HOMEPAGE
===================================== */

:root {
    --green: #39ff78;
    --green-dark: #0c3b20;
    --black: #070909;
    --card: #111516;
    --border: #252b2d;
    --text: #ffffff;
    --muted: #8d9698;
}


/* HEADER */

.top-header {
    height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 28px;
    background: rgba(7, 9, 9, 0.96);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 100;
}

.menu-button,
.account-button {
    width: 46px;
    height: 46px;
    border-radius: 13px;
    border: 1px solid var(--border);
    background: var(--card);
    color: white;
    font-size: 22px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
    text-decoration: none;
}

.brand-crown {
    font-size: 38px;
    color: var(--green);
}

.brand strong {
    display: block;
    font-size: 21px;
}

.brand small {
    display: block;
    color: #92999a;
    font-size: 10px;
    letter-spacing: 2px;
}


/* MOBILE MENU */

.mobile-menu {
    display: none;
    position: fixed;
    top: 78px;
    left: 20px;
    right: 20px;
    background: #101415;
    border: 1px solid var(--border);
    border-radius: 15px;
    padding: 10px;
    z-index: 99;
}

.mobile-menu.show {
    display: block;
}

.mobile-menu a {
    display: block;
    padding: 14px;
    color: white;
    text-decoration: none;
    border-radius: 10px;
}

.mobile-menu a:hover {
    background: #1b2021;
}


/* HERO */

.home-hero {
    max-width: 1180px;
    min-height: 430px;
    margin: 28px auto;
    border-radius: 25px;
    overflow: hidden;
    position: relative;

    background:
        radial-gradient(circle at 75% 30%, #42144f, transparent 35%),
        radial-gradient(circle at 25% 40%, #073d2a, transparent 40%),
        linear-gradient(120deg, #0b261d, #101016 50%, #260f1d);

    border: 1px solid #263c32;
}

.home-hero::before {
    content: "";
    position: absolute;
    inset: 0;

    background:
        radial-gradient(circle at 50% 20%, rgba(57,255,120,.25), transparent 25%),
        linear-gradient(90deg, rgba(0,0,0,.1), rgba(0,0,0,.65));
}

.hero-overlay {
    position: relative;
    z-index: 2;
    padding: 70px 60px;
    max-width: 750px;
}

.hero-badge {
    display: inline-block;
    padding: 9px 15px;
    border-radius: 20px;
    background: rgba(0,0,0,.55);
    border: 1px solid #39423e;
    font-size: 13px;
    font-weight: 700;
}

.hero-small {
    margin-top: 45px;
    font-weight: 800;
    letter-spacing: 3px;
}

.home-hero h1 {
    font-size: clamp(38px, 6vw, 70px);
    line-height: .95;
    margin: 10px 0 20px;
}

.home-hero h1 span {
    display: block;
    color: var(--green);
}

.hero-overlay > p:not(.hero-small) {
    max-width: 500px;
    color: #b9c0c0;
    line-height: 1.6;
}

.hero-button,
.promo-button {
    display: inline-block;
    margin-top: 22px;
    padding: 14px 23px;
    background: var(--green);
    color: #061009;
    border-radius: 11px;
    text-decoration: none;
    font-weight: 900;
}


/* QUICK ACTIONS */

.quick-actions {
    max-width: 1180px;
    margin: 0 auto 35px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    padding: 10px;
}

.quick-card {
    min-height: 120px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 17px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: white;
    text-decoration: none;
    transition: .2s;
}

.quick-card:hover,
.quick-card.active {
    border-color: #176d36;
    background: #0d2518;
    transform: translateY(-2px);
}

.quick-icon {
    font-size: 31px;
    color: var(--green);
}


/* SECTIONS */

.home-section {
    max-width: 1180px;
    margin: 65px auto;
    padding: 0 20px;
}

.home-section-heading {
    display: flex;
    justify-content: space-between;
    align-items: end;
    margin-bottom: 25px;
}

.section-label {
    color: var(--green);
    font-size: 12px;
    letter-spacing: 2px;
    font-weight: 800;
    margin: 0 0 5px;
}

.home-section-heading h2 {
    font-size: 32px;
    margin: 0;
}

.home-section-heading > a {
    color: var(--green);
    text-decoration: none;
    font-weight: 700;
}


/* GAME GRID */

.home-section .game-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.home-section .game-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 18px;
    overflow: hidden;
    transition: .2s;
}

.home-section .game-card:hover {
    transform: translateY(-4px);
    border-color: #226b3c;
}


/* PROMO STRIP */

.promo-strip {
    max-width: 1180px;
    margin: 50px auto;
    padding: 22px 28px;
    border: 1px solid var(--green);
    border-radius: 20px;
    background: #09120d;
    display: flex;
    align-items: center;
    gap: 30px;
}

.promo-brand {
    min-width: 210px;
    position: relative;
    padding-left: 48px;
}

.promo-brand > span {
    position: absolute;
    left: 0;
    top: 2px;
    font-size: 34px;
    color: var(--green);
}

.promo-brand strong {
    display: block;
    font-size: 19px;
}

.promo-brand small {
    color: #888;
}

.promo-feature {
    display: flex;
    align-items: center;
    gap: 10px;
}

.promo-feature > span {
    color: var(--green);
    font-size: 28px;
}

.promo-feature strong,
.promo-feature small {
    display: block;
}

.promo-feature small {
    color: #888;
    font-size: 11px;
}

.promo-button {
    margin: 0 0 0 auto;
}


/* BENEFITS */

.benefits {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.benefit-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 17px;
    padding: 25px;
}

.benefit-icon {
    font-size: 30px;
    color: var(--green);
    margin-bottom: 12px;
}

.benefit-card h3 {
    margin: 0 0 8px;
}

.benefit-card p {
    color: var(--muted);
    margin: 0;
    font-size: 13px;
}


/* BOTTOM NAV */

.bottom-nav {
    display: none;
}


/* MOBILE */

@media (max-width: 700px) {

    body {
        padding-bottom: 80px;
    }

    .top-header {
        height: 68px;
        padding: 0 15px;
    }

    .brand strong {
        font-size: 16px;
    }

    .brand small {
        font-size: 8px;
    }

    .brand-crown {
        font-size: 30px;
    }

    .menu-button,
    .account-button {
        width: 42px;
        height: 42px;
    }

    .home-hero {
        min-height: 390px;
        margin: 15px;
        border-radius: 18px;
    }

    .hero-overlay {
        padding: 35px 25px;
    }

    .hero-small {
        margin-top: 45px;
        font-size: 11px;
    }

    .home-hero h1 {
        font-size: 39px;
    }

    .quick-actions {
        margin: 20px 10px;
        padding: 0;
        gap: 8px;
    }

    .quick-card {
        min-height: 95px;
        border-radius: 13px;
    }

    .quick-icon {
        font-size: 25px;
    }

    .quick-card span {
        font-size: 12px;
    }

    .home-section {
        margin: 45px auto;
        padding: 0 15px;
    }

    .home-section-heading h2 {
        font-size: 24px;
    }

    .home-section .game-grid {
        display: flex;
        overflow-x: auto;
        gap: 12px;
        padding-bottom: 10px;
        scrollbar-width: none;
    }

    .home-section .game-grid::-webkit-scrollbar {
        display: none;
    }

    .home-section .game-card {
        min-width: 145px;
    }

    .promo-strip {
        margin: 30px 15px;
        padding: 20px;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .promo-brand {
        grid-column: 1 / -1;
    }

    .promo-button {
        margin: 0;
    }

    .benefits {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .benefit-card {
        padding: 18px;
    }

    .how-section .steps {
        grid-template-columns: 1fr 1fr;
    }

    footer {
        padding-bottom: 90px;
    }

    /* MOBILE BOTTOM NAV */

    .bottom-nav {
        position: fixed;
        display: flex;
        bottom: 0;
        left: 0;
        right: 0;
        height: 68px;
        background: rgba(12, 15, 16, .97);
        border-top: 1px solid #292e30;
        z-index: 200;
        align-items: center;
        justify-content: space-around;
    }

    .bottom-item {
        width: 20%;
        height: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 3px;
        color: #8d9395;
        text-decoration: none;
    }

    .bottom-item span {
        font-size: 20px;
    }

    .bottom-item small {
        font-size: 10px;
    }

    .bottom-item.active {
        color: var(--green);
    }

    .bottom-center {
        width: 56px;
        height: 56px;
        margin-top: -27px;
        border-radius: 50%;
        border: 2px solid var(--green);
        background: #102418;
        color: var(--green);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 28px;
        text-decoration: none;
    }

}.account-button.logged-in {
    width: auto;
    min-width: 46px;
    padding: 6px 12px 6px 6px;
    gap: 8px;
    font-size: 13px;
    font-weight: 700;
}

.account-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--green);
    color: #061009;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
}

.account-name {
    max-width: 100px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

@media (max-width: 700px) {

    .account-button.logged-in {
        width: 42px;
        min-width: 42px;
        padding: 4px;
    }

    .account-name {
        display: none;
    }

}.history-icon {
    width: 25px;
    height: 19px;
    border: 2px solid var(--green);
    border-radius: 3px;
    position: relative;
}

.history-icon::after {
    content: "";
    position: absolute;
    right: -2px;
    top: 4px;
    width: 8px;
    height: 7px;
    border: 2px solid var(--green);
    border-left: none;
    border-radius: 0 3px 3px 0;
}.brand {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.brand img {
    width: 210px;
    height: 70px;
    object-fit: contain;
    display: block;

}@media (max-width: 700px) {

    .brand img {
        width: 165px;
        height: 58px;
    }
}.profile-icon {
    font-size: 28px;
    color: var(--green);
}.profile-icon {
    width: 30px;
    height: 30px;
    position: relative;
    display: flex;
    justify-content: center;
}

.profile-head {
    position: absolute;
    top: 1px;
    width: 10px;
    height: 10px;
    border: 2px solid var(--green);
    border-radius: 50%;
}

.profile-body {
    position: absolute;
    bottom: 1px;
    width: 22px;
    height: 11px;
    border: 2px solid var(--green);
    border-radius: 14px 14px 5px 5px;
}.promo-brand img {
    width: 110px;
    height: 65px;
    object-fit: contain;
    display: block;
}.promo-brand {
    display: flex;
    align-items: center;
    justify-content: center;
}.promo-brand img {
    width: 110px;
    height: 65px;
    object-fit: contain;
    display: block;
}.package-categories {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding: 5px 0 15px;
    margin-bottom: 20px;
}

.category-button {
    min-width: 110px;
    padding: 12px;
    border: 1px solid #333;
    border-radius: 12px;
    background: #111;
    color: #fff;
    cursor: pointer;
    text-align: center;
    font-weight: 700;
}

.category-button.active {
    background: #fff;
    color: #000;
    border-color: #fff;
}

.category-icon {
    font-size: 25px;
    margin-bottom: 7px;
}/* =========================
   BOGASTORE FOOTER
========================= */

.site-footer {
    background: #050505;
    border-top: 1px solid #292929;
    margin-top: 70px;
    padding: 60px 7% 25px;
}

.footer-container {
    max-width: 1300px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr;
    gap: 50px;
}

.footer-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}


/* LOGO */

.footer-logo {
    width: 135px;
    height: 65px;
    object-fit: contain;
    display: block;
    margin-bottom: 18px;
}


/* DESCRIPTION */

.footer-about > p {
    max-width: 340px;
    margin: 0 0 22px;

    color: #999;
    font-size: 14px;
    line-height: 1.8;
}

.footer-column h4 {
    margin: 0 0 8px;

    color: #ffffff;
    font-size: 14px;
}

.footer-support {
    margin: 0 !important;
    color: #aaa !important;
}


/* HEADINGS */

.footer-column h3 {
    margin: 0 0 25px;

    color: #ffffff;
    font-size: 18px;
}


/* LINKS */

.footer-column > a {
    margin-bottom: 13px;

    color: #aaa;
    text-decoration: none;

    font-size: 14px;

    transition: 0.2s ease;
}

.footer-column > a:hover {
    color: #ffffff;
    transform: translateX(3px);
}


/* SOCIAL ICONS */

.footer-socials {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.footer-socials a {
    width: 44px;
    height: 44px;

    border-radius: 50%;

    background: #ffffff;
    color: #000000;

    display: flex;
    align-items: center;
    justify-content: center;

    text-decoration: none;

    font-size: 21px;
    font-weight: 700;

    transition: 0.2s ease;
}

.footer-socials a:hover {
    transform: translateY(-3px);
}


/* PAYMENT */

.payment-modes {
    display: flex;
    align-items: center;
    gap: 10px;
}

.payment-icon {
    min-width: 55px;
    height: 42px;

    padding: 0 10px;

    border-radius: 8px;

    background: #ffffff;
    color: #111111;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 12px;
    font-weight: 800;
}

.payment-text {
    margin-top: 15px;

    color: #777;
    font-size: 12px;
}


/* FOOTER BOTTOM */

.footer-bottom {
    max-width: 1300px;
    margin: 45px auto 0;

    padding-top: 22px;

    border-top: 1px solid #292929;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;
}

.footer-bottom p {
    margin: 0;

    color: #777;
    font-size: 12px;
}

.developer-credit strong {
    color: #ffffff;
}


/* TABLET */

@media (max-width: 800px) {

    .site-footer {
        padding: 50px 25px 25px;
    }

    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 40px 30px;
    }

    .footer-about {
        grid-column: 1 / -1;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

}


/* MOBILE */

@media (max-width: 500px) {

    .site-footer {
        padding: 45px 20px 25px;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .footer-about {
        grid-column: auto;
    }

    .footer-logo {
        width: 120px;
    }

    .footer-bottom {
        margin-top: 35px;
        gap: 10px;
    }

}/* =========================
   BANNER SLIDER
========================= */

.banner-slider {
    width: calc(100% - 80px);
    max-width: 1400px;
    margin: 30px auto;
    position: relative;
}

.banner-window {
    width: 100%;
    overflow: hidden;
}

.banner-track {
    display: flex;
    gap: 20px;
    transition: transform 0.6s ease;
    width: 100%;
}

.banner-slide {
    flex: 0 0 calc((100% - 40px) / 3);
    display: block;
    overflow: hidden;
    border-radius: 14px;
    line-height: 0;
}

.banner-slide img {
    width: 100%;
    height: 220px;
    display: block;
    object-fit: contain;
}


/* Arrow buttons */

.banner-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);

    width: 46px;
    height: 46px;

    border-radius: 50%;
    border: 1px solid #333;

    background: rgba(0, 0, 0, 0.8);
    color: white;

    font-size: 28px;
    cursor: pointer;

    z-index: 10;
}

.banner-prev {
    left: 10px;
}

.banner-next {
    right: 10px;
}


/* =========================
   MOBILE
========================= */

@media (max-width: 700px) {

    .banner-slider {
        width: calc(100% - 24px);
    }

    .banner-track {
        gap: 12px;
    }

    .banner-slide {
        flex: 0 0 calc((100% - 12px) / 2);
    }

    .banner-slide img {
        height: 130px;
    }

}

/* =========================
   ARROWS
========================= */

.banner-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;

    width: 45px;
    height: 45px;

    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 50%;

    background: rgba(0, 0, 0, 0.65);
    color: white;

    font-size: 35px;
    line-height: 1;

    cursor: pointer;

    display: flex;
    align-items: center;
    justify-content: center;

    transition: 0.2s ease;
}

.banner-arrow:hover {
    background: white;
    color: black;
}

.banner-prev {
    left: 15px;
}

.banner-next {
    right: 15px;
}


/* =========================
   MOBILE
========================= */
@media (max-width: 600px) {
    .banner-slide img {
        width: 100%;
        height: 120px;
        object-fit: contain;
    }

    .banner-slide img {
        width: 100%;
        height: 140px;
        object-fit: contain;
    }

    .banner-arrow {
        width: 34px;
        height: 34px;
        font-size: 27px;
    }

    .banner-prev {
        left: 8px;
    }

    .banner-next {
        right: 8px;
    }
}/* Hide homepage hero section */
.home-hero {
    display: none !important;
}/* =========================
   GAMES INTERFACE
========================= */

.games-section {
    padding: 25px 0 60px;
}

.games-container {
    width: calc(100% - 80px);
    max-width: 1400px;
    margin: 0 auto;

    background: #151515;
    border: 1px solid #222;
    border-radius: 20px;

    padding: 24px;
}


/* CATEGORY BUTTONS */

.game-categories {
    display: flex;
    gap: 8px;

    overflow-x: auto;
    scrollbar-width: none;

    margin-bottom: 34px;
}

.game-categories::-webkit-scrollbar {
    display: none;
}

.game-category {
    flex-shrink: 0;

    padding: 11px 25px;

    border: 1px solid #9d8636;
    border-radius: 30px;

    background: transparent;
    color: #ffffff;

    font-size: 14px;
    font-weight: 500;

    cursor: pointer;

    transition: 0.25s ease;
}

.game-category:hover {
    background: #242424;
}

.game-category.active {
    background: linear-gradient(
        90deg,
        #b8f28c,
        #ffe47c,
        #ff9d9d
    );

    color: #111;
    border-color: transparent;
}


/* GAME GRID */

.game-grid {
    display: grid;

    grid-template-columns:
        repeat(6, minmax(0, 1fr));

    gap: 20px;
}


/* GAME CARD */

.game-card {
    position: relative;

    height: 260px;

    overflow: hidden;

    border-radius: 14px;

    border: 1px solid #252525;

    background: #101010;

    cursor: pointer;

    text-decoration: none;

    transition:
        transform 0.25s ease,
        border-color 0.25s ease;
}

.game-card:hover {
    transform: translateY(-5px);
    border-color: #555;
}


/* IMAGE */

.game-card-image {
    width: 100%;
    height: 100%;

    object-fit: cover;

    display: block;

    transition:
        transform 0.3s ease;
}

.game-card:hover .game-card-image {
    transform: scale(1.04);
}


/* DARK GRADIENT OVER IMAGE */

.game-card::after {
    content: "";

    position: absolute;

    inset: 0;

    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.95),
        rgba(0, 0, 0, 0.15) 65%,
        transparent
    );

    pointer-events: none;
}


/* CARD TEXT */

.game-card-content {
    position: absolute;

    left: 12px;
    right: 12px;
    bottom: 12px;

    z-index: 2;
}

.game-card-title {
    margin: 0 0 5px;

    color: #ffffff;

    font-size: 15px;
    font-weight: 800;

    text-transform: uppercase;

    line-height: 1.1;
}

.game-card-description {
    margin: 0;

    color: #dddddd;

    font-size: 11px;

    line-height: 1.3;
}


/* MOBILE */

@media (max-width: 1100px) {

    .game-grid {
        grid-template-columns:
            repeat(4, minmax(0, 1fr));
    }

}


@media (max-width: 700px) {

    .games-container {
        width: calc(100% - 24px);
        padding: 15px;
        border-radius: 16px;
    }

    .game-categories {
        margin-bottom: 20px;
    }

    .game-category {
        padding: 10px 18px;
        font-size: 12px;
    }

    .game-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap: 12px;
    }

    .game-card {
        height: 230px;
    }

}@media (max-width: 1100px) {

    .game-grid {
        grid-template-columns:
            repeat(4, minmax(0, 1fr));
    }

}

@media (max-width: 700px) {

    .game-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap: 12px;
    }

}/* FINAL GAME GRID FIX */

.games-container .game-grid {
    display: grid !important;
    grid-template-columns: repeat(6, minmax(0, 1fr)) !important;
    gap: 20px !important;
    width: 100% !important;
}

.games-container .game-card {
    width: 100% !important;
    height: 260px !important;
    min-width: 0 !important;
}.games-container .game-card-image {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
}/* =========================
   GAME CARDS - CLEAN STYLE
========================= */

.games-container .game-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    width: 100%;
}

.games-container .game-card {
    position: relative;

    width: 100%;
    height: 190px;

    overflow: hidden;

    background: transparent;

    border: 1px solid #333;
    border-radius: 10px;

    text-decoration: none;

    transition: 0.2s ease;
}

.games-container .game-card:hover {
    transform: translateY(-3px);
    border-color: #555;
}


/* GAME IMAGE */

.games-container .game-card-image {
    display: block;

    width: 100%;
    height: 145px;

    object-fit: cover;

    border-radius: 9px 9px 0 0;
}


/* BOTTOM TEXT AREA */

.games-container .game-card-content {
    position: absolute;

    left: 0;
    right: 0;
    bottom: 0;

    height: 45px;

    padding: 6px 8px;

    background: #050505;

    text-align: center;
}


/* GAME NAME */

.games-container .game-card-title {
    margin: 0;

    color: #fff;

    font-size: 12px;
    font-weight: 600;

    line-height: 16px;
}


/* DESCRIPTION */

.games-container .game-card-description {
    margin: 1px 0 0;

    color: #ddd;

    font-size: 10px;

    line-height: 12px;
}


/* TABLET */

@media (max-width: 1100px) {

    .games-container .game-grid {
        grid-template-columns: repeat(4, 1fr);
    }

}


/* MOBILE */

@media (max-width: 700px) {

    .games-container .game-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .games-container .game-card {
        height: 180px;
    }

    .games-container .game-card-image {
        height: 138px;
    }

}.games-container .game-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    width: 100%;
}

.games-container .game-card {
    height: 190px;
    background: #050505;
    border: 1px solid #333;
    border-radius: 10px;
    overflow: hidden;
}

.games-container .game-card-image {
    width: 100%;
    height: 145px;
    object-fit: cover;
    display: block;
}

.games-container .game-card-content {
    height: 45px;
    background: #050505;
    text-align: center;
    padding: 6px 5px;
}/* Hide promo strip */
.promo-strip {
    display: none !important;
}/* =========================
   GAMES SECTION - REFERENCE STYLE
========================= */

.games-section {
    padding: 40px 0 60px;
}

.games-container {
    width: calc(100% - 80px);
    max-width: 1400px;
    margin: auto;

    background: transparent;
    border: none;
    border-radius: 0;
    padding: 0;
}.game-categories {
    display: flex;
    gap: 6px;
    margin-bottom: 35px;
}

.game-category {
    padding: 11px 28px;

    background: transparent;
    color: white;

    border: 1px solid #9c6bb5;
    border-radius: 4px;

    font-size: 14px;
    font-weight: 500;

    cursor: pointer;
}

.game-category.active {
    background: linear-gradient(
        135deg,
        #c99be3,
        #8c5ca8
    );

    color: #111;
}.game-grid {
    width: 100%;
    max-width: none;

    display: grid;

    grid-template-columns: repeat(6, 1fr);

    gap: 20px;
}.game-card {
    width: 100%;
    height: 190px;

    display: block;

    overflow: hidden;

    background: #000;

    border: 1px solid #333;
    border-radius: 9px;

    text-decoration: none;

    transition: transform 0.2s ease;
}

.game-card:hover {
    transform: translateY(-3px);
}.game-card-image {
    display: block;

    width: 100%;
    height: 145px;

    object-fit: cover;
}.game-card-content {
    height: 45px;

    padding: 5px 4px;

    background: #000;

    text-align: center;
}

.game-card-title {
    margin: 0;

    color: #fff;

    font-size: 12px;
    font-weight: 500;

    line-height: 16px;
}

.game-card-description {
    margin: 0;

    color: #fff;

    font-size: 10px;

    line-height: 13px;
}@media (max-width: 1100px) {
    .game-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 700px) {

    .games-container {
        width: calc(100% - 24px);
    }

    .game-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .game-card {
        height: 180px;
    }

    .game-card-image {
        height: 135px;
    }
}/* =========================
   GAME CARDS - NEW STYLE
========================= */

.game-grid {
    width: 100%;
    max-width: none;

    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

/* Main card */
.game-card {
    width: 100%;
    height: 190px;

    background: #000;

    border: 1px solid #333;
    border-radius: 9px;

    overflow: hidden;

    display: flex;
    flex-direction: column;

    padding: 0;
}

/* Game image */
.game-icon {
    width: 100%;
    height: 145px;

    margin: 0;
    padding: 0;

    display: block;

    overflow: hidden;

    border-radius: 0;

    flex-shrink: 0;
}

.game-icon img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
}

/* Text area */
.game-info {
    width: 100%;
    height: 45px;

    padding: 5px 4px;

    background: #000;

    text-align: center;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    gap: 0;
}

.game-info h3 {
    margin: 0;

    color: #fff;

    font-size: 12px;
    line-height: 15px;
}

.game-info p {
    margin: 0;

    color: #fff;

    font-size: 10px;
    line-height: 13px;
}

/* Hide category and button from the card */
.game-info span,
.game-button {
    display: none;
}

/* Responsive */
@media (max-width: 1100px) {
    .game-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 700px) {
    .game-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .game-card {
        height: 180px;
    }

    .game-icon {
        height: 135px;
    }
}/* FINAL GAME CARD SIZE */
.games-container .game-grid {
    grid-template-columns: repeat(6, 150px) !important;
    gap: 20px !important;
}

.games-container .game-card {
    width: 150px !important;
    height: 190px !important;
}

.games-container .game-card-image {
    width: 150px !important;
    height: 145px !important;
}/* =========================
   BOGASTORE FINAL THEME
========================= */

:root {
    --bg: #070909;
    --surface: #101516;
    --surface-2: #151a1b;
    --border: #252c2e;
    --green: #39ff78;
    --green-dark: #0c3b20;
    --green-hover: #12301f;
    --text: #ffffff;
    --muted: #8d9698;
}

/* MAIN */
body {
    background: var(--bg);
    color: var(--text);
}

/* HEADER */
.navbar,
.top-header {
    background: #0b0e0f;
    border-color: var(--border);
}

/* CARDS */
.game-card,
.quick-card,
.benefit-card,
.step,
.order-card,
.auth-card,
.payment-placeholder,
.account-info {
    background: var(--surface);
    border-color: var(--border);
}

/* MAIN BUTTONS */
.primary-button,
.checkout-button,
.auth-button {
    background: var(--green);
    color: #061009;
    border-color: var(--green);
}

.primary-button:hover,
.checkout-button:hover,
.auth-button:hover {
    background: #6dff9b;
    color: #061009;
}

/* HOVER EFFECTS */
.game-card:hover,
.quick-card:hover,
.form-group input:focus {
    border-color: var(--green);
}

/* GAME BUTTON */
.game-button:hover {
    background: var(--green);
    color: #061009;
}

/* GREEN HIGHLIGHTS */
.step-number,
.account-avatar,
.bottom-center {
    background: var(--green);
    color: #061009;
}

.summary-row.total strong,
.small-title,
.section-label,
.hero h1 span,
.brand-crown,
.quick-icon,
.promo-feature > span,
.bottom-item.active {
    color: var(--green);
}

/* GAME CATEGORIES */
.game-category {
    border-color: #2d7d48;
}

.game-category.active {
    background: linear-gradient(
        135deg,
        #39ff78,
        #b7ff75
    );
    color: #061009;
    border-color: #39ff78;
}

/* PACKAGE SELECTION */
.package-card.selected {
    border-color: var(--green);
    background: #0d2518;
}

/* INPUTS */
.form-group input:focus,
.form-group select:focus {
    border-color: var(--green);
    box-shadow: 0 0 0 2px rgba(57, 255, 120, 0.12);
}

/* LINKS */
a:hover {
    color: var(--green);
}

/* PRICE */
.package-price,
.price,
.total-price {
    color: var(--green);
}/* =========================
   ALIGN BANNERS + GAMES
========================= */

.banner-slider,
.games-container {
    width: calc(100% - 120px) !important;
    max-width: 1400px !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

/* Keep banner row inside the same container */
.banner-window {
    width: 100%;
    overflow: hidden;
}

.banner-track {
    width: 100%;
}

/* Make the 3 banners fit perfectly */
.banner-slide {
    flex: 0 0 calc((100% - 40px) / 3);
}

/* Games use the exact same left/right boundary */
.games-container .game-grid {
    width: 100%;
}/* =================================
   HOMEPAGE MASTER CONTENT ALIGNMENT
================================= */

/* One common content width for the whole homepage */
.banner-slider,
.games-container,
.why-section,
.how-section,
.benefits-section,
.steps-section {
    width: calc(100% - 120px) !important;
    max-width: 1160px !important;
    margin-left: auto !important;
    margin-right: auto !important;
}


/* BANNERS */
.banner-slider {
    width: calc(100% - 120px) !important;
    max-width: 1160px !important;
}


/* GAMES */
.games-container {
    width: calc(100% - 120px) !important;
    max-width: 1160px !important;
}


/* GAME GRID */
.games-container .game-grid {
    width: 100% !important;
}


/* WHY CHOOSE US */
.why-section,
.benefits-section {
    width: calc(100% - 120px) !important;
    max-width: 1160px !important;
}


/* HOW IT WORKS */
.how-section,
.steps-section {
    width: calc(100% - 120px) !important;
    max-width: 1160px !important;
}


/* MOBILE */
@media (max-width: 700px) {

    .banner-slider,
    .games-container,
    .why-section,
    .how-section,
    .benefits-section,
    .steps-section {
        width: calc(100% - 30px) !important;
        max-width: none !important;
    }

}/* =================================
   FINAL HOMEPAGE ALIGNMENT
================================= */

.games-container {
    width: calc(100% - 84px) !important;
    max-width: 1150px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
}

/* Categories */
.game-categories {
    width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
}

/* Games */
.games-container .game-grid {
    width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
}.banner-slider {
    width: calc(100% - 84px) !important;
    max-width: 1150px !important;
    margin-left: auto !important;
    margin-right: auto !important;
}/* =================================
   FINAL BANNER CAROUSEL
================================= */

.banner-slider {
    position: relative;
    width: calc(100% - 84px) !important;
    max-width: 1150px !important;
    margin: 30px auto !important;
}

.banner-window {
    width: 100%;
    overflow: hidden;
}

.banner-track {
    display: flex;
    gap: 20px;
    width: 100%;
    transition: transform 0.6s ease;
}

.banner-slide {
    flex: 0 0 calc((100% - 40px) / 3);
    height: 215px;
    display: block;
    overflow: hidden;
    border-radius: 10px;
    line-height: 0;
}

.banner-slide img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
}


/* =================================
   CAROUSEL ARROWS
================================= */

.banner-prev,
.banner-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;

    width: 42px;
    height: 42px;

    border-radius: 50%;
    border: 1px solid #333;
    background: rgba(0, 0, 0, 0.75);
    color: #fff;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 24px;
    cursor: pointer;
}

.banner-prev {
    left: -21px;
}

.banner-next {
    right: -21px;
}

.banner-prev:hover,
.banner-next:hover {
    background: #39ff78;
    color: #061009;
    border-color: #39ff78;
}


/* MOBILE */
@media (max-width: 700px) {

    .banner-slider {
        width: calc(100% - 30px) !important;
    }

    .banner-slide {
        flex: 0 0 calc((100% - 12px) / 2);
        height: 125px;
    }

    .banner-track {
        gap: 12px;
    }

    .banner-prev,
    .banner-next {
        width: 34px;
        height: 34px;
        font-size: 18px;
    }

    .banner-prev {
        left: -10px;
    }

    .banner-next {
        right: -10px;
    }
}/* =========================================
   BOGASTORE - LEGEND STYLE HEADER
========================================= */

.top-header {
    height: 78px !important;
    padding: 0 5% !important;

    display: flex;
    align-items: center;
    justify-content: space-between;

    background: #070909 !important;
    border-bottom: 1px solid #252c2e !important;

    position: sticky;
    top: 0;
    z-index: 1000;
}


/* =========================
   LEFT LOGO
========================= */

.desktop-brand {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.desktop-brand img {
    width: 125px;
    height: 60px;
    object-fit: contain;
    display: block;
}


/* =========================
   CENTER NAV
========================= */

.desktop-nav {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);

    display: flex;
    align-items: center;
    gap: 32px;
}

.desktop-nav a {
    color: #ffffff;
    text-decoration: none;

    font-size: 16px;
    font-weight: 500;

    transition: 0.2s ease;
}

.desktop-nav a:hover {
    color: #39ff78;
}


/* =========================
   RIGHT SIDE
========================= */

.header-right {
    display: flex;
    align-items: center;
    gap: 15px;
}


/* LOGIN */

.login-button {
    height: 42px;
    padding: 0 16px;

    display: flex;
    align-items: center;
    gap: 10px;

    background: #151a1b;
    border: 1px solid #394143;
    border-radius: 6px;

    color: #ffffff;
    text-decoration: none;

    font-size: 14px;
    font-weight: 700;

    transition: 0.2s ease;
}

.login-button span {
    color: #39ff78;
    font-size: 22px;
}

.login-button:hover {
    border-color: #39ff78;
    background: #0c3b20;
}


/* SEARCH + USER */

.header-icon {
    width: 34px;
    height: 34px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: transparent;
    border: none;

    color: #ffffff;
    text-decoration: none;

    font-size: 25px;
    cursor: pointer;
}

.header-icon:hover {
    color: #39ff78;
}


/* HIDE OLD MOBILE BUTTON ON DESKTOP */

.menu-button {
    display: none !important;
}


/* =========================
   MOBILE
========================= */

@media (max-width: 700px) {

    .top-header {
        height: 68px !important;
        padding: 0 15px !important;
    }

    .desktop-brand {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }

    .desktop-brand img {
        width: 105px;
        height: 55px;
    }

    .desktop-nav,
    .header-right {
        display: none !important;
    }

    .menu-button {
        display: flex !important;

        width: 42px;
        height: 42px;

        align-items: center;
        justify-content: center;

        border-radius: 12px;
        border: 1px solid #252c2e;
        background: #101516;

        color: #ffffff;
        font-size: 22px;
    }

    .account-button {
        display: flex !important;
    }
}.user-icon {
    filter: none;
    color: #39ff78;
    font-size: 24px;
}

.user-icon:hover {
    transform: scale(1.1);
}/* =========================
   BOS WALLET
========================= */

.wallet-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;

    width: 72px;
    height: 38px;

    padding: 0 10px;
    box-sizing: border-box;

    background: #333333;
    border: none;
    border-radius: 5px;

    color: #ffffff;
    text-decoration: none;
}

.wallet-icon {
    width: 23px;
    height: 23px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;
}

.wallet-icon img {
    width: 23px;
    height: 23px;
    object-fit: contain;
    display: block;
}

.wallet-balance {
    color: #eeeeee;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 15px;
    font-weight: 400;

    line-height: 1;
    white-space: nowrap;
}

.wallet-button:hover {
    border-color: #39ff78;
    background: #0c3b20;
}

@media (max-width: 700px) {
    .wallet-button {
        display: none !important;
    }
}/* =========================
   WALLET PAGE
========================= */

.wallet-page {
    min-height: calc(100vh - 78px);
    padding: 70px 20px;
    background: #070909;
}

.wallet-container {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
}

.wallet-heading {
    margin-bottom: 30px;
}

.wallet-label,
.section-label {
    color: #39ff78;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
}

.wallet-heading h1 {
    margin: 8px 0;
    color: #ffffff;
    font-size: 34px;
}

.wallet-heading p {
    margin: 0;
    color: #8d9698;
}


/* BALANCE CARD */

.wallet-balance-card {
    position: relative;
    padding: 30px;
    border-radius: 12px;
    border: 1px solid #252c2e;
    background:
        linear-gradient(
            135deg,
            #101a14,
            #0b0f0e
        );
    overflow: hidden;
}

.wallet-balance-card::after {
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    right: -60px;
    top: -60px;
    border-radius: 50%;
    background: #0c3b20;
    opacity: 0.35;
}

.wallet-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #8d9698;
    font-size: 14px;
}

.wallet-card-icon {
    font-size: 25px;
}

.wallet-big-balance {
    position: relative;
    z-index: 2;
    margin-top: 18px;
    color: #39ff78;
    font-size: 42px;
    font-weight: 900;
}

.wallet-card-bottom {
    margin-top: 8px;
    color: #697274;
    font-size: 13px;
}


/* ACTIONS */

.wallet-actions {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 20px;
}

.wallet-action-card {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 22px;
    background: #101516;
    border: 1px solid #252c2e;
    border-radius: 10px;
}

.wallet-action-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border-radius: 10px;
    background: #0c3b20;
    color: #39ff78;
    font-size: 24px;
}

.wallet-action-card h3 {
    margin: 0 0 5px;
    color: #ffffff;
    font-size: 16px;
}

.wallet-action-card p {
    margin: 0;
    color: #8d9698;
    font-size: 13px;
}


/* TRANSACTIONS */

.transactions-section {
    margin-top: 50px;
}

.section-heading h2 {
    margin: 8px 0 20px;
    color: #ffffff;
    font-size: 25px;
}

.transaction-list {
    background: #101516;
    border: 1px solid #252c2e;
    border-radius: 10px;
    overflow: hidden;
}

.empty-transactions {
    padding: 50px 20px;
    text-align: center;
}

.empty-transactions > div {
    font-size: 35px;
    margin-bottom: 12px;
}

.empty-transactions h3 {
    margin: 0 0 7px;
    color: #ffffff;
}

.empty-transactions p {
    margin: 0;
    color: #8d9698;
    font-size: 14px;
}


/* MOBILE */

@media (max-width: 700px) {

    .wallet-page {
        padding: 40px 15px;
    }

    .wallet-heading h1 {
        font-size: 28px;
    }

    .wallet-big-balance {
        font-size: 34px;
    }

    .wallet-actions {
        grid-template-columns: 1fr;
    }

}.wallet-icon {
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.wallet-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}.wallet-icon {
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.wallet-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}/* Gift Card - match History & Account */
.quick-card:nth-child(2) {
    background: #111516 !important;
    border-color: #252b2d !important;
}

/* Make Gift icon green */
.quick-card:nth-child(2) .quick-icon {
    color: #39ff78 !important;
}

/* Hover */
.quick-card:nth-child(2):hover {
    background: #111516 !important;
    border-color: #39ff78 !important;
}.gift-icon {
    color: #39ff78 !important;
}

.gift-icon svg {
    width: 28px;
    height: 28px;
    fill: none;
    stroke: #39ff78;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}/* =========================
   FIX GAME CARDS
========================= */

.games-container .game-grid {
    grid-template-columns: repeat(6, 150px) !important;
    gap: 20px !important;
    align-items: start;
}

.games-container .game-card {
    width: 150px !important;
    height: 215px !important;
    overflow: hidden !important;
    display: flex;
    flex-direction: column;
}

.games-container .game-icon {
    width: 150px !important;
    height: 145px !important;
    flex-shrink: 0;
    overflow: hidden;
}

.games-container .game-icon img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block;
}

.games-container .game-info {
    width: 100% !important;
    height: 70px !important;
    min-height: 70px !important;
    padding: 7px 5px !important;
    box-sizing: border-box !important;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: hidden;
}.games-container .game-info h3 {
    margin: 0 0 3px !important;
    color: #ffffff !important;
    font-size: 11px !important;
    line-height: 14px !important;
    font-weight: 700 !important;
    text-transform: none !important;
    max-height: 28px;
    overflow: hidden;
}

.games-container .game-info p {
    margin: 0 !important;
    color: #8d9698 !important;
    font-size: 9px !important;
    line-height: 12px !important;
    max-height: 24px;
    overflow: hidden;
}

.games-container .game-info span,
.games-container .game-button {
    display: none !important;
}/* =========================================
   FINAL GAME CARD FIX
========================================= */

.games-container .game-grid {
    display: grid !important;
    grid-template-columns: repeat(6, 1fr) !important;
    gap: 20px !important;
    width: 100% !important;
}

.games-container .game-card {
    width: 100% !important;
    height: 220px !important;
    min-width: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    overflow: hidden !important;
    background: #050505 !important;
    border: 1px solid #333 !important;
    border-radius: 10px !important;
    padding: 0 !important;
    box-sizing: border-box !important;
}

/* IMAGE */
.games-container .game-card .game-icon {
    width: 100% !important;
    height: 150px !important;
    min-height: 150px !important;
    flex-shrink: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: hidden !important;
    display: block !important;
}

.games-container .game-card .game-icon img {
    width: 100% !important;
    height: 100% !important;
    display: block !important;
    object-fit: cover !important;
}

/* TEXT */
.games-container .game-card .game-info {
    width: 100% !important;
    height: 70px !important;
    min-height: 70px !important;
    flex-shrink: 0 !important;
    box-sizing: border-box !important;
    padding: 7px 5px !important;
    background: #050505 !important;

    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    text-align: center !important;
    gap: 2px !important;
    overflow: hidden !important;
}

/* GAME NAME */
.games-container .game-card .game-info h3 {
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;

    color: #ffffff !important;
    font-size: 11px !important;
    font-weight: 700 !important;
    line-height: 14px !important;

    text-transform: none !important;
    text-align: center !important;

    white-space: normal !important;
    overflow: hidden !important;
}

/* DESCRIPTION */
.games-container .game-card .game-info p {
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;

    color: #8d9698 !important;
    font-size: 9px !important;
    line-height: 12px !important;

    text-align: center !important;

    white-space: normal !important;
    overflow: hidden !important;
}

/* HIDE CATEGORY + BUTTON */
.games-container .game-card .game-info span,
.games-container .game-card .game-button {
    display: none !important;
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 700px) {

    .games-container .game-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px !important;
    }

    .games-container .game-card {
        height: 210px !important;
    }

    .games-container .game-card .game-icon {
        height: 140px !important;
        min-height: 140px !important;
    }

    .games-container .game-card .game-info {
        height: 70px !important;
        min-height: 70px !important;
    }
}/* REMOVE GAME DESCRIPTION */
.games-container .game-info p {
    display: none !important;
}

/* KEEP ORIGINAL CARD SIZE */
.games-container .game-card {
    height: 190px !important;
}

.games-container .game-icon {
    height: 145px !important;
}

.games-container .game-info {
    height: 45px !important;
    padding: 5px 4px !important;
}

/* GAME NAME */
.games-container .game-info h3 {
    margin: 0 !important;
    color: #ffffff !important;
    font-size: 12px !important;
    line-height: 15px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    text-align: center !important;
}/* FINAL: HIDE GAME DESCRIPTIONS */
.games-container .game-card .game-info p {
    display: none !important;
    visibility: hidden !important;
    height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* KEEP OLD CARD SIZE */
.games-container .game-card {
    height: 190px !important;
}

.games-container .game-card .game-icon {
    height: 145px !important;
}

.games-container .game-card .game-info {
    height: 45px !important;
    min-height: 45px !important;
    padding: 5px 4px !important;
}

/* GAME NAME ONLY */
.games-container .game-card .game-info h3 {
    margin: 0 !important;
    color: #fff !important;
    font-size: 12px !important;
    line-height: 15px !important;
    font-weight: 700 !important;
    text-align: center !important;
}.game-card {
    height: 190px;
}

.game-icon {
    height: 145px;
}

.game-info {
    height: 45px;
}/* FINAL GAME NAME FIX */

.games-container .game-card .game-info {
    background: #050505 !important;
    height: 45px !important;
    min-height: 45px !important;
    padding: 5px 4px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.games-container .game-card .game-info h3 {
    color: #ffffff !important;
    background: transparent !important;
    margin: 0 !important;
    padding: 0 !important;
    font-size: 12px !important;
    line-height: 15px !important;
    font-weight: 700 !important;
    text-align: center !important;
    text-transform: uppercase !important;
}

/* Make sure descriptions stay hidden */
.games-container .game-card .game-info p {
    display: none !important;
}.games-container .game-card .game-info h3,
.games-container .game-card h3 {
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
    opacity: 1 !important;
    visibility: visible !important;
    text-shadow: none !important;
    background: none !important;
}.games-container .game-card .game-info {
    opacity: 1 !important;
    color: #ffffff !important;
}/* ================================
   FIX GAME NAME VISIBILITY
================================ */

/* Put text ABOVE the dark overlay */
.games-container .game-card .game-info {
    position: relative !important;
    z-index: 5 !important;
    background: #050505 !important;
    opacity: 1 !important;
}

/* Bright white game name */
.games-container .game-card .game-info h3 {
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
    opacity: 1 !important;
    visibility: visible !important;
    text-shadow: none !important;
}

/* Keep descriptions hidden */
.games-container .game-card .game-info p {
    display: none !important;
}

.games-container .game-card .game-icon {
    height: 145px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: #000 !important;
    overflow: hidden !important;
}

.games-container .game-card .game-icon img {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
    object-position: center !important;
    display: block !important;
}/* ================================
   GAME CARD IMAGE - FINAL SIZE
================================ */

.games-container .game-card {
    height: 190px !important;
}

.games-container .game-card .game-icon {
    height: 155px !important;
    min-height: 155px !important;
    width: 100% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: #000 !important;
    overflow: hidden !important;
}

.games-container .game-card .game-icon img {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
    object-position: center !important;
    display: block !important;
}

/* GAME NAME AREA */
.games-container .game-card .game-info {
    height: 35px !important;
    min-height: 35px !important;
    padding: 3px 4px !important;
    position: relative !important;
    z-index: 5 !important;
}

/* GAME NAME */
.games-container .game-card .game-info h3 {
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
    font-size: 11px !important;
    line-height: 13px !important;
    margin: 0 !important;
    text-align: center !important;
}

/* HIDE DESCRIPTION */
.games-container .game-card .game-info p {
    display: none !important;
}/* MLBB IMAGES - FULL IMAGE, NO CROP */

.games-container .game-card .game-icon {
    width: 100% !important;
    height: 145px !important;
    overflow: hidden !important;
    background: #000 !important;
    display: block !important;
}

.games-container .game-card .game-icon img {
    width: 100% !important;
    height: 145px !important;
    object-fit: fill !important;
    object-position: center !important;
    display: block !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* Keep card size */
.games-container .game-card {
    height: 190px !important;
}

/* Game name */
.games-container .game-card .game-info {
    height: 45px !important;
    min-height: 45px !important;
    position: relative !important;
    z-index: 5 !important;
}

.games-container .game-card .game-info h3 {
    color: #fff !important;
    -webkit-text-fill-color: #fff !important;
    font-size: 11px !important;
    line-height: 14px !important;
    margin: 0 !important;
}/* =========================================
   FINAL GAME CARD SIZE + IMAGE
========================================= */

.games-container .game-grid {
    grid-template-columns: repeat(6, 150px) !important;
    gap: 20px !important;
}

/* CARD */
.games-container .game-card {
    width: 150px !important;
    height: 190px !important;
    padding: 0 !important;
    overflow: hidden !important;
}

/* IMAGE AREA */
.games-container .game-card .game-icon {
    width: 150px !important;
    height: 145px !important;
    padding: 0 !important;
    margin: 0 !important;
    overflow: hidden !important;
    background: #000 !important;
}

/* IMAGE */
.games-container .game-card .game-icon img {
    width: 150px !important;
    height: 145px !important;
    display: block !important;
    object-fit: cover !important;
    object-position: center !important;
}

/* NAME AREA */
.games-container .game-card .game-info {
    width: 150px !important;
    height: 45px !important;
    min-height: 45px !important;
    padding: 5px 4px !important;
    box-sizing: border-box !important;
    position: relative !important;
    z-index: 5 !important;
    background: #050505 !important;
}

/* NAME */
.games-container .game-card .game-info h3 {
    color: #fff !important;
    -webkit-text-fill-color: #fff !important;
    font-size: 11px !important;
    line-height: 14px !important;
    font-weight: 700 !important;
    margin: 0 !important;
    text-align: center !important;
}

/* REMOVE DESCRIPTION */
.games-container .game-card .game-info p {
    display: none !important;
}/* WELCOME MARQUEE */

.welcome-marquee {
    width: 100%;
    height: 44px;
    overflow: hidden;
    background: #39ff78;
    display: flex;
    align-items: center;
    border-top: 1px solid #39ff78;
    border-bottom: 1px solid #39ff78;
}

.welcome-track {
    display: flex;
    width: max-content;
    animation: welcome-scroll 18s linear infinite;
}

.welcome-track span {
    flex-shrink: 0;
    padding: 0 45px;
    color: #000000 !important;
    font-size: 17px;
    font-weight: 400;
    white-space: nowrap;
}

@keyframes welcome-scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}.welcome-track span {
    flex-shrink: 0;
    padding: 0 45px;
    color: #000000 !important;
    font-family: Arial, sans-serif;
    font-size: 17px;
    font-weight: 400;
    white-space: nowrap;
}/* Space below welcome marquee */
.welcome-marquee {
    margin-bottom: 25px !important;
}/* FIX GAME NAME POSITION */
.games-container .game-info {
    height: 45px !important;
    padding: 0px 4px !important;
    margin: 0 !important;
    justify-content: flex-start !important;
}

.games-container .game-info h3 {
    margin: 0 !important;
    padding: 0 !important;
    line-height: 15px !important;
    transform: translateY(-1px);
}

.games-container .game-info p {
    margin: 0 !important;
    padding: 0 !important;
    line-height: 12px !important;
}/* SOCIAL LOGOS */

.footer-socials a {
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-socials img {
    width: 24px;
    height: 24px;
    object-fit: contain;
    display: block;
}


/* PAYMENT LOGOS */

.payment-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 55px;
    height: 42px;
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
}

.payment-icon img {
    width: 32px;
    height: 32px;
    object-fit: contain;
    display: block;
}/* MOVE GAME NAME UP */

.games-container .game-info {
    padding: 2px 4px !important;
    justify-content: flex-start !important;
    height: 45px !important;
}

.games-container .game-info h3 {
    margin: 0 !important;
    transform: translateY(-7px);
    line-height: 15px !important;
}/* =========================
   BOS COINS PAGE
========================= */

.boscoins-page {
    min-height: calc(100vh - 78px);
    padding: 70px 5%;
    background: #070909;
}

.boscoins-header {
    text-align: center;
    margin-bottom: 45px;
}

.boscoins-header h1 {
    color: #fff;
    font-size: 38px;
    margin: 10px 0;
}

.boscoins-header h1 span {
    color: #39ff78;
}

.boscoins-header > p:last-child {
    color: #8d9698;
    font-size: 15px;
}

.boscoin-packages {
    max-width: 1100px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.boscoin-card {
    background: #101516;
    border: 1px solid #252c2e;
    border-radius: 14px;

    padding: 30px 20px;
    text-align: center;

    transition: 0.2s ease;
}

.boscoin-card:hover {
    border-color: #39ff78;
    transform: translateY(-4px);
}

.boscoin-image {
    width: 65px;
    height: 65px;
    object-fit: contain;
    margin-bottom: 15px;
}

.boscoin-card h2 {
    color: #fff;
    font-size: 21px;
    margin: 5px 0;
}

.boscoin-card p {
    color: #39ff78;
    font-size: 20px;
    font-weight: 700;
    margin: 10px 0 20px;
}

.boscoin-buy {
    width: 100%;
    padding: 12px;

    background: #39ff78;
    color: #061009;

    border: none;
    border-radius: 7px;

    font-size: 14px;
    font-weight: 700;

    cursor: pointer;
}

.boscoin-buy:hover {
    background: #6dff9b;
}


@media (max-width: 800px) {

    .boscoin-packages {
        grid-template-columns: repeat(2, 1fr);
    }

}


@media (max-width: 500px) {

    .boscoins-page {
        padding: 45px 15px;
    }

    .boscoins-header h1 {
        font-size: 30px;
    }

    .boscoin-packages {
        grid-template-columns: 1fr;
    }

}/* =========================
   GIFT CARD PAGE
========================= */

.giftcard-page {
    min-height: calc(100vh - 78px);

    background: #070909;

    display: flex;
    justify-content: center;
    align-items: flex-start;

    padding: 70px 20px;
}


.giftcard-box {
    width: 100%;
    max-width: 520px;

    position: relative;

    background: #101516;
    border: 1px solid #252c2e;

    border-radius: 16px;

    padding: 45px 35px 40px;

    box-sizing: border-box;
}


.giftcard-back {
    position: absolute;

    top: 15px;
    left: 15px;

    width: 40px;
    height: 40px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #151a1b;

    border: 1px solid #252c2e;

    border-radius: 7px;

    color: #fff;

    text-decoration: none;

    font-size: 25px;
}


.giftcard-back:hover {
    border-color: #39ff78;
    color: #39ff78;
}


.giftcard-icon {
    text-align: center;

    font-size: 42px;

    margin-bottom: 8px;
}


.giftcard-box h1 {
    text-align: center;

    color: #fff;

    font-size: 28px;

    margin: 0 0 45px;
}


.giftcard-question {
    color: #fff;

    font-size: 16px;

    margin: 0 0 12px;
}


.gift-code-input {
    width: 100%;

    height: 48px;

    box-sizing: border-box;

    padding: 0 14px;

    background: #1b191f;

    border: none;

    border-radius: 7px;

    color: #fff;

    font-size: 15px;

    outline: none;

    margin-bottom: 18px;
}


.gift-code-input::placeholder {
    color: #8d9698;
}


.gift-code-input:focus {
    outline: 1px solid #39ff78;
}


.redeem-button {
    width: 100%;

    height: 48px;

    border: none;

    border-radius: 6px;

    background: #39ff78;

    color: #fff;

    font-size: 16px;

    font-weight: 700;

    cursor: pointer;
}


.redeem-button:hover {
    opacity: 0.9;
}


.redeem-message {
    margin: 15px 0 0;

    font-size: 14px;

    text-align: center;

    min-height: 20px;
}


.redeem-message.error {
    color: #ff6b6b;
}


@media (max-width: 600px) {

    .giftcard-page {
        padding: 35px 10px;
    }

    .giftcard-box {
        padding: 45px 20px 30px;
    }

}.redeem-button {
    width: 100%;
    height: 48px;

    border: none;
    border-radius: 6px;

    background: #39ff78;
    color: #061009;

    font-size: 16px;
    font-weight: 700;

    cursor: pointer;
}

.redeem-button:hover {
    background: #6dff9b;
}.giftcard-icon {
    color: #39ff78 !important;
}.giftcard-icon {
    width: 55px;
    height: 55px;
    margin: 0 auto 10px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #39ff78;
}

.giftcard-icon svg {
    width: 45px;
    height: 45px;

    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}/* =========================
   SEARCH OVERLAY
========================= */

.search-overlay {
    position: fixed;
    inset: 0;

    z-index: 2000;

    background: #000;

    display: none;

    overflow-y: auto;

    padding: 70px 5% 50px;

    box-sizing: border-box;
}

.search-overlay.show {
    display: block;
}


/* SEARCH BAR */

.search-box {
    width: 100%;
    max-width: 1250px;

    margin: 0 auto;

    display: flex;
    align-items: center;

    gap: 12px;
}


/* BIG SEARCH ICON */

.search-large-icon {
    color: #fff;

    font-size: 44px;

    line-height: 1;
}


/* SEARCH INPUT */

#search-input {
    flex: 1;

    height: 54px;

    padding: 0 16px;

    box-sizing: border-box;

    background: #fff;

    border: none;

    outline: none;

    color: #111;

    font-size: 15px;
}

#search-input::placeholder {
    color: #777;
}


/* CLOSE BUTTON */

.search-close {
    width: 45px;
    height: 45px;

    border: none;

    background: transparent;

    color: #fff;

    font-size: 40px;

    line-height: 1;

    cursor: pointer;
}

.search-close:hover {
    color: #39ff78;
}


/* SEARCH RESULTS */

.search-results {
    width: 100%;
    max-width: 1250px;

    margin: 70px auto 0;

    display: grid;

    grid-template-columns: repeat(7, 1fr);

    gap: 28px 20px;
}


/* GAME CARD */

.search-game-card {
    text-decoration: none;

    color: #fff;

    text-align: center;

    display: block;
}

.search-game-image {
    width: 100%;
    aspect-ratio: 1 / 1;

    overflow: hidden;

    border-radius: 10px;

    border: 1px solid #252c2e;

    background: #101516;
}

.search-game-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
}

.search-game-name {
    margin-top: 8px;

    color: #fff;

    font-size: 15px;

    line-height: 20px;
}

.search-game-card:hover .search-game-name {
    color: #39ff78;
}


/* NO RESULTS */

.search-no-results {
    grid-column: 1 / -1;

    text-align: center;

    color: #8d9698;

    font-size: 16px;

    padding: 40px;
}


/* MOBILE */

@media (max-width: 800px) {

    .search-overlay {
        padding: 30px 15px;
    }

    .search-results {
        grid-template-columns: repeat(2, 1fr);

        gap: 25px 15px;

        margin-top: 40px;
    }

    .search-large-icon {
        font-size: 34px;
    }

    #search-input {
        height: 48px;
    }
}/* =========================
   SEARCH OVERLAY ANIMATION
========================= */

.search-overlay {
    position: fixed;
    inset: 0;
    z-index: 2000;

    background: #000;

    display: block;

    overflow-y: auto;

    padding: 70px 5% 50px;
    box-sizing: border-box;

    /* Hidden initially */
    opacity: 0;
    visibility: hidden;
    transform: translateY(-100%);

    transition:
        transform 0.45s ease,
        opacity 0.3s ease,
        visibility 0.45s ease;
}


/* OPEN */

.search-overlay.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}


/* SEARCH BAR */

.search-box {
    width: 100%;
    max-width: 1250px;

    margin: 0 auto;

    display: flex;
    align-items: center;

    gap: 12px;
}


.search-large-icon {
    color: #fff;
    font-size: 44px;
    line-height: 1;
}


#search-input {
    flex: 1;

    height: 54px;

    padding: 0 16px;

    background: #fff;

    border: none;
    outline: none;

    color: #111;

    font-size: 15px;
}


#search-input::placeholder {
    color: #777;
}


/* CLOSE */

.search-close {
    width: 45px;
    height: 45px;

    border: none;
    background: transparent;

    color: #fff;

    font-size: 40px;

    line-height: 1;

    cursor: pointer;
}

.search-close:hover {
    color: #39ff78;
}


/* RESULTS */

.search-results {
    width: 100%;
    max-width: 1250px;

    margin: 70px auto 0;

    display: grid;

    grid-template-columns: repeat(7, 1fr);

    gap: 28px 20px;
}


/* GAME CARD */

.search-game-card {
    display: block;

    color: #fff;

    text-decoration: none;

    text-align: center;

    animation: searchGameIn 0.35s ease both;
}

@keyframes searchGameIn {

    from {
        opacity: 0;
        transform: translateY(15px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}


.search-game-image {
    width: 100%;
    aspect-ratio: 1 / 1;

    overflow: hidden;

    border-radius: 10px;

    border: 1px solid #252c2e;

    background: #101516;

    transition: 0.2s ease;
}


.search-game-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
}


.search-game-name {
    margin-top: 8px;

    color: #fff;

    font-size: 15px;
    line-height: 20px;
}


.search-game-card:hover .search-game-image {
    border-color: #39ff78;

    transform: translateY(-4px);
}


.search-game-card:hover .search-game-name {
    color: #39ff78;
}


/* =========================
   NO RESULTS
========================= */

.search-no-results {

    grid-column: 1 / -1;

    width: 100%;

    min-height: 250px;

    display: flex;

    align-items: center;
    justify-content: center;

    flex-direction: column;

    color: #fff;

    font-size: 20px;

    font-weight: 600;

    text-align: center;
}


.search-no-results::before {

    content: "⌕";

    font-size: 55px;

    color: #39ff78;

    margin-bottom: 15px;
}


/* MOBILE */

@media (max-width: 800px) {

    .search-overlay {
        padding: 30px 15px;
    }

    .search-results {
        grid-template-columns: repeat(2, 1fr);

        gap: 25px 15px;

        margin-top: 40px;
    }

    .search-large-icon {
        font-size: 34px;
    }

}/* =================================
   GAME PAGE TRUST BADGES
================================= */

.trust-badges {
    width: 100%;
    max-width: 900px;
    margin: 5px auto 30px;

    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;

    gap: 8px;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 7px;

    padding: 7px 12px;

    background: #ffffff;
    color: #111111;

    border-radius: 8px;

    font-size: 13px;
    line-height: 1;

    white-space: nowrap;
}

.trust-badge span {
    font-size: 17px;
    line-height: 1;
}

.trust-badge strong {
    font-weight: 600;
}


/* =================================
   MOBILE
================================= */

@media (max-width: 700px) {

    .trust-badges {
        justify-content: flex-start;
        gap: 6px;

        margin: 10px 0 22px;
        padding: 0 10px;

        box-sizing: border-box;
    }

    .trust-badge {
        padding: 6px 9px;
        font-size: 11px;
    }

    .trust-badge span {
        font-size: 14px;
    }

}/* =================================
   GAME PAGE TRUST BADGES
================================= */

.trust-badges {
    width: 100%;
    max-width: 900px;

    margin: 5px auto 30px;

    display: flex;
    justify-content: center;
    align-items: center;

    flex-wrap: wrap;
    gap: 8px;
}


.trust-badge {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 7px;

    padding: 7px 12px;

    background: #ffffff;
    color: #111111;

    border-radius: 8px;

    font-family: inherit;
    font-size: 13px;
    font-weight: 500;

    line-height: 1;

    white-space: nowrap;
}


.trust-badge svg {
    width: 17px;
    height: 17px;

    fill: none;

    stroke: #111111;

    stroke-width: 2;

    stroke-linecap: round;
    stroke-linejoin: round;

    flex-shrink: 0;
}


.trust-badge span {
    color: #111111;

    font-family: inherit;

    font-size: 13px;
    font-weight: 500;
}


/* =================================
   MOBILE TRUST BADGES
================================= */

@media (max-width: 700px) {

    .trust-badges {
        justify-content: flex-start;

        gap: 6px;

        margin: 10px 0 22px;

        padding: 0 10px;

        box-sizing: border-box;
    }


    .trust-badge {
        padding: 6px 9px;

        font-size: 11px;
    }


    .trust-badge svg {
        width: 14px;
        height: 14px;
    }


    .trust-badge span {
        font-size: 11px;
    }

}/* =========================================================
   CATEGORY CARDS
========================================================= */

.package-categories {
    width: 100%;
    display: flex;
    gap: 12px;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 5px 2px 10px;
    box-sizing: border-box;
    scrollbar-width: thin;
}

.package-categories::-webkit-scrollbar {
    height: 5px;
}

.package-categories::-webkit-scrollbar-thumb {
    background: #333;
    border-radius: 10px;
}


/* CATEGORY BUTTON */

.category-button {
    flex: 0 0 130px;
    width: 130px;
    height: 140px;

    padding: 0;

    display: flex;
    flex-direction: column;

    align-items: center;
    justify-content: flex-end;

    overflow: hidden;

    background: #101516;
    border: 1px solid #252c2e;
    border-radius: 12px;

    color: #ffffff;

    cursor: pointer;

    transition: 0.2s ease;
}


/* CATEGORY IMAGE */

.category-button .category-icon {
    width: 100%;
    height: 105px;

    margin: 0;
    padding: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;

    background: #000;
}


/* IMPORTANT:
   Prevent the image from becoming huge */

.category-button .category-icon img {
    width: 100%;
    height: 100%;

    max-width: none;
    max-height: none;

    display: block;

    object-fit: cover;
    object-position: center;
}


/* CATEGORY NAME */

.category-button .category-name {
    width: 100%;
    height: 35px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #101516;

    color: #ffffff;

    font-size: 13px;
    font-weight: 600;

    text-align: center;

    padding: 0 5px;

    box-sizing: border-box;
}


/* ACTIVE CATEGORY */

.category-button.active {
    border-color: #39ff78;
    background: #101516;
}

.category-button.active .category-name {
    background: #39ff78;
    color: #061009;
}


/* HOVER */

.category-button:hover {
    border-color: #39ff78;
    transform: translateY(-2px);
}


/* =========================================================
   PACKAGE CARDS
========================================================= */

.package-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}


.package-card {
    position: relative;

    min-height: 125px;

    padding: 14px;

    background: #333333;

    border: 1px solid #555;
    border-radius: 10px;

    color: #ffffff;

    text-align: left;

    cursor: pointer;

    box-sizing: border-box;

    transition: 0.2s ease;
}


.package-card:hover {
    border-color: #39ff78;
    transform: translateY(-2px);
}


.package-card.selected {
    border-color: #39ff78;
    box-shadow: 0 0 0 1px #39ff78;
}


/* PACKAGE NAME */

.package-card .package-name {
    width: calc(100% - 65px);

    color: #ffffff;

    font-size: 14px;
    font-weight: 600;

    line-height: 19px;
}


/* BONUS */

.package-card .package-bonus {
    width: calc(100% - 65px);

    margin-top: 2px;

    color: #ffffff;

    font-size: 13px;
    line-height: 18px;
}


/* PACKAGE IMAGE */

.package-card .package-icon {
    position: absolute;

    top: 12px;
    right: 12px;

    width: 48px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;
}


.package-card .package-icon img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: contain;
}


/* PRICE */

.package-card .package-price {
    position: absolute;

    left: 14px;
    bottom: 12px;

    color: #39ff78;

    font-size: 18px;
    font-weight: 700;
}


/* EMPTY CATEGORY */

.no-packages {
    grid-column: 1 / -1;

    padding: 35px 20px;

    text-align: center;

    color: #8d9698;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {

    .category-button {
        flex: 0 0 115px;
        width: 115px;
        height: 125px;
    }

    .category-button .category-icon {
        height: 92px;
    }

    .category-button .category-name {
        height: 33px;
        font-size: 12px;
    }

    .package-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .package-card {
        min-height: 120px;
    }

}/* =========================================================
   BOGASTORE GAME PAGE — WIDE WICKSTORE STYLE
========================================================= */

/* Main game page width */
.game-page,
.game-container,
.topup-page {
    width: min(1280px, calc(100% - 40px)) !important;
    max-width: 1280px !important;
    margin: 0 auto !important;
}


/* Make the main sections wide */
.game-section,
.player-section,
.player-card,
.package-section,
.packages-section,
.game-content {
    width: 100%;
    box-sizing: border-box;
}


/* =========================================================
   PLAYER INFORMATION
========================================================= */

.player-card {
    background: #050505 !important;
    border: 1px solid #252c2e !important;
    border-radius: 10px !important;
    padding: 20px !important;
    margin-bottom: 20px !important;
}

.player-card h2,
.player-card h3,
.section-title {
    color: #39ff78 !important;
}


/* Inputs */
.player-card input,
#player-id,
#server-id {
    width: 100% !important;
    height: 50px !important;

    box-sizing: border-box;

    background: #000 !important;
    border: 1px solid #555 !important;
    border-radius: 6px !important;

    color: #fff !important;

    padding: 0 15px !important;
    font-size: 15px !important;
}

.player-card input:focus,
#player-id:focus,
#server-id:focus {
    border-color: #39ff78 !important;
    outline: none !important;
}


/* Verify button */
.verify-button,
#verify-button {
    width: 100% !important;
    height: 48px !important;

    background: #39ff78 !important;
    color: #061009 !important;

    border: none !important;
    border-radius: 6px !important;

    font-weight: 700 !important;
    cursor: pointer;
}

.verify-button:hover,
#verify-button:hover {
    background: #6dff9b !important;
}


/* =========================================================
   CHOOSE CATEGORY
========================================================= */

.package-section {
    background: #050505 !important;
    border: 1px solid #252c2e !important;
    border-radius: 10px !important;

    padding: 18px !important;

    margin-top: 20px !important;
}


.package-section h2,
.package-section h3 {
    color: #39ff78 !important;
}


/* Category row */

.package-categories {
    display: flex !important;

    width: 100% !important;

    gap: 10px !important;

    overflow-x: auto !important;
    overflow-y: hidden !important;

    padding: 5px 0 15px !important;

    scrollbar-width: thin;
}


/* Category card */

.category-button {
    flex: 0 0 105px !important;

    width: 105px !important;
    height: 115px !important;

    padding: 0 !important;

    background: #050505 !important;

    border: 1px solid #444 !important;
    border-radius: 9px !important;

    overflow: hidden !important;

    color: #fff !important;

    display: flex !important;
    flex-direction: column !important;

    align-items: center !important;
    justify-content: flex-end !important;

    transition: 0.2s ease !important;
}


/* Category image */

.category-button .category-icon {
    width: 100% !important;
    height: 82px !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    background: #000 !important;

    overflow: hidden !important;
}

.category-button .category-icon img {
    width: 72px !important;
    height: 72px !important;

    object-fit: contain !important;

    display: block !important;
}


/* Category name */

.category-button .category-name {
    width: 100% !important;
    height: 33px !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    background: #050505 !important;

    color: #fff !important;

    font-size: 12px !important;
    font-weight: 600 !important;

    text-align: center !important;
}


/* Active category */

.category-button.active {
    border-color: #39ff78 !important;

    background: #0c3b20 !important;
}

.category-button.active .category-name {
    background: #39ff78 !important;
    color: #061009 !important;
}


/* =========================================================
   DIVIDER BEFORE PACKAGES
========================================================= */

.package-list-wrapper {
    border-top: 1px solid #252c2e;
    margin-top: 15px;
    padding-top: 18px;
}


/* =========================================================
   PACKAGE GRID
========================================================= */

.package-grid {
    width: 100% !important;

    display: grid !important;

    grid-template-columns:
        repeat(4, minmax(0, 1fr)) !important;

    gap: 28px 18px !important;

    box-sizing: border-box;
}


/* =========================================================
   PACKAGE CARD — WICKSTORE STYLE
========================================================= */

.package-card {
    position: relative !important;

    width: 100% !important;
    min-height: 128px !important;

    box-sizing: border-box !important;

    padding: 14px !important;

    background: #333333 !important;

    border: 1px solid #555 !important;
    border-radius: 9px !important;

    color: #fff !important;

    text-align: left !important;

    cursor: pointer;

    transition:
        border-color 0.2s ease,
        transform 0.2s ease,
        background 0.2s ease !important;
}


/* Package hover */

.package-card:hover {
    border-color: #39ff78 !important;
    transform: translateY(-2px);
}


/* Selected */

.package-card.selected {
    border-color: #39ff78 !important;

    box-shadow:
        0 0 0 1px #39ff78 !important;

    background: #303633 !important;
}


/* Package name */

.package-card .package-name {
    width: calc(100% - 70px) !important;

    color: #fff !important;

    font-size: 14px !important;
    font-weight: 600 !important;

    line-height: 19px !important;

    margin: 0 !important;
}


/* Bonus text */

.package-card .package-bonus {
    width: calc(100% - 70px) !important;

    color: #fff !important;

    font-size: 13px !important;

    line-height: 18px !important;

    margin-top: 1px !important;
}


/* Package image */

.package-card .package-icon {
    position: absolute !important;

    top: 14px !important;
    right: 14px !important;

    width: 55px !important;
    height: 55px !important;

    display: flex !important;

    align-items: center !important;
    justify-content: center !important;

    overflow: hidden !important;
}


/* Image itself */

.package-card .package-icon img {
    width: 100% !important;
    height: 100% !important;

    object-fit: contain !important;

    display: block !important;
}


/* Price */

.package-card .package-price {
    position: absolute !important;

    left: 14px !important;
    bottom: 12px !important;

    color: #39ff78 !important;

    font-size: 18px !important;
    font-weight: 700 !important;
}


/* =========================================================
   SUMMARY
========================================================= */

.order-summary,
.summary-card {
    width: 100% !important;

    background: #050505 !important;

    border: 1px solid #252c2e !important;

    border-radius: 10px !important;

    box-sizing: border-box !important;
}


/* =========================================================
   DESKTOP
========================================================= */

@media (min-width: 1100px) {

    .package-grid {
        grid-template-columns:
            repeat(4, minmax(0, 1fr)) !important;

        gap: 28px 18px !important;
    }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1000px) {

    .game-page,
    .game-container,
    .topup-page {
        width: calc(100% - 30px) !important;
    }

    .package-grid {
        grid-template-columns:
            repeat(3, minmax(0, 1fr)) !important;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {

    .game-page,
    .game-container,
    .topup-page {
        width: calc(100% - 20px) !important;
    }

    .package-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr)) !important;

        gap: 12px !important;
    }

    .package-card {
        min-height: 120px !important;
    }

    .category-button {
        flex: 0 0 100px !important;
        width: 100px !important;
    }

}/* =========================================================
   FORCE GAME PAGE TO WICKSTORE-STYLE WIDTH
========================================================= */

main {
    width: 100%;
}

.game-page {
    width: calc(100% - 240px) !important;
    max-width: 1280px !important;
    margin-left: auto !important;
    margin-right: auto !important;
}


/* Any common inner wrapper */
.game-page > *,
.game-page .game-container,
.game-page .game-content {
    max-width: none !important;
}


/* Player + package sections */
.game-page .player-card,
.game-page .package-section,
.game-page .packages-section,
.game-page .order-summary {
    width: 100% !important;
    max-width: none !important;
    box-sizing: border-box !important;
}


/* Package grid */
.game-page .package-grid {
    width: 100% !important;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 28px 18px !important;
}


/* Desktop */
@media (min-width: 1200px) {

    .game-page {
        width: calc(100% - 240px) !important;
        max-width: 1280px !important;
    }

}


/* Laptop */
@media (min-width: 801px) and (max-width: 1199px) {

    .game-page {
        width: calc(100% - 60px) !important;
        max-width: none !important;
    }

    .game-page .package-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    }

}


/* Mobile */
@media (max-width: 700px) {

    .game-page {
        width: calc(100% - 20px) !important;
        max-width: none !important;
    }

    .game-page .package-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 12px !important;
    }

}/* =========================================================
   BOGASTORE GAME TOP-UP PAGE
   WICKSTORE-STYLE / GREEN THEME
========================================================= */


/* MAIN PAGE */

.wick-game-page {
    width: calc(100% - 240px);
    max-width: 1280px;
    margin: 40px auto 70px;
    box-sizing: border-box;
}


/* MAIN BOX */

.topup-box {
    width: 100%;
    box-sizing: border-box;

    background: #000;

    border: 1px solid #252c2e;
    border-radius: 10px;

    padding: 18px 15px 20px;

    margin-bottom: 20px;
}


/* SECTION TITLE */

.topup-title {
    color: #39ff78;

    font-size: 14px;
    font-weight: 700;

    margin-bottom: 18px;

    text-transform: uppercase;
}


/* ID FIELDS */

.id-field {
    width: 100%;
    margin-bottom: 10px;
}


.id-field label {
    display: block;

    color: #9ba3a5;

    font-size: 14px;

    margin-bottom: 7px;
}


.id-field input {
    width: 100%;
    height: 50px;

    box-sizing: border-box;

    background: #000;

    border: 1px solid #3a4143;

    border-radius: 4px;

    padding: 0 15px;

    color: #fff;

    font-size: 15px;

    outline: none;
}


.id-field input::placeholder {
    color: #777;
}


.id-field input:focus {
    border-color: #39ff78;
}


/* VALIDATE BUTTON */

.validate-button {
    width: 100%;
    height: 48px;

    margin-top: 2px;

    border: none;
    border-radius: 4px;

    background: #39ff78;

    color: #061009;

    font-size: 15px;
    font-weight: 700;

    cursor: pointer;

    transition: 0.2s ease;
}


.validate-button:hover {
    background: #6dff9b;
}


.validate-button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}


/* VERIFICATION MESSAGE */

.verification-status {
    width: 100%;

    margin-top: 10px;

    color: #39ff78;

    font-size: 13px;
}


/* DIVIDER */

.section-divider {
    width: 100%;

    height: 1px;

    background: #252c2e;

    margin: 30px 0 18px;
}


/* =========================================================
   CATEGORY CARDS
========================================================= */

.package-categories {
    display: flex;

    gap: 10px;

    width: 100%;

    overflow-x: auto;

    padding-bottom: 2px;
}


.package-categories::-webkit-scrollbar {
    height: 4px;
}


.package-categories::-webkit-scrollbar-thumb {
    background: #333;
    border-radius: 10px;
}


/* CATEGORY BUTTON */

.category-button {
    flex: 0 0 100px;

    width: 100px;
    height: 100px;

    padding: 8px;

    box-sizing: border-box;

    background: #050505;

    border: 1px solid #3a4143;

    border-radius: 9px;

    color: #fff;

    cursor: pointer;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: space-between;

    transition: 0.2s ease;
}


.category-button:hover {
    border-color: #39ff78;
}


.category-button.active {
    background: #39ff78;

    border-color: #39ff78;

    color: #061009;
}


/* CATEGORY IMAGE */

.category-icon {
    width: 58px;
    height: 58px;

    display: flex;

    align-items: center;
    justify-content: center;

    overflow: hidden;

    border-radius: 5px;

    background: #fff;
}


.category-icon img {
    width: 100%;
    height: 100%;

    object-fit: contain;

    display: block;
}


.category-name {
    width: 100%;

    text-align: center;

    font-size: 11px;

    font-weight: 600;

    line-height: 13px;
}


/* =========================================================
   PACKAGE GRID
========================================================= */

.package-grid {
    width: 100%;

    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 28px 32px;

    box-sizing: border-box;
}


/* PACKAGE CARD */

.package-card {
    position: relative;

    width: 100%;
    height: 130px;

    box-sizing: border-box;

    padding: 13px 12px;

    background: #333;

    border: 1px solid #555;

    border-radius: 10px;

    color: #fff;

    text-align: left;

    cursor: pointer;

    display: flex;

    flex-direction: column;

    align-items: flex-start;

    transition: 0.2s ease;
}


.package-card:hover {
    border-color: #39ff78;

    transform: translateY(-2px);
}


.package-card.selected {
    border: 2px solid #39ff78;

    background: #303634;
}


/* PACKAGE NAME */

.package-name {
    max-width: 72%;

    color: #fff;

    font-size: 14px;

    font-weight: 600;

    line-height: 18px;
}


/* PACKAGE PRICE */

.package-price {
    margin-top: auto;

    color: #39ff78;

    font-size: 18px;

    font-weight: 700;
}


/* PACKAGE IMAGE */

.package-icon {
    position: absolute;

    right: 12px;
    top: 15px;

    width: 58px;
    height: 58px;

    display: flex;

    align-items: center;
    justify-content: center;

    overflow: hidden;
}


.package-icon img {
    width: 100%;
    height: 100%;

    object-fit: contain;

    display: block;
}


/* =========================================================
   ORDER SUMMARY
========================================================= */

.order-summary-box {
    max-width: 100%;
}


.summary {
    width: 100%;
}


.summary-row {
    display: flex;

    justify-content: space-between;

    align-items: center;

    gap: 20px;

    padding: 12px 0;

    color: #9ba3a5;

    font-size: 14px;
}


.summary-row strong {
    color: #fff;

    text-align: right;

    font-weight: 600;
}


.summary-divider {
    width: 100%;

    height: 1px;

    background: #252c2e;

    margin: 5px 0;
}


.summary-row.total {
    padding-top: 16px;
}


.summary-row.total span {
    color: #fff;

    font-size: 16px;

    font-weight: 700;
}


.summary-row.total strong {
    color: #39ff78;

    font-size: 21px;
}


/* CHECKOUT */

.checkout-button {
    width: 100%;

    height: 50px;

    margin-top: 15px;

    border: none;

    border-radius: 5px;

    background: #39ff78;

    color: #061009;

    font-size: 15px;

    font-weight: 700;

    cursor: pointer;

    transition: 0.2s ease;
}


.checkout-button:hover {
    background: #6dff9b;
}


/* =========================================================
   HEADER
========================================================= */
/* =========================================================
   HEADER - BOGASTORE
========================================================= */

.navbar {
    position: relative !important;

    min-height: 72px;

    padding: 0 5%;

    box-sizing: border-box;

    background: #070909 !important;

    border-bottom: none !important;

    display: flex;
    align-items: center;
    justify-content: space-between;

    z-index: 100;
}


/* =========================================
   NEON GREEN GLOWING LINE
========================================= */

.navbar::after {
    content: "";

    position: absolute;

    left: 0;
    right: 0;
    bottom: -1px;

    height: 2px;

    background: #39ff78 !important;

    box-shadow:
        0 0 4px #39ff78,
        0 0 9px #39ff78,
        0 0 18px rgba(57, 255, 120, 0.9),
        0 0 30px rgba(57, 255, 120, 0.6);

    pointer-events: none;

    z-index: 9999;
}


/* =========================================
   LOGO
========================================= */

.navbar .logo {
    color: #ffffff;

    text-decoration: none;

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    font-size: 18px;

    font-weight: 700;
}


/* GREEN PART OF LOGO */

.navbar .logo span {
    color: #39ff78;
}


/* =========================================
   NAVIGATION
========================================= */

.navbar nav {
    display: flex;

    align-items: center;

    gap: 32px;
}


.navbar nav a {
    color: #ffffff;

    text-decoration: none;

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    font-size: 17px;

    font-weight: 400;

    letter-spacing: 0;

    transition:
        color 0.2s ease,
        opacity 0.2s ease;
}


.navbar nav a:hover {
    color: #39ff78;
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 750px) {

    .navbar {
        padding: 0 15px;
    }

    .navbar nav {
        display: none;
    }

}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1100px) {

    .wick-game-page {
        width: calc(100% - 60px);
    }

    .package-grid {
        grid-template-columns:
            repeat(3, minmax(0, 1fr));
    }

}


@media (max-width: 750px) {

    .wick-game-page {
        width: calc(100% - 20px);

        margin-top: 20px;
    }


    .navbar {
        padding: 0 15px;
    }


    .navbar nav {
        display: none;
    }


    .package-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap: 14px;
    }


    .package-card {
        height: 120px;
    }


    .package-name {
        font-size: 12px;

        line-height: 16px;
    }


    .package-price {
        font-size: 16px;
    }


    .package-icon {
        width: 48px;
        height: 48px;

        right: 8px;
        top: 12px;
    }


    .category-button {
        flex-basis: 92px;

        width: 92px;
        height: 95px;
    }


    .category-icon {
        width: 52px;
        height: 52px;
    }

}/* =========================================
   GAME TOPUP - WICKSTORE STYLE
========================================= */

.game-page {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 35px 20px 70px;
    box-sizing: border-box;
}

.game-page .order-container {
    width: 100%;
    max-width: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.game-page .order-card {
    width: 100%;
    max-width: none;
    box-sizing: border-box;
    background: #000;
    border: 1px solid #252c2e;
    border-radius: 10px;
    padding: 16px;
}


/* PLAYER INFORMATION */

.game-page .order-card:first-child {
    padding: 16px;
}

.game-page .card-heading {
    margin-bottom: 20px;
}

.game-page .card-heading .number {
    background: #101516;
    color: #39ff78;
}


/* REMOVE OLD CARD HEADING LOOK FROM PACKAGE SECTION */

.game-page .order-card:nth-child(2) .card-heading {
    display: none;
}


/* CATEGORY AREA */

.package-categories {
    width: 100%;
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding: 5px 0 25px;
    border-bottom: 1px solid #252c2e;
}

.package-categories::-webkit-scrollbar {
    height: 5px;
}

.package-categories::-webkit-scrollbar-track {
    background: #101516;
}

.package-categories::-webkit-scrollbar-thumb {
    background: #39ff78;
    border-radius: 10px;
}


.category-button {
    flex: 0 0 100px;
    width: 100px;
    height: 100px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    gap: 8px;

    padding: 8px;

    background: #000;
    color: #fff;

    border: 1px solid #303637;
    border-radius: 10px;

    cursor: pointer;

    transition: 0.2s ease;
}

.category-button:hover {
    border-color: #39ff78;
}

.category-button.active {
    background: #39ff78;
    color: #061009;
    border-color: #39ff78;
}

.category-icon {
    width: 48px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #151a1b;
    border-radius: 7px;
}

.category-button.active .category-icon {
    background: rgba(0, 0, 0, 0.12);
}

.category-icon svg {
    width: 30px;
    height: 30px;

    fill: none;
    stroke: #39ff78;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.category-button.active .category-icon svg {
    stroke: #061009;
}

.category-button span {
    font-size: 11px;
    font-weight: 700;
    text-align: center;
    white-space: nowrap;
}


/* SELECT PACKAGE TITLE */

.game-page .order-card:nth-child(2)::after {
    content: "";
}


/* PACKAGE GRID */

.game-page .package-grid {
    width: 100%;
    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 28px 32px;

    padding-top: 20px;
}


/* PACKAGE CARD */

.game-page .package-card {
    position: relative;

    width: 100%;
    min-height: 130px;

    box-sizing: border-box;

    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;

    padding: 14px;

    background: #333;
    color: #fff;

    border: 1px solid #555;
    border-radius: 10px;

    text-align: left;

    cursor: pointer;

    transition:
        border-color 0.2s ease,
        transform 0.2s ease,
        background 0.2s ease;
}

.game-page .package-card:hover {
    border-color: #39ff78;
    transform: translateY(-2px);
}

.game-page .package-card.selected {
    border-color: #39ff78;
    box-shadow: 0 0 0 1px #39ff78;
    background: #202522;
}


/* PACKAGE NAME */

.game-page .package-name {
    max-width: 75%;

    color: #fff;

    font-size: 15px;
    font-weight: 700;

    line-height: 20px;
}


/* PACKAGE PRICE */

.game-page .package-price {
    margin-top: 20px;

    color: #39ff78;

    font-size: 18px;
    font-weight: 800;
}


/* VERIFY BUTTON */

.verify-button {
    width: 100%;
    height: 48px;

    background: #39ff78;
    color: #061009;

    border: none;
    border-radius: 6px;

    font-size: 15px;
    font-weight: 700;

    cursor: pointer;
}

.verify-button:hover {
    background: #6dff9b;
}


/* REMOVE EMOJI FROM VERIFICATION NOTE */

.verification-note span {
    display: none;
}


/* RESPONSIVE */

@media (max-width: 900px) {

    .game-page .package-grid {
        grid-template-columns:
            repeat(3, minmax(0, 1fr));

        gap: 18px;
    }

}


@media (max-width: 650px) {

    .game-page {
        padding: 20px 12px 50px;
    }

    .game-page .package-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap: 12px;
    }

    .game-page .package-card {
        min-height: 115px;
    }

    .game-page .package-name {
        font-size: 13px;
        line-height: 17px;
    }

    .game-page .package-price {
        font-size: 16px;
    }

}/* =========================================
   BOGASTORE GAME PAGE - FINAL STYLE
   Paste at VERY BOTTOM of style.css
========================================= */

.game-page {
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    padding: 35px 24px 80px;
}

/* GAME HEADER */

.game-page .game-header {
    max-width: none;
    padding: 20px 0 30px;
}

.game-page .game-title {
    display: flex;
    align-items: center;
    gap: 20px;
}

.game-page .large-game-icon {
    width: 82px;
    height: 82px;
    min-width: 82px;
    border-radius: 14px;
    overflow: hidden;
}

.game-page .large-game-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.game-page .game-title h1 {
    font-size: 32px;
    line-height: 1.2;
    margin: 4px 0;
}

.game-page .game-title p:last-child {
    color: #8d9698;
}


/* TRUST BADGES */

.game-page .trust-badges {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
    margin-bottom: 20px;
}

.game-page .trust-badge {
    min-height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;

    background: #101516;
    border: 1px solid #252c2e;
    border-radius: 8px;

    color: #aaa;
    font-size: 13px;
}

.game-page .trust-badge svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: #39ff78;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}


/* MAIN CARDS */

.game-page .order-container {
    width: 100%;
    max-width: none;
    padding: 0;
    margin: 0;

    display: flex;
    flex-direction: column;
    gap: 18px;
}

.game-page .order-card {
    width: 100%;
    margin: 0;

    background: #101516;
    border: 1px solid #252c2e;
    border-radius: 10px;

    padding: 22px;
}


/* CARD HEADINGS */

.game-page .card-heading {
    margin-bottom: 20px;
}

.game-page .card-heading .number {
    background: #151a1b;
    color: #39ff78;
}

.game-page .card-heading h2 {
    color: #fff;
}

.game-page .card-heading p {
    color: #8d9698;
}


/* INPUTS */

.game-page .form-group {
    margin-bottom: 16px;
}

.game-page .form-group label {
    color: #fff;
    font-size: 13px;
    font-weight: 600;
}

.game-page .form-group input {
    height: 48px;
    padding: 0 14px;

    background: #080a0a;
    border: 1px solid #303637;
    border-radius: 7px;

    color: #fff;
    font-size: 14px;
}

.game-page .form-group input:focus {
    border-color: #39ff78;
}


/* VERIFY BUTTON */

.game-page .verify-button {
    width: 100%;
    height: 46px;

    margin-top: 4px;

    background: #39ff78;
    color: #061009;

    border: none;
    border-radius: 7px;

    font-size: 14px;
    font-weight: 800;

    cursor: pointer;
}

.game-page .verify-button:hover {
    background: #6dff9b;
}


/* VERIFICATION */

.game-page .verification-status {
    margin-top: 10px;
}

.game-page .verification-note {
    margin-top: 12px;
    padding: 10px 12px;

    background: #151a1b;
    border: 1px solid #252c2e;
    border-radius: 7px;

    color: #7f888a;
}


/* =========================================
   CATEGORY SECTION
========================================= */

.game-page .package-categories {
    width: 100%;

    display: grid;
    grid-template-columns: repeat(4, 1fr);

    gap: 14px;

    padding: 0;
    margin: 0 0 22px;

    overflow: visible;
    border: none;
}


.game-page .category-button {
    width: 100%;
    min-width: 0;
    height: 115px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    gap: 9px;

    padding: 12px;

    background: #080a0a;
    color: #fff;

    border: 1px solid #303637;
    border-radius: 9px;

    cursor: pointer;

    transition: .2s ease;
}


.game-page .category-button:hover {
    border-color: #39ff78;
    transform: translateY(-2px);
}


.game-page .category-button.active {
    background: #0d2518;
    color: #39ff78;
    border: 1px solid #39ff78;
}


.game-page .category-icon {
    width: 50px;
    height: 50px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin: 0;
    background: #151a1b;
    border-radius: 8px;
}


.game-page .category-icon svg {
    width: 30px;
    height: 30px;

    fill: none;
    stroke: #39ff78;

    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}


.game-page .category-button span {
    font-size: 13px;
    font-weight: 700;
}


/* =========================================
   PACKAGE GRID
========================================= */

.game-page .package-grid {
    width: 100%;

    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 14px;

    padding: 0;
}


.game-page .package-card {
    position: relative;

    width: 100%;
    min-height: 118px;

    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;

    padding: 16px;

    background: #333;
    border: 1px solid #555;
    border-radius: 9px;

    color: #fff;

    text-align: left;

    cursor: pointer;

    transition: .2s ease;
}


.game-page .package-card:hover {
    border-color: #39ff78;
    transform: translateY(-2px);
}


.game-page .package-card.selected {
    background: #16221a;
    border-color: #39ff78;
    box-shadow: 0 0 0 1px #39ff78;
}


/* PACKAGE NAME */

.game-page .package-name {
    margin: 0;

    color: #fff;

    font-size: 14px;
    font-weight: 700;

    line-height: 20px;
}


/* PACKAGE PRICE */

.game-page .package-price {
    margin-top: 18px;

    color: #39ff78;

    font-size: 17px;
    font-weight: 800;
}


/* =========================================
   SUMMARY
========================================= */

.game-page .summary-row strong {
    color: #fff;
}

.game-page .summary-row.total strong {
    color: #39ff78;
}


/* CHECKOUT */

.game-page .checkout-button {
    background: #39ff78;
    color: #061009;
    border-radius: 7px;
}

.game-page .checkout-button:hover {
    background: #6dff9b;
}


/* =========================================
   DESKTOP WIDE
========================================= */

@media (min-width: 1200px) {

    .game-page {
        max-width: 1400px;
        padding-left: 30px;
        padding-right: 30px;
    }

}


/* =========================================
   TABLET
========================================= */

@media (max-width: 900px) {

    .game-page .trust-badges {
        grid-template-columns: repeat(3, 1fr);
    }

    .game-page .package-grid {
        grid-template-columns: repeat(3, 1fr);
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {

    .game-page {
        padding: 20px 12px 60px;
    }

    .game-page .game-header {
        padding: 10px 0 20px;
    }

    .game-page .game-title {
        gap: 13px;
    }

    .game-page .large-game-icon {
        width: 65px;
        height: 65px;
        min-width: 65px;
    }

    .game-page .game-title h1 {
        font-size: 23px;
    }

    .game-page .trust-badges {
        grid-template-columns: repeat(2, 1fr);
    }

    .game-page .trust-badge {
        font-size: 11px;
    }

    .game-page .package-categories {
        grid-template-columns: repeat(2, 1fr);
    }

    .game-page .package-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .game-page .package-card {
        min-height: 110px;
        padding: 12px;
    }

    .game-page .package-name {
        font-size: 12px;
        line-height: 17px;
    }

    .game-page .package-price {
        font-size: 15px;
    }

}/* =========================================
   WICKSTORE-STYLE NAVBAR
========================================= */

.navbar {
    position: relative;
    background: #050606;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 7%;
    box-sizing: border-box;
    border-bottom: none;
}

/* Glowing coloured line underneath navbar */
.navbar::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    height: 2px;

    background: linear-gradient(
        90deg,
        #7b2cff,
        #b84cff,
        #7b2cff
    );

    box-shadow:
        0 0 5px rgba(123, 44, 255, 0.8),
        0 0 12px rgba(184, 76, 255, 0.55);

    z-index: 5;
}


/* NAVIGATION */

.navbar nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 34px;
}


.navbar nav a {
    position: relative;

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    font-size: 17px;
    font-weight: 400;

    color: #ffffff;
    text-decoration: none;

    padding: 25px 0;

    transition:
        color 0.2s ease,
        opacity 0.2s ease;
}


.navbar nav a:hover {
    color: #ffffff;
    opacity: 0.75;
}


/* ACTIVE / CURRENT PAGE */

.navbar nav a.active {
    color: #ffffff;
}


/* Optional small coloured underline */

.navbar nav a.active::after {
    content: "";

    position: absolute;

    left: 0;
    right: 0;
    bottom: 17px;

    height: 2px;

    background: #b84cff;

    box-shadow:
        0 0 6px rgba(184, 76, 255, 0.8);
}


/* LOGO */

.navbar .logo {
    font-family:
        Arial,
        Helvetica,
        sans-serif;

    font-size: 20px;
    font-weight: 700;

    color: #ffffff;
    text-decoration: none;
}

.navbar .logo span {
    color: #39ff78;
    font-weight: 400;
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 700px) {

    .navbar {
        height: 62px;
        padding: 0 18px;
    }

    .navbar nav {
        gap: 15px;
    }

    .navbar nav a {
        font-size: 14px;
    }

}/* =========================================
   BOGASTORE NEON GREEN NAVBAR GLOW
========================================= */

.navbar {
    position: relative !important;
    border-bottom: none !important;
}

/* Glowing green line below navbar */
/* =========================================
   BOGASTORE NAVBAR - GREEN GLOW
========================================= */

.navbar {
    position: relative !important;
    min-height: 72px !important;

    background: #070909 !important;

    border-bottom: 2px solid #39ff78 !important;

    box-shadow:
        0 2px 6px rgba(57, 255, 120, 0.9),
        0 4px 15px rgba(57, 255, 120, 0.55),
        0 8px 30px rgba(57, 255, 120, 0.25) !important;

    z-index: 1000 !important;
}


/* NAV TEXT */

.navbar nav a {
    font-family: Arial, Helvetica, sans-serif !important;
    font-size: 17px !important;
    font-weight: 400 !important;
    color: #ffffff !important;
    text-decoration: none !important;
}

.navbar nav a:hover {
    color: #39ff78 !important;
}


/* LOGO */

.navbar .logo {
    color: #ffffff !important;
}

.navbar .logo span {
    color: #39ff78 !important;
}.package-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
}

.package-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}/* =========================================
   PAGE LOADING SCREEN
========================================= */

#page-loader {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    background: #050505;

    display: flex;
    align-items: center;
    justify-content: center;

    z-index: 999999;

    opacity: 1;
    visibility: visible;
    pointer-events: all;

    transition:
        opacity 0.35s ease,
        visibility 0.35s ease;
}

#page-loader.hide {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.loader-dots {
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
}

.loader-dots span {
    width: 14px;
    height: 14px;
    background: #39ff78;
    border-radius: 50%;

    box-shadow:
        0 0 8px rgba(57,255,120,.8),
        0 0 18px rgba(57,255,120,.4);

    animation: loaderBounce 1.2s infinite ease-in-out;
}

.loader-dots span:nth-child(1) {
    animation-delay: 0s;
}

.loader-dots span:nth-child(2) {
    animation-delay: .15s;
}

.loader-dots span:nth-child(3) {
    animation-delay: .3s;
}

@keyframes loaderBounce {
    0%, 60%, 100% {
        transform: translateY(0);
        opacity: .45;
    }

    30% {
        transform: translateY(-8px);
        opacity: 1;
    }
}

.loader-text {
    color: #39ff78;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 4px;

    text-shadow:
        0 0 8px rgba(57,255,120,.7),
        0 0 18px rgba(57,255,120,.35);
}/* =========================================
   BANNER ARROWS
========================================= */

.banner-slider {
    position: relative !important;
}

.banner-prev,
.banner-next {
    position: absolute !important;

    top: 50% !important;
    transform: translateY(-50%) !important;

    width: 42px !important;
    height: 42px !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    background: rgba(0, 0, 0, 0.75) !important;
    border: 1px solid rgba(255, 255, 255, 0.25) !important;
    border-radius: 50% !important;

    color: #ffffff !important;
    font-size: 25px !important;
    line-height: 1 !important;

    z-index: 50 !important;
    cursor: pointer !important;

    box-shadow: none !important;
}

.banner-prev {
    left: 10px !important;
    right: auto !important;
}

.banner-next {
    right: 10px !important;
    left: auto !important;
}

.banner-prev:hover,
.banner-next:hover {
    background: rgba(0, 0, 0, 0.9) !important;
    border-color: rgba(57, 255, 120, 0.7) !important;
}/* =========================================
   WICKSTORE-STYLE BANNER ARROWS
========================================= */

.banner-slider {
    position: relative !important;
    width: calc(100% - 84px) !important;
    max-width: 1150px !important;
    margin: 30px auto !important;
}

.banner-prev,
.banner-next {
    position: absolute !important;
    top: 50% !important;
    transform: translateY(-50%) !important;

    width: 40px !important;
    height: 40px !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    padding: 0 !important;

    background: rgba(35, 35, 35, 0.9) !important;
    border: 2px solid rgba(255, 255, 255, 0.35) !important;
    border-radius: 50% !important;

    color: #ffffff !important;
    font-size: 27px !important;
    font-weight: 400 !important;
    line-height: 1 !important;

    z-index: 100 !important;
    cursor: pointer !important;

    box-shadow: none !important;
}

.banner-prev {
    left: -55px !important;
}

.banner-next {
    right: -55px !important;
}

.banner-prev:hover,
.banner-next:hover {
    background: rgba(50, 50, 50, 1) !important;
    border-color: rgba(255, 255, 255, 0.6) !important;
}.wallet-button {
    display: flex;
    align-items: center;
    gap: 7px;

    height: 38px;
    min-width: 64px;
    padding: 0 10px;

    background: #333333;
    border-radius: 5px;

    color: #ffffff;
    text-decoration: none;
}

.wallet-icon {
    width: 23px;
    height: 23px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;
}

.wallet-icon img {
    width: 23px;
    height: 23px;

    object-fit: contain;
    display: block;
}

.wallet-balance {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 1;

    color: #eeeeee;
    white-space: nowrap;
}/* =========================================
   ACCOUNT DROPDOWN
========================================= */

.account-dropdown {
    position: relative;
    display: flex;
    align-items: center;
}

.account-dropdown .user-icon {
    cursor: pointer;
    border: none;
    background: transparent;
}

/* DROPDOWN */

.account-dropdown-menu {
    position: absolute;
    top: calc(100% + 12px);
    right: -5px;

    width: 175px;

    background: #ffffff;
    border-radius: 5px;

    padding: 10px 0;

    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.35);

    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);

    transition:
        opacity 0.2s ease,
        transform 0.2s ease,
        visibility 0.2s ease;

    z-index: 9999;
}

/* SMALL TRIANGLE */

.account-dropdown-menu::before {
    content: "";

    position: absolute;

    top: -8px;
    right: 18px;

    width: 0;
    height: 0;

    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid #ffffff;
}

/* SHOW */

.account-dropdown.open .account-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* MENU ITEMS */

.account-dropdown-menu a,
.account-dropdown-menu button {
    width: 100%;

    display: flex;
    align-items: center;

    gap: 12px;

    padding: 10px 18px;

    box-sizing: border-box;

    background: transparent;
    border: none;

    color: #30343b;

    text-decoration: none;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 15px;

    text-align: left;

    cursor: pointer;
}

.account-dropdown-menu a:hover,
.account-dropdown-menu button:hover {
    background: #f2f2f2;
}

.account-dropdown-menu span {
    width: 18px;

    display: inline-flex;
    justify-content: center;

    font-size: 17px;
}/* =========================================
   ACCOUNT SYSTEM
========================================= */

.account-layout {
    width: calc(100% - 200px);
    max-width: 1320px;

    margin: 30px auto;

    display: grid;
    grid-template-columns: 300px 1fr;

    gap: 16px;

    align-items: start;
}


/* =========================================
   SIDEBAR
========================================= */

.account-sidebar {
    background: #000;

    border-radius: 10px;

    padding: 22px 20px;

    min-height: 400px;

    box-sizing: border-box;
}


.account-sidebar h2 {
    margin: 0 0 15px;

    padding-bottom: 12px;

    border-bottom: 1px solid #333;

    color: #fff;

    font-size: 26px;

    font-weight: 400;
}


.account-menu {
    display: flex;
    flex-direction: column;

    gap: 3px;
}


.account-menu a,
.account-menu button {

    width: 100%;

    display: block;

    padding: 10px;

    box-sizing: border-box;

    background: transparent;

    border: none;

    border-radius: 5px;

    color: #fff;

    text-decoration: none;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 16px;

    text-align: left;

    cursor: pointer;
}


.account-menu a:hover,
.account-menu a.active,
.account-menu button:hover {

    background: #39ff78;

    color: #061009;
}


/* =========================================
   DASHBOARD
========================================= */

.account-dashboard {

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 12px;
}


.dashboard-card {

    min-height: 118px;

    background: #000;

    border-radius: 5px;

    padding: 20px 25px;

    box-sizing: border-box;

    display: flex;

    flex-direction: column;

    justify-content: center;
}


.dashboard-value {

    color: #fff;

    font-size: 40px;

    font-weight: 600;

    line-height: 1;

    margin-bottom: 8px;
}


.dashboard-label {

    color: #fff;

    font-size: 16px;
}


/* =========================================
   ACCOUNT DROPDOWN
========================================= */

.account-dropdown {

    position: relative;

    display: flex;

    align-items: center;
}


.account-dropdown .user-icon {

    cursor: pointer;

    border: none;

    background: transparent;
}


.account-dropdown-menu {

    position: absolute;

    top: calc(100% + 12px);

    right: -5px;

    width: 180px;

    background: #fff;

    border-radius: 5px;

    padding: 10px 0;

    box-shadow:
        0 8px 25px rgba(0, 0, 0, .35);

    opacity: 0;

    visibility: hidden;

    transform: translateY(-8px);

    transition:
        opacity .2s ease,
        transform .2s ease,
        visibility .2s ease;

    z-index: 9999;
}


.account-dropdown-menu::before {

    content: "";

    position: absolute;

    top: -8px;

    right: 18px;

    width: 0;

    height: 0;

    border-left: 8px solid transparent;

    border-right: 8px solid transparent;

    border-bottom: 8px solid #fff;
}


.account-dropdown.open
.account-dropdown-menu {

    opacity: 1;

    visibility: visible;

    transform: translateY(0);
}


.account-dropdown-menu a,
.account-dropdown-menu button {

    width: 100%;

    display: flex;

    align-items: center;

    gap: 12px;

    padding: 11px 18px;

    box-sizing: border-box;

    background: transparent;

    border: none;

    color: #30343b;

    text-decoration: none;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 15px;

    text-align: left;

    cursor: pointer;
}


.account-dropdown-menu a:hover,
.account-dropdown-menu button:hover {

    background: #f2f2f2;
}


.account-dropdown-menu span {

    width: 18px;

    display: inline-flex;

    justify-content: center;
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 700px) {

    .account-layout {

        width: calc(100% - 30px);

        grid-template-columns: 1fr;

    }


    .account-sidebar {

        min-height: auto;

    }


    .account-dashboard {

        grid-template-columns: 1fr;

    }

}.account-section-description {
    margin: -12px 0 20px;
    color: #999;
    font-size: 15px;
}

.account-section .order-container {
    width: 100%;
    margin: 0 0 16px;
}

.account-section .order-card {
    width: 100%;
    box-sizing: border-box;
}