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

body {
    background: #050505;
    color: #f5f5f5;
    font-family: Arial, Helvetica, sans-serif;
}

a {
    color: inherit;
    text-decoration: none;
}

.topbar {
    position: sticky;
    top: 0;
    z-index: 20;
    min-height: 82px;
    padding: 10px 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    background: rgba(5, 5, 5, 0.88);
    border-bottom: 1px solid rgba(255, 0, 0, 0.35);
    backdrop-filter: blur(10px);
}

.brand img {
    height: 58px;
    filter: drop-shadow(0 0 12px rgba(255,0,0,.55));
}

nav {
    display: flex;
    gap: 24px;
    font-weight: 800;
    text-transform: uppercase;
}

nav a:hover,
.lang:hover {
    color: #ff2222;
}

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

.lang {
    font-weight: 800;
    color: #ddd;
}

.user {
    color: #ff3b3b;
    font-weight: bold;
}

.btn {
    display: inline-block;
    padding: 13px 22px;
    border-radius: 10px;
    background: linear-gradient(135deg, #b30000, #ff2020);
    color: white;
    font-weight: 900;
    text-transform: uppercase;
    box-shadow: 0 0 22px rgba(255,0,0,.35);
    border: 1px solid rgba(255,255,255,.12);
}

.btn:hover {
    transform: translateY(-1px);
}

.btn.small {
    padding: 9px 13px;
    font-size: 0.82rem;
}

.btn.ghost {
    background: rgba(255,255,255,.08);
}

.hero {
    position: relative;
    min-height: calc(100vh - 82px);
    background: url("banner.png") center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at center, rgba(160,0,0,.18), transparent 35%),
        linear-gradient(rgba(0,0,0,.55), rgba(0,0,0,.94));
}

.hero-content {
    position: relative;
    width: min(900px, 92%);
    padding: 40px 20px;
}

.hero-logo {
    width: min(520px, 90%);
    margin-bottom: 10px;
    filter: drop-shadow(0 0 28px rgba(255,0,0,.85));
}

.tag {
    color: #ff3333;
    text-transform: uppercase;
    font-weight: 900;
    letter-spacing: 3px;
}

h1 {
    font-size: clamp(2.3rem, 6vw, 5rem);
    text-transform: uppercase;
    margin: 12px 0;
    text-shadow: 0 0 20px rgba(255,0,0,.75);
}

.hero p,
.page p {
    color: #ddd;
    font-size: 1.08rem;
    line-height: 1.7;
}

