* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #2b0036;
    color: #ffffff;
}

a {
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    width: 95%;
    max-width: 1280px;
    margin: 0 auto;
}

/* TOPBAR */
.topbar {
    background: #4a2948;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,.08);
}

.topbar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
}

.left-brand {
    display: flex;
    align-items: center;
    gap: 16px;
    min-width: 0;
}

.brand-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    flex-shrink: 0;
}

.brand-logo {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.brand-logo-text {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: linear-gradient(135deg, #4f46e5, #a855f7);
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 22px;
    line-height: 1;
}

.brand-name {
    font-size: 24px;
    font-weight: 900;
    letter-spacing: 1.5px;
    line-height: 1;
}

.tagline {
    font-size: 14px;
    color: #f1dff1;
    font-style: italic;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.topbar-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.icon-btn {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
    border-radius: 12px;
    transition: .2s ease;
}

.icon-btn:hover {
    background: rgba(255,255,255,.1);
    color: #fff;
}

.search-btn {
    border: 1px solid rgba(255,255,255,.12);
}

.btn-login-header {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    padding: 10px 16px;
    border-radius: 999px;
    font-weight: 800;
    border: 1px solid rgba(255,255,255,.18);
}

.btn-login-header:hover {
    background: rgba(255,255,255,.1);
    color: #ffffff;
}

.btn-register {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #6b4eff;
    color: #fff;
    padding: 10px 20px;
    border-radius: 999px;
    font-weight: 800;
    white-space: nowrap;
}

.btn-register:hover {
    color: #ffffff;
    transform: translateY(-1px);
}

.member-name-btn {
    max-width: 180px;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* HERO */
.hero-banner {
    padding: 20px 0 30px;
}

.hero-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: #1f202b;
    border-radius: 0;
}

.hero-slides {
    position: relative;
    width: 100%;
    height: 396px;
}

.hero-slide {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: 290px 1fr;
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

.hero-left-panel {
    background: #20232d;
    padding: 45px 26px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.hero-badge {
    display: inline-block;
    width: fit-content;
    padding: 8px 14px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,.3);
    color: #fff;
    font-size: 14px;
    font-weight: 600;
}

.hero-left-panel h1 {
    display: none;
}

.hero-cta {
    display: inline-block;
    width: fit-content;
    background: #ff3b91;
    color: #fff;
    padding: 14px 20px;
    border-radius: 9px;
    font-weight: 800;
}

.hero-image-panel {
    width: 100%;
    height: 100%;
    background: #111;
}

.hero-image-panel img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center bottom;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 9px;
    margin-top: 14px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,.45);
    cursor: pointer;
}

.dot.active {
    background: #fff;
}

.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    width: 38px;
    height: 38px;
    border: none;
    border-radius: 50%;
    background: rgba(0,0,0,.35);
    color: #fff;
    cursor: pointer;
}

.slider-nav.prev {
    left: 12px;
}

.slider-nav.next {
    right: 12px;
}

@media (max-width: 768px) {
    .hero-slides {
        height: auto;
    }

    .hero-slide {
        position: relative;
        display: none;
        grid-template-columns: 1fr;
    }

    .hero-slide.active {
        display: grid;
    }

    /*
    |--------------------------------------------------------------------------
    | Banner tampil penuh di HP
    |--------------------------------------------------------------------------
    */
    .hero-image-panel {
        order: 1;
        width: 100%;
        height: auto;
        aspect-ratio: 5 / 2;
        background: #07101f;
    }

    .hero-image-panel img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        object-position: center;
    }

    /*
    |--------------------------------------------------------------------------
    | Tombol CTA dipindahkan ke bawah banner
    |--------------------------------------------------------------------------
    */
    .hero-left-panel {
        order: 2;
        min-height: auto;
        padding: 12px 14px;
        background: #111c3d;
    }

    .hero-badge,
    .hero-left-panel h1 {
        display: none;
    }

    .hero-cta {
        width: 100%;
        padding: 11px 14px;
        text-align: center;
        font-size: 13px;
        border-radius: 8px;
    }

    .slider-nav {
        width: 32px;
        height: 32px;
        top: 40%;
    }

    .slider-nav.prev {
        left: 7px;
    }

    .slider-nav.next {
        right: 7px;
    }
}

/* SECTION */
.section-block {
    padding: 10px 0 24px;
}

.section-title {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 16px;
    text-transform: uppercase;
}

/* GAME GRID */
.game-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
}

.game-card {
    background: #4b2458;
    border-radius: 14px;
    overflow: hidden;
    color: #fff;
    transition: .2s ease;
}

.game-card:hover {
    transform: translateY(-4px);
}

.game-thumb {
    height: 165px;
    overflow: hidden;
    background: #fff;
}

.game-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.game-info {
    padding: 14px 12px 18px;
    text-align: center;
    min-height: 80px;
}

.game-info h3 {
    font-size: 16px;
    line-height: 1.4;
    font-weight: 600;
}

.show-all-wrap {
    text-align: center;
    margin-top: 14px;
}

.show-all-link {
    color: #dff031;
    font-weight: 700;
    text-decoration: underline;
}

.section-heading-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 16px;
}

.section-heading-row .section-title {
    margin-bottom: 0;
}

.section-see-all {
    color: #dff031;
    font-weight: 800;
    text-decoration: underline;
    white-space: nowrap;
}

.category-page {
    padding: 20px 0 50px;
}

@media (max-width: 600px) {
    .section-heading-row {
        align-items: flex-start;
        flex-direction: column;
        gap: 8px;
    }
}

