.cs-coins-page {
    min-height: 100%;
    padding: 32px 0 48px;
    background:
            radial-gradient(circle at top, rgba(124, 92, 255, 0.16), transparent 35%),
            linear-gradient(180deg, #0f1020 0%, #121327 100%);
    color: #fff;
}

.cs-coins-page__container {
    max-width: 1240px;
}

.cs-coins-hero {
    margin-bottom: 32px;
}

.cs-coins-hero__eyebrow {
    display: inline-block;
    margin-bottom: 10px;
    padding: 6px 12px;
    border: 1px solid rgba(124, 92, 255, 0.35);
    border-radius: 999px;
    background: rgba(124, 92, 255, 0.12);
    color: #c9bbff;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.cs-coins-hero__title {
    margin: 0 0 10px;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.05;
    color: #fff;
}

.cs-coins-hero__text {
    max-width: 760px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.72);
    font-size: 1rem;
}

.cs-coins-card {
    position: relative;
    height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(31, 33, 60, 0.96) 0%, rgba(20, 22, 42, 0.98) 100%);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
    cursor: pointer;
    overflow: hidden;
}

.cs-coins-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 46px rgba(0, 0, 0, 0.34);
    border-color: rgba(124, 92, 255, 0.35);
}

.cs-coins-card.is-selected {
    border-color: rgba(124, 92, 255, 0.85);
    box-shadow: 0 0 0 1px rgba(124, 92, 255, 0.35), 0 20px 46px rgba(0, 0, 0, 0.34);
}

.cs-coins-card.is-featured {
    background:
            linear-gradient(180deg, rgba(40, 31, 78, 0.98) 0%, rgba(22, 21, 47, 0.98) 100%);
}

.cs-coins-card__body {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 26px 20px 22px;
}

.cs-coins-card__badge {
    margin-bottom: 14px;
    padding: 7px 12px;
    border: 0;
    border-radius: 999px;
    background: linear-gradient(90deg, #ffd76a 0%, #220b49 100%);
    color: #11062b;
    font-weight: 800;
    font-size: 0.78rem;
}

.cs-coins-card__icon-wrap {
    margin-bottom: 14px;
}

.cs-coins-card__icon {
    width: 74px;
    height: 74px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    background: radial-gradient(circle at 30% 30%, rgba(124, 92, 255, 0.38), rgba(124, 92, 255, 0.12));
    color: #f7d46b;
    font-size: 1.9rem;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.06);
}

.cs-coins-card__title {
    margin-bottom: 8px;
    color: #ffffff;
    font-size: 1.05rem;
    font-weight: 700;
}

.cs-coins-card__coins {
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
    color: #ffffff;
}

.cs-coins-card__coins-label {
    margin-top: 4px;
    margin-bottom: 14px;
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.9rem;
}

.cs-coins-card__price {
    margin-bottom: 12px;
    color: #7cf7b6;
    font-size: 1.5rem;
    font-weight: 800;
}

.cs-coins-card__description {
    min-height: 66px;
    margin-bottom: 18px;
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.93rem;
    line-height: 1.45;
}

.cs-coins-card__button {
    width: 100%;
    margin-top: auto;
    border: 0;
    border-radius: 14px;
    padding: 11px 14px;
    background: linear-gradient(90deg, #7c5cff 0%, #9a7bff 100%);
    font-weight: 700;
    box-shadow: 0 10px 24px rgba(124, 92, 255, 0.28);
}

.cs-coins-card__button:hover,
.cs-coins-card__button:focus,
.cs-coins-card__button:active {
    background: linear-gradient(90deg, #6d4df6 0%, #8d6dff 100%) !important;
    box-shadow: 0 12px 28px rgba(124, 92, 255, 0.34) !important;
}

.cs-coins-note {
    margin-top: 22px;
    color: rgba(255, 255, 255, 0.58);
    font-size: 0.92rem;
}

@media (max-width: 575.98px) {
    .cs-coins-page {
        padding: 22px 0 36px;
    }

    .cs-coins-hero {
        margin-bottom: 24px;
    }

    .cs-coins-card__body {
        padding: 22px 16px 18px;
    }

    .cs-coins-card__coins {
        font-size: 1.8rem;
    }

    .cs-coins-card__price {
        font-size: 1.35rem;
    }

    .cs-coins-card__description {
        min-height: auto;
    }
}
.cs-checkout-page {
    min-height: 100%;
    padding: 32px 0 48px;
    background:
            radial-gradient(circle at top, rgba(124, 92, 255, 0.16), transparent 35%),
            linear-gradient(180deg, #0f1020 0%, #121327 100%);
}

.cs-checkout-page__container {
    max-width: 980px;
}

.cs-checkout-page__hero {
    margin-bottom: 24px;
}

.cs-checkout-page__eyebrow {
    display: inline-block;
    margin-bottom: 10px;
    padding: 6px 12px;
    border: 1px solid rgba(124, 92, 255, 0.35);
    border-radius: 999px;
    background: rgba(124, 92, 255, 0.12);
    color: #c9bbff;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.cs-checkout-page__title {
    margin: 0 0 10px;
    color: #fff;
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 800;
    line-height: 1.05;
}

.cs-checkout-page__text {
    max-width: 700px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.72);
    font-size: 1rem;
}

.cs-checkout-shell {
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(31, 33, 60, 0.96) 0%, rgba(20, 22, 42, 0.98) 100%);
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.34);
}

.cs-checkout-loading {
    min-height: 480px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
}

.cs-checkout-loading__text {
    margin-top: 14px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.cs-checkout-embed {
    overflow: hidden;
    border-radius: 18px;
    background: #ffffff;
}

.cs-checkout-embed iframe {
    border-radius: 18px;
}

@media (max-width: 575.98px) {
    .cs-checkout-page {
        padding: 22px 0 36px;
    }

    .cs-checkout-shell {
        padding: 10px;
        border-radius: 18px;
    }

    .cs-checkout-embed {
        border-radius: 14px;
    }
}