.actions {
    margin-top: 28px;
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.cards,
.shop-grid {
    width: min(1180px, 92%);
    margin: 45px auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.card,
.product,
details,
.alert {
    background: linear-gradient(180deg, rgba(35,35,35,.9), rgba(8,8,8,.95));
    border: 1px solid rgba(255,0,0,.28);
    border-radius: 18px;
    padding: 25px;
    box-shadow: 0 0 30px rgba(0,0,0,.55);
}

.card h2,
.product h2 {
    color: #ff2d2d;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.page {
    width: min(1180px, 92%);
    margin: 0 auto;
    padding: 70px 0;
    min-height: calc(100vh - 150px);
}

.page h1 {
    text-align: center;
    margin-bottom: 20px;
}

.page > p {
    text-align: center;
    max-width: 820px;
    margin: 0 auto 30px;
}

.price {
    font-size: 2rem;
    color: #fff;
    font-weight: 900;
    margin: 20px 0;
}

.alert {
    margin: 25px auto;
    max-width: 720px;
    text-align: center;
    color: #ffdede;
}

.rules {
    display: grid;
    gap: 16px;
    max-width: 900px;
    margin: 30px auto 0;
}

summary {
    cursor: pointer;
    color: #ff3333;
    font-weight: 900;
    font-size: 1.2rem;
}

details p {
    margin-top: 12px;
}

.success {
    text-align: center;
}

footer {
    padding: 24px;
    text-align: center;
    color: #999;
    border-top: 1px solid rgba(255,0,0,.25);
    background: #080808;
}

@media (max-width: 850px) {
    .topbar {
        flex-direction: column;
    }

    nav {
        flex-wrap: wrap;
        justify-content: center;
    }

    .cards,
    .shop-grid {
        grid-template-columns: 1fr;
    }
}


.leaderboard-box {
    overflow-x: auto;
    border-radius: 18px;
    border: 1px solid rgba(255,0,0,.3);
    box-shadow: 0 0 35px rgba(0,0,0,.65);
}

.leaderboard {
    width: 100%;
    border-collapse: collapse;
    background: rgba(8,8,8,.92);
}

.leaderboard th,
.leaderboard td {
    padding: 16px;
    text-align: left;
    border-bottom: 1px solid rgba(255,255,255,.08);
}

.leaderboard th {
    color: #ff3333;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: rgba(120,0,0,.22);
}

.leaderboard tr:hover {
    background: rgba(255,0,0,.08);
}

.status-card {
    max-width: 780px;
    margin: 35px auto 0;
    padding: 35px;
    border-radius: 22px;
    background:
        linear-gradient(180deg, rgba(40,40,40,.88), rgba(8,8,8,.96));
    border: 1px solid rgba(255,0,0,.35);
    box-shadow: 0 0 45px rgba(255,0,0,.18);
    text-align: center;
}

.status-card h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.server-state {
    display: inline-block;
    margin: 10px auto 28px;
    padding: 14px 28px;
    border-radius: 999px;
    font-size: 1.4rem;
    font-weight: 900;
    letter-spacing: 2px;
}

.server-state.online {
    color: #d8ffd8;
    background: rgba(0,150,50,.25);
    border: 1px solid rgba(0,255,80,.45);
    box-shadow: 0 0 22px rgba(0,255,80,.25);
}

.server-state.offline {
    color: #ffd8d8;
    background: rgba(150,0,0,.25);
    border: 1px solid rgba(255,0,0,.45);
    box-shadow: 0 0 22px rgba(255,0,0,.25);
}

.server-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.server-stats div {
    padding: 18px;
    border-radius: 14px;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.08);
}

.server-stats strong {
    display: block;
    color: #ff3333;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.server-stats span {
    font-size: 1.2rem;
    font-weight: 800;
}

@media (max-width: 850px) {
    .server-stats {
        grid-template-columns: 1fr;
    }
}

.last-update,
.debug-note {
    margin-top: 20px;
    color: #aaa;
    font-size: 0.95rem;
    text-align: center;
}

.server-stats.single-line {
    grid-template-columns: 1fr;
    margin-top: 18px;
}

/* Leaderboard ZREIGN Premium */
.leaderboard-page .lb-header {
    width: min(980px, 100%);
    margin: 25px auto 30px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.lb-stat {
    padding: 22px;
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(35,35,35,.92), rgba(5,5,5,.98));
    border: 1px solid rgba(255,0,0,.35);
    text-align: center;
    box-shadow: 0 0 25px rgba(255,0,0,.12);
}

.lb-stat strong {
    display: block;
    font-size: 1.7rem;
    color: #fff;
    text-shadow: 0 0 12px rgba(255,0,0,.65);
    margin-bottom: 8px;
}

.lb-stat span {
    color: #ff3333;
    text-transform: uppercase;
    font-weight: 900;
    font-size: .85rem;
    letter-spacing: 1px;
}

.leaderboard-box.premium {
    width: min(1100px, 100%);
    margin: 0 auto;
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid rgba(255,0,0,.45);
    box-shadow: 0 0 45px rgba(255,0,0,.18), inset 0 0 40px rgba(255,0,0,.04);
}

.leaderboard .rank-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 38px;
    height: 38px;
    border-radius: 999px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.12);
    font-weight: 900;
}

.leaderboard .player-name {
    font-weight: 900;
    color: #fff;
    text-transform: uppercase;
}

.leaderboard tr.top-rank {
    background: linear-gradient(90deg, rgba(255,0,0,.18), rgba(255,255,255,.03));
}