/* PRODUCT DETAIL PAGE */
.product-page {
    padding: 26px 0 50px;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #dff031;
    font-weight: 700;
    margin-bottom: 18px;
}

.product-layout {
    display: grid;
    grid-template-columns: 360px 1fr;
    gap: 24px;
    align-items: flex-start;
}

.product-sidebar {
    background: #4b2458;
    border-radius: 18px;
    padding: 18px;
}

.product-cover {
    border-radius: 14px;
    overflow: hidden;
    background: #ffffff;
    margin-bottom: 16px;
}

.product-cover img {
    width: 100%;
    height: 240px;
    object-fit: cover;
}

.product-sidebar h1 {
    font-size: 28px;
    line-height: 1.3;
    margin-bottom: 14px;
}

.product-description {
    color: #f1dff1;
    font-size: 14px;
    line-height: 1.7;
}

.product-description p {
    margin-bottom: 10px;
}

.product-form-area {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.step-card {
    background: #4b2458;
    border-radius: 18px;
    overflow: hidden;
}

.step-title {
    background: #32163d;
    padding: 16px 18px;
    font-size: 18px;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 10px;
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #dff031;
    color: #2b0036;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    font-weight: 900;
}

.step-body {
    padding: 18px;
}

.custom-input {
    width: 100%;
    border: 1px solid rgba(255,255,255,.18);
    background: #32163d;
    color: #ffffff;
    border-radius: 12px;
    padding: 14px 16px;
    outline: none;
    font-family: inherit;
}

.custom-input::placeholder {
    color: rgba(255,255,255,.55);
}

.step-body small {
    display: block;
    margin-top: 8px;
    color: #decbe3;
}

.nominal-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.nominal-card {
    cursor: pointer;
}

.nominal-card input {
    display: none;
}

.nominal-card-inner {
    position: relative;
    min-height: 130px;
    background: #32163d;
    border: 2px solid transparent;
    border-radius: 14px;
    padding: 16px;
    transition: .2s ease;
}

.nominal-card-inner h4 {
    font-size: 18px;
    margin-bottom: 20px;
}

.nominal-card-inner p {
    color: #decbe3;
    font-size: 13px;
    margin-bottom: 4px;
}

.nominal-card-inner strong {
    color: #ffffff;
    font-size: 16px;
}

.radio-icon {
    position: absolute;
    right: 14px;
    top: 14px;
    color: #dff031;
}

.nominal-card input:checked + .nominal-card-inner {
    border-color: #dff031;
    background: #5a2d68;
}

.payment-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.payment-card {
    cursor: pointer;
}

.payment-card input {
    display: none;
}

.payment-card span {
    display: block;
    background: #32163d;
    border: 2px solid transparent;
    border-radius: 12px;
    padding: 14px;
    text-align: center;
    font-weight: 700;
    transition: .2s ease;
}

.payment-card input:checked + span {
    border-color: #dff031;
    background: #5a2d68;
}

.detail-note {
    color: #decbe3;
    margin-bottom: 12px;
}

.checkbox-wrap {
    display: block;
    margin-top: 14px;
    color: #f1dff1;
    font-size: 14px;
}

.submit-area {
    text-align: right;
}

.btn-topup {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #ff3b91;
    color: #ffffff;
    padding: 15px 22px;
    border-radius: 12px;
    font-weight: 800;
    box-shadow: 0 10px 22px rgba(255, 59, 145, .24);
}

.btn-topup:hover {
    color: #ffffff;
    transform: translateY(-2px);
}

@media (max-width: 992px) {
    .product-layout {
        grid-template-columns: 1fr;
    }

    .nominal-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .payment-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .nominal-grid,
    .payment-grid {
        grid-template-columns: 1fr;
    }

    .product-sidebar h1 {
        font-size: 24px;
    }
}

.empty-product-note {
    background: #32163d;
    border-radius: 14px;
    padding: 16px;
    color: #decbe3;
    line-height: 1.6;
}

.price-info-badge {
    background: #32163d;
    color: #decbe3;
    border-radius: 14px;
    padding: 14px 16px;
    margin-bottom: 14px;
    line-height: 1.6;
    font-weight: 600;
}

/* CHECKOUT PAGE */
.checkout-page {
    padding: 26px 0 60px;
}

.checkout-box {
    background: #4b2458;
    border-radius: 18px;
    padding: 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 20px;
}

.checkout-left span {
    color: #decbe3;
    font-weight: 700;
}

.checkout-left h2 {
    font-size: 36px;
    margin-top: 8px;
}

.checkout-right {
    flex-shrink: 0;
}

.btn-buy {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #ff3b91;
    color: #ffffff;
    padding: 14px 22px;
    border-radius: 12px;
    font-weight: 800;
    box-shadow: 0 10px 22px rgba(255, 59, 145, .24);
}

.btn-buy:hover {
    color: #ffffff;
    transform: translateY(-2px);
}

.summary-card {
    background: #4b2458;
    border-radius: 18px;
    padding: 22px;
}

.summary-card h3 {
    font-size: 24px;
    margin-bottom: 18px;
}

.summary-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255,255,255,.12);
}

.summary-row span {
    color: #decbe3;
}

.summary-row strong {
    text-align: right;
}

.total-row {
    border-bottom: none;
}

.total-row strong {
    color: #dff031;
    font-size: 20px;
}

.btn-topup {
    border: none;
    cursor: pointer;
    font-family: inherit;
}