.leaderboard tr.top-1 .rank-badge {
    background: linear-gradient(135deg, #ffcc33, #8a4b00);
    color: #111;
}

.leaderboard tr.top-2 .rank-badge {
    background: linear-gradient(135deg, #ddd, #777);
    color: #111;
}

.leaderboard tr.top-3 .rank-badge {
    background: linear-gradient(135deg, #cd7f32, #5a2600);
    color: #fff;
}

@media (max-width: 850px) {
    .leaderboard-page .lb-header {
        grid-template-columns: 1fr;
    }
}


/* Boutique ZREIGN style cartes premium */
.shop-hero {
    position: relative;
    min-height: 360px;
    background: url("banner.png") center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    border-bottom: 1px solid rgba(255,0,0,.35);
}
.shop-hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(180,0,0,.25), transparent 35%), linear-gradient(rgba(0,0,0,.55), rgba(0,0,0,.96));
}
.shop-hero-content {
    position: relative;
    width: min(960px, 92%);
    padding: 60px 20px;
}
.shop-hero-logo {
    width: min(260px, 70%);
    margin-bottom: 12px;
    filter: drop-shadow(0 0 22px rgba(255,0,0,.85));
}
.shop-hero h1 {
    font-size: clamp(2.5rem, 6vw, 5.5rem);
    margin: 0 0 14px;
}
.shop-hero p {
    max-width: 820px;
    margin: auto;
    color: #ddd;
    font-size: 1.15rem;
    line-height: 1.6;
}
.shop-page {
    width: min(1460px, 94%);
    margin: 0 auto;
    padding: 42px 0 80px;
}
.shop-alert {
    margin-bottom: 28px;
}
.shop-grid-premium {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 26px;
}
.shop-card-premium {
    position: relative;
    overflow: hidden;
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(18,18,18,.96), rgba(2,2,2,.98));
    border: 1px solid rgba(255,0,0,.32);
    box-shadow: 0 0 30px rgba(0,0,0,.65);
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.shop-card-premium:hover {
    transform: translateY(-6px);
    border-color: rgba(255,45,45,.75);
    box-shadow: 0 0 42px rgba(255,0,0,.25);
}
.shop-card-premium::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top, rgba(255,0,0,.18), transparent 35%), linear-gradient(135deg, rgba(255,255,255,.04), transparent 40%);
    pointer-events: none;
}
.shop-image-wrap {
    height: 270px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(rgba(15,0,0,.25), rgba(0,0,0,.35)), radial-gradient(circle at center, rgba(255,0,0,.22), transparent 55%);
    border-bottom: 1px solid rgba(255,0,0,.22);
}
.shop-image-wrap img {
    width: 70%;
    max-height: 220px;
    object-fit: contain;
    filter: drop-shadow(0 0 20px rgba(255,0,0,.75));
}
.shop-card-body {
    position: relative;
    padding: 24px;
    text-align: center;
}
.shop-card-body h2 {
    min-height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-transform: uppercase;
    font-size: 1.25rem;
    line-height: 1.15;
    margin-bottom: 8px;
}
.shop-price {
    color: #ff3333;
    font-size: 1.45rem;
    font-weight: 900;
    margin-bottom: 12px;
    text-shadow: 0 0 12px rgba(255,0,0,.65);
}
.shop-card-body p {
    min-height: 82px;
    color: #cfcfcf;
    font-size: .95rem;
    line-height: 1.45;
    margin-bottom: 22px;
}
.shop-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 12px 14px;
    border-radius: 8px;
    background: linear-gradient(135deg, #8b0000, #ed1b1b);
    border: 1px solid rgba(255,255,255,.14);
    color: #fff;
    font-weight: 900;
    text-transform: uppercase;
    box-shadow: 0 0 18px rgba(255,0,0,.28);
}
.info-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,.75);
    font-weight: 900;
}
.shop-ribbon {
    position: absolute;
    top: 22px;
    right: -46px;
    z-index: 2;
    width: 180px;
    padding: 8px 0;
    transform: rotate(45deg);
    background: linear-gradient(135deg, #b00000, #ff3030);
    color: #fff;
    font-weight: 900;
    text-align: center;
    text-transform: uppercase;
    font-size: .78rem;
    box-shadow: 0 0 18px rgba(255,0,0,.35);
}
.paypal-zone { min-height: 45px; }
@media (max-width: 1200px) { .shop-grid-premium { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 850px) {
    .shop-grid-premium { grid-template-columns: repeat(2, 1fr); }
    .shop-image-wrap { height: 220px; }
}
@media (max-width: 560px) { .shop-grid-premium { grid-template-columns: 1fr; } }


/* Page validation achat ZREIGN */
.purchase-success-page {
    position: relative;
    min-height: calc(100vh - 150px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 70px 20px;
    overflow: hidden;
}

.success-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at center, rgba(255,0,0,.22), transparent 35%),
        linear-gradient(rgba(0,0,0,.72), rgba(0,0,0,.96)),
        url("banner.png") center/cover no-repeat;
    filter: saturate(1.1);
}

.success-card {
    position: relative;
    width: min(820px, 96%);
    padding: 45px 35px;
    border-radius: 24px;
    text-align: center;
    background: linear-gradient(180deg, rgba(25,25,25,.92), rgba(3,3,3,.98));
    border: 1px solid rgba(255,0,0,.45);
    box-shadow: 0 0 55px rgba(255,0,0,.22), inset 0 0 45px rgba(255,0,0,.04);
}

.success-logo {
    width: min(260px, 75%);
    margin-bottom: 8px;
    filter: drop-shadow(0 0 22px rgba(255,0,0,.85));
}

.success-icon {
    width: 78px;
    height: 78px;
    margin: 0 auto 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #7a0000, #ff2a2a);
    border: 1px solid rgba(255,255,255,.2);
    color: #fff;
    font-size: 3rem;
    font-weight: 900;
    box-shadow: 0 0 30px rgba(255,0,0,.45);
}

.success-card h1 {
    margin-bottom: 12px;
    font-size: clamp(2.2rem, 6vw, 4.7rem);
}

.success-text {
    max-width: 650px;
    margin: 0 auto 24px;
    color: #ddd;
    font-size: 1.12rem;
    line-height: 1.65;
}

.order-box {
    margin: 25px auto;
    padding: 18px;
    border-radius: 16px;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,0,0,.28);
}