@media (max-width: 768px) {
    .checkout-box {
        flex-direction: column;
        align-items: flex-start;
    }

    .checkout-right,
    .btn-buy {
        width: 100%;
    }

    .summary-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .summary-row strong {
        text-align: left;
    }
}

/* INVOICE PAGE */
.invoice-page {
    padding: 26px 0 60px;
}

.invoice-layout {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 22px;
    align-items: flex-start;
}

.invoice-card,
.payment-instruction-card {
    background: #4b2458;
    border-radius: 18px;
    padding: 22px;
}

.invoice-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 22px;
}

.invoice-header span {
    color: #decbe3;
    font-weight: 700;
}

.invoice-header h1 {
    font-size: 32px;
    margin-top: 6px;
}

.invoice-status {
    background: #dff031;
    color: #2b0036;
    padding: 8px 14px;
    border-radius: 999px;
    font-weight: 900;
    white-space: nowrap;
}

.invoice-total {
    background: #32163d;
    border-radius: 16px;
    padding: 18px;
    margin-bottom: 16px;
}

.invoice-total span {
    color: #decbe3;
    display: block;
    margin-bottom: 8px;
}

.invoice-total strong {
    color: #dff031;
    font-size: 30px;
}

.payment-instruction-card h2 {
    font-size: 24px;
    margin-bottom: 14px;
}

.payment-instruction-card p {
    color: #f1dff1;
    line-height: 1.6;
    margin-bottom: 14px;
}

.manual-payment-box {
    background: #32163d;
    border-radius: 14px;
    padding: 14px;
    margin-bottom: 12px;
}

.manual-payment-box span {
    color: #decbe3;
    display: block;
    margin-bottom: 6px;
}

.manual-payment-box strong {
    color: #ffffff;
    font-size: 18px;
}

.payment-note {
    font-size: 14px;
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    background: #25d366;
    color: #ffffff;
    padding: 14px 18px;
    border-radius: 12px;
    font-weight: 900;
}

.btn-whatsapp:hover {
    color: #ffffff;
    transform: translateY(-2px);
}

.btn-buy {
    border: none;
    cursor: pointer;
    font-family: inherit;
}

@media (max-width: 992px) {
    .invoice-layout {
        grid-template-columns: 1fr;
    }

    .invoice-header {
        flex-direction: column;
    }
}

.payment-steps {
    background: #32163d;
    border-radius: 14px;
    padding: 14px;
    margin-bottom: 14px;
}

.payment-steps h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.payment-steps ol {
    padding-left: 20px;
    color: #f1dff1;
}

.payment-steps li {
    margin-bottom: 8px;
    line-height: 1.5;
}

.invoice-status-pembayaran_diterima {
    background: #dff031;
    color: #2b0036;
}

.invoice-status-diproses {
    background: #5b8dff;
    color: #ffffff;
}

.invoice-status-sukses {
    background: #25d366;
    color: #ffffff;
}

.invoice-status-gagal,
.invoice-status-dibatalkan {
    background: #ff3b91;
    color: #ffffff;
}

/* MEMBER PAGE */
.member-page {
    padding: 34px 0 60px;
}

.member-auth-card {
    width: 100%;
    max-width: 460px;
    margin: 0 auto;
    background: #4b2458;
    border-radius: 20px;
    padding: 26px;
}

.member-auth-card h1,
.member-dashboard h1 {
    font-size: 30px;
    margin-bottom: 8px;
}

.member-auth-card p,
.member-dashboard p {
    color: #decbe3;
    line-height: 1.6;
    margin-bottom: 20px;
}

.member-form-group {
    margin-bottom: 16px;
}

.member-form-group label {
    display: block;
    font-weight: 800;
    margin-bottom: 8px;
}

.member-input {
    width: 100%;
    border: 1px solid rgba(255,255,255,.18);
    background: #32163d;
    color: #ffffff;
    border-radius: 12px;
    padding: 14px 16px;
    outline: none;
    font-family: inherit;
}

.member-input::placeholder {
    color: rgba(255,255,255,.55);
}

.member-btn,
.member-btn-inline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #dff031;
    color: #2b0036;
    border: none;
    border-radius: 12px;
    padding: 14px 18px;
    font-weight: 900;
    cursor: pointer;
    font-family: inherit;
}

.member-btn {
    width: 100%;
}

.member-btn-inline {
    width: auto;
}

.member-auth-footer {
    margin-top: 18px;
    text-align: center;
    color: #decbe3;
}

.member-auth-footer a {
    color: #dff031;
    font-weight: 800;
}

.member-alert {
    padding: 13px 15px;
    border-radius: 12px;
    margin-bottom: 16px;
    font-weight: 800;
}

.member-alert-error {
    background: rgba(255, 59, 145, .18);
    color: #ff9ac9;
    border: 1px solid rgba(255, 59, 145, .35);
}

.member-alert-success {
    background: rgba(37, 211, 102, .18);
    color: #55e58d;
    border: 1px solid rgba(37, 211, 102, .35);
}

.member-dashboard {
    background: #4b2458;
    border-radius: 20px;
    padding: 26px;
}

.member-dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 22px;
}

.member-logout-btn {
    display: inline-flex;
    background: #ff3b91;
    color: #ffffff;
    border-radius: 12px;
    padding: 12px 16px;
    font-weight: 900;
    white-space: nowrap;
}

.member-info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    margin-bottom: 20px;
}

.member-info-card {
    background: #32163d;
    border-radius: 16px;
    padding: 16px;
}