.order-box span {
    display: block;
    color: #ff3333;
    text-transform: uppercase;
    font-weight: 900;
    margin-bottom: 8px;
    letter-spacing: 1px;
}

.order-box strong {
    color: #fff;
    word-break: break-all;
}

.info-box {
    margin: 28px auto;
    padding: 22px;
    border-radius: 18px;
    background: rgba(0,0,0,.35);
    border: 1px solid rgba(255,255,255,.08);
}

.info-box h2 {
    color: #ff3333;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.info-box p {
    color: #cfcfcf;
    line-height: 1.55;
}

.success-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 25px;
}


/* Store UPG-like layout in ZREIGN red/black */
.upg-style,
.product-detail-page {
    position: relative;
    min-height: calc(100vh - 130px);
    padding: 45px 0 70px;
    overflow: hidden;
}

.store-bg {
    position: fixed;
    inset: 0;
    z-index: -1;
    background:
        linear-gradient(rgba(0,0,0,.58), rgba(0,0,0,.88)),
        url("banner.png") center/cover no-repeat fixed;
    filter: saturate(.95);
}

.store-card {
    background: linear-gradient(180deg, rgba(15,15,15,.96), rgba(2,6,8,.98));
}

.shop-actions-line {
    display: grid;
    grid-template-columns: 44px 1fr;
    gap: 0;
    align-items: center;
}

.info-dot {
    position: relative;
    height: 42px;
    border: 1px solid rgba(255,255,255,.18);
    border-right: none;
    background: rgba(255,255,255,.06);
    color: #fff;
    font-weight: 900;
    cursor: pointer;
    border-radius: 8px 0 0 8px;
}

.product-link-btn {
    border-radius: 0 8px 8px 0;
    height: 42px;
    padding: 0 14px;
}

.product-tooltip {
    display: none;
    position: absolute;
    left: 0;
    bottom: 52px;
    width: 330px;
    padding: 14px;
    background: rgba(8,14,18,.98);
    border: 1px solid rgba(255,0,0,.55);
    border-radius: 8px;
    color: #fff;
    text-align: left;
    line-height: 1.35;
    z-index: 50;
    box-shadow: 0 0 28px rgba(0,0,0,.75);
}

.product-tooltip strong {
    display: block;
    margin-bottom: 8px;
    font-size: 1rem;
}

.info-dot:hover .product-tooltip {
    display: block;
}

.breadcrumb-pill {
    width: fit-content;
    max-width: 92%;
    margin: 0 auto 24px;
    padding: 12px 18px;
    border-radius: 999px;
    background: rgba(5,10,15,.92);
    border: 1px solid rgba(255,0,0,.38);
    display: flex;
    align-items: center;
    gap: 12px;
    color: #ddd;
    box-shadow: 0 0 22px rgba(0,0,0,.55);
}

.breadcrumb-pill a {
    color: #ff4747;
    font-weight: 900;
}

.product-detail-card {
    width: min(1050px, 92%);
    margin: 0 auto;
    padding: 24px;
    border-radius: 18px;
    background: rgba(2,8,12,.96);
    border: 1px solid rgba(255,0,0,.35);
    box-shadow: 0 0 40px rgba(0,0,0,.65);
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 34px;
}

.product-left h1 {
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    line-height: 1.1;
    margin-bottom: 18px;
    text-transform: none;
    text-align: left;
}

.product-image-large {
    position: relative;
    height: 470px;
    border-radius: 8px;
    background: rgba(255,255,255,.08);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.product-image-large img {
    width: 78%;
    max-height: 85%;
    object-fit: contain;
    filter: drop-shadow(0 0 25px rgba(255,0,0,.85));
}

.fullscreen-icon {
    position: absolute;
    right: 18px;
    bottom: 16px;
    font-size: 1.6rem;
    color: #fff;
}

.product-right {
    padding-top: 88px;
}

.product-description {
    color: #fff;
    font-size: 1.15rem;
    line-height: 1.45;
    font-weight: 800;
    margin-bottom: 18px;
}

.select-box {
    height: 56px;
    padding: 0 18px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,0,0,.45);
    border-radius: 6px;
    color: #ddd;
    font-weight: 900;
}

.detail-buy-btn {
    width: 100%;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #8b0000, #ff3030);
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 6px;
    color: #fff;
    font-size: 1.2rem;
    font-weight: 900;
    text-transform: uppercase;
    box-shadow: 0 0 22px rgba(255,0,0,.35);
}

.product-includes {
    margin-top: 24px;
    padding: 20px;
    border-radius: 12px;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.08);
}

.product-includes h2 {
    color: #ff3333;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.product-includes ul {
    margin-left: 20px;
    line-height: 1.7;
}

.product-includes p {
    margin-top: 12px;
    color: #aaa;
}

@media (max-width: 900px) {
    .product-detail-card {
        grid-template-columns: 1fr;
    }
    .product-right {
        padding-top: 0;
    }
    .product-image-large {
        height: 320px;
    }
}


.lang.active {
    color: #ff3333;
}

.shop-intro {
    width: min(900px, 92%);
    margin: 0 auto 34px;
    text-align: center;
}

.shop-intro h1 {
    margin-bottom: 12px;
}

.shop-intro p {
    color: #ddd;
    font-size: 1.12rem;
    line-height: 1.6;
}


/* Purchase flow ZREIGN */
.purchase-flow-page {
    position: relative;
    min-height: calc(100vh - 88px);
    display: grid;
    grid-template-columns: 390px 1fr;
    background: #020714;
    overflow: hidden;
}

.purchase-flow-bg {
    position: fixed;
    inset: 0;
    z-index: -1;
    background:
        linear-gradient(90deg, rgba(0,0,0,.25), rgba(0,0,0,.85)),
        url("banner.png") center/cover no-repeat fixed;
}

.purchase-sidebar {
    background: linear-gradient(180deg, rgba(80,0,0,.96), rgba(10,0,0,.98));
    border-right: 1px solid rgba(255,0,0,.35);
    padding: 42px 34px;
}

.side-title {
    display: flex;
    align-items: center;
    gap: 14px;
    color: #fff;
    margin-bottom: 34px;
}