.member-info-card span {
    display: block;
    color: #decbe3;
    margin-bottom: 8px;
}

.member-info-card strong {
    color: #ffffff;
}

.member-panel {
    background: #32163d;
    border-radius: 16px;
    padding: 18px;
}

.member-panel h2 {
    margin-bottom: 10px;
}

@media (max-width: 900px) {
    .member-info-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .member-dashboard-header {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .member-info-grid {
        grid-template-columns: 1fr;
    }
}

.member-panel-gap {
    margin-top: 20px;
}

.member-panel-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 14px;
}

.member-panel-header h2 {
    margin: 0;
}

.member-panel-header a,
.member-link {
    color: #dff031;
    font-weight: 800;
    text-decoration: underline;
}

.member-empty-state {
    background: #32163d;
    border-radius: 14px;
    padding: 16px;
    color: #decbe3;
    line-height: 1.6;
}

.member-table-wrap {
    width: 100%;
    overflow-x: auto;
}

.member-table {
    width: 100%;
    border-collapse: collapse;
}

.member-table th,
.member-table td {
    padding: 12px 10px;
    border-bottom: 1px solid rgba(255,255,255,.12);
    text-align: left;
    font-size: 14px;
    white-space: nowrap;
}

.member-table th {
    color: #dff031;
}

.member-table td {
    color: #f1dff1;
}

.member-small-btn {
    display: inline-block;
    background: #dff031;
    color: #2b0036;
    border-radius: 10px;
    padding: 8px 12px;
    font-weight: 900;
    font-size: 13px;
}

.member-status {
    display: inline-block;
    border-radius: 999px;
    padding: 7px 10px;
    font-size: 12px;
    font-weight: 900;
    text-transform: capitalize;
    background: #32163d;
    color: #ffffff;
}

.member-status-menunggu_pembayaran {
    background: rgba(255, 193, 7, .18);
    color: #ffd66b;
}

.member-status-pembayaran_diterima {
    background: rgba(223, 240, 49, .18);
    color: #dff031;
}

.member-status-diproses {
    background: rgba(91, 141, 255, .18);
    color: #9dbbff;
}

.member-status-sukses {
    background: rgba(37, 211, 102, .18);
    color: #55e58d;
}

.member-status-gagal,
.member-status-dibatalkan {
    background: rgba(255, 59, 145, .18);
    color: #ff9ac9;
}