.side-title img {
    width: 38px;
    filter: drop-shadow(0 0 12px rgba(255,0,0,.8));
}

.side-title strong {
    font-size: 1.55rem;
}

.side-title a {
    margin-left: auto;
    color: #fff;
    font-weight: 900;
    opacity: .9;
}

.side-product-card {
    border-radius: 16px;
    overflow: hidden;
    background: rgba(0,8,12,.96);
    border: 1px solid rgba(255,0,0,.35);
    box-shadow: 0 0 32px rgba(0,0,0,.45);
}

.side-product-img {
    height: 305px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at center, rgba(255,0,0,.25), transparent 58%);
}

.side-product-img img {
    width: 75%;
    max-height: 250px;
    object-fit: contain;
    filter: drop-shadow(0 0 18px rgba(255,0,0,.85));
}

.side-product-info {
    padding: 22px;
    text-align: center;
    border-top: 1px solid rgba(255,0,0,.22);
}

.duration-pill {
    display: inline-flex;
    margin-bottom: 12px;
    color: #fff;
    font-weight: 900;
}

.side-product-info h2 {
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 6px;
}

.side-price {
    color: #ff3333;
    font-size: 1.25rem;
    font-weight: 900;
    margin-bottom: 12px;
}

.side-product-info p {
    color: #b9c9db;
    line-height: 1.5;
    font-size: .95rem;
    margin-bottom: 18px;
}

.side-subscribe {
    display: block;
    padding: 12px;
    border-radius: 7px;
    background: linear-gradient(135deg, #7a0000, #e92727);
    color: #fff;
    font-weight: 900;
}

.purchase-main {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 150px 24px 80px;
}

.steps {
    display: grid;
    grid-template-columns: auto 70px auto 70px auto;
    gap: 18px;
    align-items: center;
    margin-bottom: 44px;
}

.steps i {
    height: 1px;
    background: rgba(255,255,255,.25);
}

.step {
    color: #8091aa;
    text-align: center;
}

.step span {
    display: block;
    margin: 0 auto 8px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    line-height: 24px;
    color: #fff;
    font-weight: 900;
}

.step.active span,
.step.done span {
    background: #ad1111;
}

.step.active strong {
    color: #ff3333;
}

.purchase-panel {
    width: min(590px, 100%);
}

.purchase-panel h1 {
    text-align: left;
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.purchase-panel p {
    color: #aab9cc;
    line-height: 1.55;
    margin-bottom: 18px;
}

.verify-box,
.order-summary-box,
.question-box,
.promo-box,
.final-summary {
    margin-bottom: 18px;
    padding: 16px;
    border-radius: 8px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.16);
    color: #d8e3f2;
}

.verify-box {
    display: grid;
    grid-template-columns: 34px 1fr 42px;
    gap: 12px;
    align-items: center;
}

.verify-box.ok {
    border-color: rgba(255,0,0,.65);
}

.verify-box strong:last-child {
    height: 36px;
    border-radius: 6px;
    background: #b01515;
    display: flex;
    align-items: center;
    justify-content: center;
}

.verify-box.bad strong:last-child {
    background: #6d1a1a;
}

.verify-box.muted {
    opacity: .9;
}

.avatar-dot {
    font-size: 1.35rem;
}

.flow-next,
.detail-buy-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 46px;
    width: 100%;
    border-radius: 7px;
    background: linear-gradient(135deg, #8b0000, #e72929);
    color: #fff;
    font-weight: 900;
    box-shadow: 0 0 20px rgba(255,0,0,.25);
}

.flow-note {
    margin-top: 14px;
    font-size: .9rem;
}

.flow-select {
    width: 100%;
}

.order-summary-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.order-summary-box span,
.final-summary span {
    display: block;
    color: #8fa0b8;
    font-size: .9rem;
    margin-top: 4px;
}

.question-box textarea {
    margin-top: 14px;
    width: 100%;
    min-height: 95px;
    border: 1px solid rgba(255,0,0,.3);
    border-radius: 8px;
    background: rgba(0,0,0,.35);
    color: #fff;
    padding: 12px;
    resize: vertical;
}

.promo-box {
    opacity: .75;
    text-align: center;
}

.flow-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    margin-top: 20px;
}