.member-action-group {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.member-timeline {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.member-timeline-item {
    display: grid;
    grid-template-columns: 18px 1fr;
    gap: 12px;
}

.member-timeline-dot {
    width: 12px;
    height: 12px;
    background: #dff031;
    border-radius: 50%;
    margin-top: 5px;
}

.member-timeline-content {
    background: #32163d;
    border-radius: 14px;
    padding: 14px;
}

.member-timeline-content strong {
    color: #dff031;
    text-transform: capitalize;
}

.member-timeline-content p {
    margin: 6px 0;
    color: #f1dff1;
}

.member-timeline-content small {
    color: #decbe3;
}

@media (max-width: 600px) {
    .member-panel-header {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* SEARCH PAGE */
.search-page {
    padding: 24px 0 60px;
}

.search-panel {
    background: #4b2458;
    border-radius: 20px;
    padding: 24px;
    margin-bottom: 20px;
}

.search-panel h1 {
    font-size: 34px;
    margin-bottom: 8px;
}

.search-panel p {
    color: #decbe3;
    margin-bottom: 18px;
    line-height: 1.6;
}

.search-form {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 12px;
}

.search-input {
    width: 100%;
    border: 1px solid rgba(255,255,255,.18);
    background: #32163d;
    color: #ffffff;
    border-radius: 14px;
    padding: 15px 16px;
    outline: none;
    font-family: inherit;
}

.search-input::placeholder {
    color: rgba(255,255,255,.55);
}

.search-submit {
    border: none;
    background: #dff031;
    color: #2b0036;
    border-radius: 14px;
    padding: 0 22px;
    font-weight: 900;
    cursor: pointer;
    font-family: inherit;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
}

.search-result-section {
    padding-top: 0;
}

.search-count {
    color: #decbe3;
    font-weight: 700;
}

.game-category-label {
    display: inline-block;
    color: #dff031;
    font-size: 12px;
    font-weight: 800;
    margin-bottom: 6px;
}

@media (max-width: 600px) {
    .search-form {
        grid-template-columns: 1fr;
    }

    .search-submit {
        width: 100%;
        padding: 14px 18px;
    }

    .search-panel h1 {
        font-size: 28px;
    }
}


/* FOOTER */
.site-footer {
    text-align: center;
    color: #decbe3;
    padding: 30px 0;
}

/* RESPONSIVE */
@media (max-width: 1200px) {
    .game-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .tagline {
        display: none;
    }
}

@media (max-width: 768px) {
    .hero-slider {
        grid-template-columns: 1fr;
    }

    .hero-left-panel h1 {
        font-size: 38px;
    }

    .game-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .topbar-inner {
    flex-direction: row;
    align-items: center;
}

.left-brand {
    gap: 10px;
}

.brand-name {
    font-size: 20px;
}

.brand-logo {
    width: 34px;
    height: 34px;
}

.topbar-actions {
    gap: 8px;
}

.btn-login-header {
    display: none;
}

.btn-register {
    padding: 9px 14px;
}
}

@media (max-width: 480px) {
    .game-grid {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 30px;
    }
    
}

/* =====================================================
   STEP 33 - BLUE PURPLE THEME OVERRIDE
   ===================================================== */

:root {
    --theme-bg-main: #08111f;
    --theme-bg-soft: #101a33;
    --theme-bg-card: #151f3f;
    --theme-bg-card-2: #1d2752;
    --theme-bg-dark: #0b1024;

    --theme-blue: #2563eb;
    --theme-blue-light: #38bdf8;
    --theme-purple: #7c3aed;
    --theme-purple-light: #a855f7;
    --theme-pink: #ec4899;

    --theme-text: #ffffff;
    --theme-muted: #cbd5e1;
    --theme-border: rgba(255,255,255,.12);

    --theme-gradient-main: linear-gradient(135deg, #0f172a 0%, #1e1b4b 45%, #312e81 100%);
    --theme-gradient-card: linear-gradient(145deg, rgba(37,99,235,.22), rgba(124,58,237,.18));
    --theme-gradient-button: linear-gradient(135deg, #2563eb, #7c3aed);
    --theme-gradient-button-hover: linear-gradient(135deg, #38bdf8, #a855f7);
}

/* GLOBAL */
body {
    background:
        radial-gradient(circle at top left, rgba(37,99,235,.35), transparent 34%),
        radial-gradient(circle at top right, rgba(124,58,237,.35), transparent 32%),
        var(--theme-bg-main);
    color: var(--theme-text);
}

/* HEADER */
.topbar {
    background: rgba(8, 17, 31, .88);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--theme-border);
}

.brand-name {
    background: linear-gradient(135deg, #ffffff, #93c5fd, #c4b5fd);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.tagline {
    color: var(--theme-muted);
}

.icon-btn,
.btn-login-header {
    border-color: var(--theme-border);
    color: #ffffff;
}

.icon-btn:hover,
.btn-login-header:hover {
    background: rgba(37,99,235,.16);
}

.btn-register,
.btn-topup,
.btn-buy,
.member-btn,
.member-btn-inline,
.search-submit {
    background: var(--theme-gradient-button);
    color: #ffffff;
    box-shadow: 0 12px 28px rgba(37,99,235,.24);
}

.btn-register:hover,
.btn-topup:hover,
.btn-buy:hover,
.member-btn:hover,
.member-btn-inline:hover,
.search-submit:hover {
    background: var(--theme-gradient-button-hover);
    color: #ffffff;
}

/* HERO */
.hero-slider {
    background: var(--theme-bg-dark);
    box-shadow: 0 20px 50px rgba(0,0,0,.28);
}

.hero-left-panel {
    background: linear-gradient(180deg, #101a33, #151f3f);
}

.hero-cta {
    background: var(--theme-gradient-button);
    color: #ffffff;
    box-shadow: 0 12px 28px rgba(37,99,235,.24);
}

.hero-cta:hover {
    background: var(--theme-gradient-button-hover);
    color: #ffffff;
}

.slider-nav {
    background: rgba(15,23,42,.72);
    border: 1px solid rgba(255,255,255,.14);
}

.dot {
    background: rgba(255,255,255,.38);
}

.dot.active {
    background: #38bdf8;
}

/* SECTION */
.section-title {
    background: linear-gradient(135deg, #ffffff, #93c5fd, #c4b5fd);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-see-all,
.show-all-link,
.back-link,
.member-auth-footer a,
.member-panel-header a,
.member-link,
.game-category-label {
    color: #38bdf8;
}

/* GAME / PRODUCT CARDS */
.game-card,
.product-sidebar,
.step-card,
.checkout-box,
.summary-card,
.invoice-card,
.payment-instruction-card,
.member-auth-card,
.member-dashboard,
.member-panel,
.search-panel {
    background:
        linear-gradient(145deg, rgba(37,99,235,.16), rgba(124,58,237,.18)),
        var(--theme-bg-card);
    border: 1px solid var(--theme-border);
    box-shadow: 0 14px 36px rgba(0,0,0,.22);
}

.game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 45px rgba(37,99,235,.22);
}

.game-thumb,
.product-cover {
    background: var(--theme-bg-dark);
}

.game-info {
    background: transparent;
}

.game-info h3,
.product-sidebar h1,
.step-title,
.summary-card h3,
.invoice-header h1,
.payment-instruction-card h2,
.member-auth-card h1,
.member-dashboard h1,
.search-panel h1 {
    color: #ffffff;
}

/* FORM / INPUT */
.step-title {
    background: rgba(8,17,31,.52);
    border-bottom: 1px solid var(--theme-border);
}

.step-number {
    background: linear-gradient(135deg, #38bdf8, #a855f7);
    color: #ffffff;
}

.custom-input,
.member-input,
.search-input {
    background: rgba(8,17,31,.62);
    border: 1px solid var(--theme-border);
    color: #ffffff;
}

.custom-input::placeholder,
.member-input::placeholder,
.search-input::placeholder {
    color: rgba(255,255,255,.48);
}

/* NOMINAL & PAYMENT */
.nominal-card-inner,
.payment-card span,
.invoice-total,
.manual-payment-box,
.payment-steps,
.member-info-card,
.member-empty-state,
.member-timeline-content,
.empty-product-note {
    background: rgba(8,17,31,.58);
    border: 1px solid rgba(255,255,255,.08);
}

.nominal-card input:checked + .nominal-card-inner,
.payment-card input:checked + span {
    border-color: #38bdf8;
    background: linear-gradient(145deg, rgba(37,99,235,.28), rgba(124,58,237,.26));
}

.radio-icon,
.invoice-total strong,
.total-row strong {
    color: #38bdf8;
}

/* CHECKOUT / INVOICE STATUS */
.invoice-status {
    background: linear-gradient(135deg, #38bdf8, #7c3aed);
    color: #ffffff;
}

.invoice-status-pembayaran_diterima {
    background: linear-gradient(135deg, #22c55e, #38bdf8);
    color: #ffffff;
}

.invoice-status-diproses {
    background: linear-gradient(135deg, #2563eb, #7c3aed);
    color: #ffffff;
}

.invoice-status-sukses {
    background: linear-gradient(135deg, #16a34a, #22c55e);
    color: #ffffff;
}

.invoice-status-gagal,
.invoice-status-dibatalkan {
    background: linear-gradient(135deg, #ef4444, #ec4899);
    color: #ffffff;
}

/* WHATSAPP BUTTON */
.btn-whatsapp {
    background: linear-gradient(135deg, #16a34a, #25d366);
    color: #ffffff;
    box-shadow: 0 12px 28px rgba(37,211,102,.22);
}

/* MEMBER TABLE */
.member-table td {
    background: rgba(8,17,31,.62);
}

.member-table th {
    color: #93c5fd;
}

.member-small-btn {
    background: linear-gradient(135deg, #38bdf8, #7c3aed);
    color: #ffffff !important;
}

/* FOOTER */
.site-footer {
    color: var(--theme-muted);
    border-top: 1px solid rgba(255,255,255,.08);
    margin-top: 30px;
}

/* MOBILE */
@media (max-width: 768px) {
    body {
        background:
            radial-gradient(circle at top, rgba(37,99,235,.28), transparent 36%),
            var(--theme-bg-main);
    }
}

/* =====================================================
   STEP 34 - HOMEPAGE UI FINISHING
   ===================================================== */

/* PAGE SPACING */
.hero-banner {
    padding: 26px 0 36px;
}

.section-block {
    padding: 24px 0 38px;
}

.section-block + .section-block {
    margin-top: 4px;
}

/* HERO POLISH */
.hero-slider {
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.12);
}

.hero-slides {
    height: 390px;
}

.hero-slide {
    grid-template-columns: 300px 1fr;
}

.hero-left-panel {
    padding: 34px 28px;
    position: relative;
}

.hero-left-panel::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top left, rgba(56,189,248,.24), transparent 34%),
        radial-gradient(circle at bottom right, rgba(168,85,247,.22), transparent 38%);
    pointer-events: none;
}

.hero-cta {
    position: relative;
    z-index: 2;
    padding: 15px 22px;
    border-radius: 14px;
    letter-spacing: .2px;
}

.hero-image-panel img {
    transition: transform .7s ease;
}

.hero-slide.active .hero-image-panel img {
    transform: scale(1.015);
}

.slider-nav {
    width: 44px;
    height: 44px;
    font-size: 16px;
    transition: .2s ease;
}

.slider-nav:hover {
    transform: translateY(-50%) scale(1.06);
    background: rgba(37,99,235,.72);
}

.slider-dots {
    margin-top: 16px;
}

.dot {
    width: 11px;
    height: 11px;
    transition: .2s ease;
}

.dot.active {
    width: 28px;
    border-radius: 999px;
}

/* SECTION HEADING */
.section-heading-row {
    margin-bottom: 18px;
}

.section-title {
    font-size: 38px;
    letter-spacing: .5px;
    line-height: 1.1;
}

.section-see-all {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 9px 14px;
    border-radius: 999px;
    background: rgba(56,189,248,.1);
    border: 1px solid rgba(56,189,248,.24);
    text-decoration: none;
}

.section-see-all:hover {
    background: rgba(56,189,248,.18);
    color: #ffffff;
}

/* PRODUCT GRID */
.game-grid {
    gap: 18px;
}

.game-card {
    border-radius: 18px;
    overflow: hidden;
    position: relative;
}

.game-card::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 18px;
    border: 1px solid rgba(255,255,255,.08);
    pointer-events: none;
}

.game-thumb {
    height: 172px;
    position: relative;
}

.game-thumb img {
    transition: transform .35s ease;
}

.game-card:hover .game-thumb img {
    transform: scale(1.06);
}

.game-info {
    padding: 15px 13px 18px;
    min-height: 86px;
}

.game-info h3 {
    font-size: 15px;
    font-weight: 700;
    line-height: 1.45;
}

/* CATEGORY LABEL ON SEARCH RESULT ALSO LOOKS BETTER */
.game-category-label {
    background: rgba(56,189,248,.12);
    border: 1px solid rgba(56,189,248,.2);
    padding: 4px 8px;
    border-radius: 999px;
}

/* SHOW ALL */
.show-all-wrap {
    margin-top: 22px;
}

.show-all-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 11px 18px;
    border-radius: 999px;
    background: rgba(56,189,248,.1);
    border: 1px solid rgba(56,189,248,.24);
    text-decoration: none;
}

.show-all-link:hover {
    background: rgba(56,189,248,.18);
    color: #ffffff;
}

/* EMPTY NOTE */
.empty-product-note {
    border-radius: 18px;
    padding: 18px;
}

/* TOPBAR POLISH */
.topbar {
    position: sticky;
    top: 0;
    z-index: 50;
}

.brand-wrap:hover {
    opacity: .92;
}

.search-btn {
    background: rgba(255,255,255,.04);
}

/* HOME CONTAINER FEEL */
.container {
    max-width: 1320px;
}

/* RESPONSIVE HOMEPAGE */
@media (max-width: 1200px) {
    .hero-slides {
        height: 360px;
    }

    .hero-slide {
        grid-template-columns: 250px 1fr;
    }

    .section-title {
        font-size: 34px;
    }

    .game-thumb {
        height: 160px;
    }
}

@media (max-width: 768px) {
    .hero-banner {
        padding: 18px 0 26px;
    }

    .hero-slider {
        border-radius: 18px;
    }

    .hero-slides {
        height: auto;
    }

    .hero-slide {
        grid-template-columns: 1fr;
    }

    .hero-left-panel {
        min-height: 120px;
        padding: 20px;
    }

    .hero-cta {
        padding: 13px 18px;
        font-size: 14px;
    }

    .slider-nav {
        width: 38px;
        height: 38px;
    }

    .section-block {
        padding: 20px 0 30px;
    }

    .section-title {
        font-size: 28px;
    }

    .game-grid {
        gap: 14px;
    }

    .game-thumb {
        height: 150px;
    }

    .game-info {
        min-height: 78px;
        padding: 13px 11px 15px;
    }

    .game-info h3 {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .hero-image-panel img {
        height: 210px;
    }

    .game-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .game-thumb {
        height: 132px;
    }

    .section-title {
        font-size: 25px;
    }

    .show-all-link,
    .section-see-all {
        width: 100%;
    }
}

/* =====================================================
   STEP 35 - PRODUCT / CHECKOUT / INVOICE UI FINISHING
   ===================================================== */

/* PRODUCT PAGE LAYOUT */
.product-page {
    padding: 34px 0 64px;
}

.product-layout {
    gap: 28px;
    align-items: flex-start;
}

/* PRODUCT SIDEBAR */
.product-sidebar {
    position: relative;
    top: auto;
    overflow: hidden;
}

.product-sidebar::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top left, rgba(56,189,248,.18), transparent 38%),
        radial-gradient(circle at bottom right, rgba(168,85,247,.2), transparent 38%);
    pointer-events: none;
}

.product-sidebar > * {
    position: relative;
    z-index: 2;
}

.product-cover {
    border-radius: 18px;
    border: 1px solid rgba(255,255,255,.12);
    box-shadow: 0 18px 38px rgba(0,0,0,.24);
}

.product-cover img {
    height: 260px;
    transition: transform .35s ease;
}

.product-cover:hover img {
    transform: scale(1.04);
}

.product-sidebar h1 {
    font-size: 30px;
    font-weight: 900;
    margin-top: 4px;
}

.product-description {
    color: #cbd5e1;
}

.product-description p {
    padding-left: 14px;
    border-left: 3px solid rgba(56,189,248,.35);
}

/* STEP CARDS */
.product-form-area {
    gap: 20px;
}

.step-card {
    border-radius: 22px;
    border: 1px solid rgba(255,255,255,.12);
    box-shadow: 0 16px 38px rgba(0,0,0,.2);
}

.step-title {
    padding: 18px 20px;
    font-size: 19px;
}

.step-number {
    width: 34px;
    height: 34px;
    box-shadow: 0 10px 24px rgba(56,189,248,.24);
}

.step-body {
    padding: 20px;
}

.price-info-badge {
    border: 1px solid rgba(56,189,248,.18);
}

/* INPUT */
.custom-input {
    min-height: 50px;
    border-radius: 14px;
    transition: .2s ease;
}

.custom-input:focus {
    border-color: rgba(56,189,248,.55);
    box-shadow: 0 0 0 4px rgba(56,189,248,.08);
}

/* NOMINAL CARDS */
.nominal-grid {
    gap: 16px;
}

.nominal-card-inner {
    min-height: 138px;
    border-radius: 18px;
    padding: 18px;
    transition: .22s ease;
}

.nominal-card-inner:hover {
    transform: translateY(-3px);
    border-color: rgba(56,189,248,.35);
}

.nominal-card-inner h4 {
    font-size: 17px;
    line-height: 1.35;
    margin-right: 28px;
    margin-bottom: 22px;
}

.nominal-card-inner p {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .4px;
}

.nominal-card-inner strong {
    font-size: 18px;
    font-weight: 900;
}

.radio-icon {
    font-size: 20px;
}

/* PAYMENT CARDS */
.payment-grid {
    gap: 14px;
}

.payment-card span {
    border-radius: 16px;
    min-height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.payment-card span:hover {
    border-color: rgba(56,189,248,.35);
    transform: translateY(-2px);
}

/* DETAIL AREA */
.detail-note {
    color: #cbd5e1;
    line-height: 1.6;
}

.checkbox-wrap {
    background: rgba(8,17,31,.45);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 14px;
    padding: 14px;
    line-height: 1.6;
}

.checkbox-wrap input {
    margin-right: 8px;
}

/* PRODUCT SUBMIT */
.submit-area {
    display: flex;
    justify-content: flex-end;
}

.btn-topup {
    min-height: 52px;
    border-radius: 16px;
    padding: 15px 24px;
}

/* CHECKOUT PAGE */
.checkout-page {
    padding: 34px 0 68px;
}

.checkout-box {
    border-radius: 24px;
    padding: 26px;
    border: 1px solid rgba(255,255,255,.12);
    box-shadow: 0 18px 42px rgba(0,0,0,.22);
}

.checkout-left span {
    color: #cbd5e1;
}

.checkout-left h2 {
    font-size: 42px;
    font-weight: 900;
    background: linear-gradient(135deg, #38bdf8, #a855f7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.btn-buy {
    min-height: 52px;
    border-radius: 16px;
    padding: 15px 24px;
}

.summary-card {
    border-radius: 24px;
    border: 1px solid rgba(255,255,255,.12);
    box-shadow: 0 18px 42px rgba(0,0,0,.22);
}

.summary-card h3 {
    font-size: 26px;
    font-weight: 900;
    margin-bottom: 10px;
}

.summary-row {
    padding: 16px 0;
}

.summary-row span {
    color: #cbd5e1;
}

.summary-row strong {
    font-weight: 800;
}

.total-row {
    margin-top: 6px;
    padding-top: 20px;
}

.total-row strong {
    font-size: 24px;
    background: linear-gradient(135deg, #38bdf8, #a855f7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* INVOICE PAGE */
.invoice-page {
    padding: 34px 0 70px;
}

.invoice-layout {
    gap: 26px;
}

.invoice-card,
.payment-instruction-card {
    border-radius: 24px;
    border: 1px solid rgba(255,255,255,.12);
    box-shadow: 0 18px 42px rgba(0,0,0,.22);
}

.invoice-header {
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(255,255,255,.1);
}

.invoice-header h1 {
    font-size: 34px;
    font-weight: 900;
    letter-spacing: .4px;
}

.invoice-status {
    padding: 10px 16px;
    box-shadow: 0 12px 28px rgba(56,189,248,.18);
}

.invoice-total {
    margin-top: 18px;
    padding: 20px;
    border: 1px solid rgba(255,255,255,.08);
}

.invoice-total strong {
    font-size: 36px;
    font-weight: 900;
}

.invoice-detail {
    margin-top: 8px;
}

.payment-instruction-card h2 {
    font-size: 25px;
    font-weight: 900;
}

.manual-payment-box {
    border: 1px solid rgba(255,255,255,.08);
    transition: .2s ease;
}

.manual-payment-box:hover {
    border-color: rgba(56,189,248,.24);
}

.manual-payment-box strong {
    font-size: 19px;
}

.payment-steps {
    border: 1px solid rgba(255,255,255,.08);
}

.payment-steps h3 {
    color: #ffffff;
    font-weight: 900;
}

.payment-steps li {
    color: #cbd5e1;
}

.btn-whatsapp {
    min-height: 52px;
    border-radius: 16px;
}

/* BACK LINK */
.back-link {
    background: rgba(56,189,248,.08);
    border: 1px solid rgba(56,189,248,.18);
    padding: 10px 14px;
    border-radius: 999px;
    width: fit-content;
    text-decoration: none;
}

.back-link:hover {
    background: rgba(56,189,248,.16);
    color: #ffffff;
}

/* RESPONSIVE PRODUCT / CHECKOUT / INVOICE */
@media (max-width: 992px) {
    .product-sidebar {
        position: relative;
        top: auto;
    }

    .product-cover img {
        height: 230px;
    }

    .invoice-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .product-page,
    .checkout-page,
    .invoice-page {
        padding: 24px 0 54px;
    }

    .step-title {
        font-size: 17px;
    }

    .step-body {
        padding: 16px;
    }

    .nominal-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .nominal-card-inner {
        min-height: 126px;
        padding: 15px;
    }

    .nominal-card-inner h4 {
        font-size: 15px;
    }

    .nominal-card-inner strong {
        font-size: 16px;
    }

    .payment-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .checkout-box {
        align-items: stretch;
    }

    .checkout-left h2 {
        font-size: 34px;
    }

    .invoice-header h1 {
        font-size: 28px;
    }

    .invoice-total strong {
        font-size: 30px;
    }
}

@media (max-width: 480px) {
    .product-cover img {
        height: 210px;
    }

    .nominal-grid,
    .payment-grid {
        grid-template-columns: 1fr;
    }

    .submit-area {
        justify-content: stretch;
    }

    .btn-topup,
    .btn-buy,
    .btn-whatsapp {
        width: 100%;
    }

    .summary-row,
    .detail-row {
        align-items: flex-start;
    }

    .invoice-status {
        width: fit-content;
    }
}

/* =====================================================
   STEP 42 - FINAL BRANDING FOOTER
   ===================================================== */

.site-footer {
    padding: 44px 0 26px;
    margin-top: 40px;
    background:
        linear-gradient(145deg, rgba(37,99,235,.12), rgba(124,58,237,.14)),
        rgba(8,17,31,.88);
    border-top: 1px solid rgba(255,255,255,.1);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 28px;
    margin-bottom: 26px;
}

.footer-brand h3 {
    font-size: 26px;
    font-weight: 900;
    margin-bottom: 10px;
    background: linear-gradient(135deg, #ffffff, #93c5fd, #c4b5fd);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-brand p {
    color: #cbd5e1;
    line-height: 1.7;
    max-width: 520px;
}

.footer-links h4 {
    font-size: 17px;
    margin-bottom: 12px;
    color: #ffffff;
}

.footer-links a {
    display: block;
    color: #cbd5e1;
    margin-bottom: 9px;
    font-weight: 600;
}

.footer-links a:hover {
    color: #38bdf8;
}

.footer-bottom {
    padding-top: 18px;
    border-top: 1px solid rgba(255,255,255,.08);
    color: #94a3b8;
    text-align: center;
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .site-footer {
        padding: 34px 0 22px;
    }
}