.flow-buttons a {
    padding: 13px;
    text-align: center;
    background: rgba(255,255,255,.1);
    color: #dbe6f5;
    font-weight: 800;
}

.flow-buttons a.active {
    background: linear-gradient(135deg, #7a0000, #e72929);
    color: #fff;
}

.final-summary {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.final-summary div {
    padding: 14px;
    border-radius: 8px;
    background: rgba(0,0,0,.25);
}

#paypal-button-flow {
    margin-top: 18px;
}

@media (max-width: 980px) {
    .purchase-flow-page {
        grid-template-columns: 1fr;
    }

    .purchase-sidebar {
        border-right: none;
        border-bottom: 1px solid rgba(255,0,0,.35);
    }

    .purchase-main {
        padding-top: 45px;
    }

    .steps {
        grid-template-columns: 1fr;
    }

    .steps i {
        display: none;
    }

    .final-summary {
        grid-template-columns: 1fr;
    }
}

.steam-login {
    background: linear-gradient(135deg, #12345a, #1b75d0) !important;
}


.paypalme-btn,
.paypalme-main {
    background: linear-gradient(135deg, #003087, #009cde) !important;
}

.paypalme-btn:disabled {
    opacity: .65;
    cursor: wait;
}


.discord-invite-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 9px 13px;
    border-radius: 9px;
    background: linear-gradient(135deg, #5865f2, #3944c7);
    color: #fff !important;
    font-weight: 900;
    font-size: .82rem;
    text-transform: uppercase;
    box-shadow: 0 0 18px rgba(88,101,242,.35);
}

.product-option-preview {
    display: flex;
    gap: 6px;
    justify-content: center;
    flex-wrap: wrap;
    margin: -2px 0 12px;
}

.product-option-preview span {
    padding: 5px 8px;
    border-radius: 999px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,0,0,.25);
    color: #ddd;
    font-size: .78rem;
    font-weight: 800;
}

.duration-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin: 18px 0;
}

.duration-options a {
    padding: 13px 10px;
    border-radius: 9px;
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.12);
    text-align: center;
    color: #fff;
}

.duration-options a.active,
.duration-options a:hover {
    border-color: rgba(255,0,0,.75);
    box-shadow: 0 0 18px rgba(255,0,0,.25);
    background: rgba(130,0,0,.35);
}

.duration-options strong {
    display: block;
    margin-bottom: 4px;
}

.duration-options span {
    color: #ff3333;
    font-weight: 900;
}


.shop-option-select {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 7px;
    margin: 0 0 16px;
}

.shop-option-btn {
    border: 1px solid rgba(255,255,255,.13);
    background: rgba(255,255,255,.07);
    color: #fff;
    border-radius: 9px;
    padding: 9px 6px;
    cursor: pointer;
    transition: .18s ease;
}

.shop-option-btn strong {
    display: block;
    font-size: .78rem;
    margin-bottom: 3px;
}

.shop-option-btn span {
    color: #ff3333;
    font-weight: 900;
    font-size: .82rem;
}

.shop-option-btn.active,
.shop-option-btn:hover {
    border-color: rgba(255,0,0,.8);
    background: rgba(120,0,0,.42);
    box-shadow: 0 0 16px rgba(255,0,0,.22);
}


.purchase-option-selector{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:12px;
margin:20px 0 25px;
}

.purchase-option-btn{
padding:14px;
border-radius:12px;
background:rgba(255,255,255,.06);
border:1px solid rgba(255,255,255,.12);
text-align:center;
color:#fff;
transition:.2s ease;
}

.purchase-option-btn strong{
display:block;
font-size:.95rem;
margin-bottom:5px;
}

.purchase-option-btn span{
font-weight:900;
color:#ff2d2d;
}

.purchase-option-btn.active,
.purchase-option-btn:hover{
background:rgba(120,0,0,.45);
border-color:rgba(255,0,0,.75);
box-shadow:0 0 18px rgba(255,0,0,.25);
}
