<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.how-to-buy-section {
    position: relative;
    padding: 4rem 0;
    background-image: url('/assets/site/blog/background-lg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    overflow: hidden;
    z-index: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    margin: 0;
}

.how-to-buy-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(10, 15, 45, 0.85),
        rgba(10, 15, 45, 0.95)
    );
    z-index: 1;
}

.how-to-buy-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 255, 0, 0.15);
    z-index: 2;
    pointer-events: none;
}

.how-to-buy-section .container {
    position: relative;
    z-index: 3;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 15px;
}

.section-header {
    text-align: center;
    margin: 0 0 3rem 0;
}

.section-title {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    margin: 0 0 1rem 0;
    text-shadow: 0 0 10px rgba(0, 255, 0, 0.5);
    letter-spacing: 0.5px;
}

.section-subtitle {
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    color: rgba(255, 255, 255, 0.8);
    max-width: 800px;
    margin: 0 auto;
    font-weight: 400;
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1.5rem;
    margin: 0 0 3rem 0;
}

.steps-container .step-card:nth-child(-n+3) {
    grid-column: span 2;
}

.steps-container .step-card:nth-last-child(-n+2) {
    grid-column: span 3;
}

.step-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 1.25rem;
    position: relative;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 255, 0, 0.15);
    border-color: rgba(0, 255, 0, 0.15);
    background: rgba(255, 255, 255, 0.05);
}

.step-number {
    position: absolute;
    top: -12px;
    left: -12px;
    width: 28px;
    height: 28px;
    background: var(--c2, #39d469);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.9rem;
    color: #ffffff;
    box-shadow: 0 0 15px rgba(57, 212, 105, 0.5);
}

.step-content {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.step-content h3 {
    font-size: 1.1rem;
    margin: 0 0 1rem 0;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.step-content h3 i {
    font-size: 0.9rem;
}

.step-content h3 .mash-icon {
    width: 18px;
    height: 18px;
    object-fit: contain;
    vertical-align: middle;
    filter: brightness(1.2);
}

.step-content p {
    color: rgba(255, 255, 255, 0.7);
    margin: 0 0 0.75rem 0;
    line-height: 1.4;
    font-size: 0.85rem;
}

.registration-steps,
.wallet-options,
.buy-steps {
    list-style: none;
    padding: 0;
    margin: 0;
    flex-grow: 1;
}

.registration-steps li,
.wallet-options li,
.buy-steps li {
    color: rgba(255, 255, 255, 0.7);
    margin: 0.5rem 0;
    padding-left: 1.25rem;
    position: relative;
    line-height: 1.4;
    font-size: 0.85rem;
}

.registration-steps li::before,
.buy-steps li::before {
    content: "\f00c";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--c2, #39d469);
}

.supported-tokens,
.payment-methods {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin: 0.75rem 0;
}

.token,
.payment-method {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 0.35rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
}

.payment-method i {
    font-size: 0.9rem;
}

.token:hover,
.payment-method:hover {
    background: rgba(0, 255, 0, 0.1);
    border-color: rgba(0, 255, 0, 0.3);
}

.register-btn,
.connect-wallet-btn,
.buy-btn,
.moonpay-btn {
    width: 100%;
    padding: 0.6rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    margin-top: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--c2, #39d469);
    color: #ffffff;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.buy-btn.eth {
    background: rgba(98, 126, 234, 0.1);
    border: 1px solid rgba(98, 126, 234, 0.3);
}

.buy-btn.bnb {
    background: rgba(243, 186, 47, 0.1);
    border: 1px solid rgba(243, 186, 47, 0.3);
}

.moonpay-btn {
    background: #FFFFFF;
    border: 1px solid rgba(0, 0, 0, 0.1);
    color: #000000;
    gap: 10px;
}

.moonpay-btn:hover {
    background: #F8F8F8;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.moonpay-btn .moonpay-logo {
    height: 20px;
    width: auto;
    object-fit: contain;
}

.moonpay-btn span {
    font-weight: 500;
}

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

    .steps-container .step-card:nth-child(-n+3),
    .steps-container .step-card:nth-last-child(-n+2) {
        grid-column: span 1;
    }
}

@media (max-width: 768px) {
    .how-to-buy-section {
        padding: 3rem 0;
    }

    .steps-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .steps-container .step-card:nth-child(-n+3),
    .steps-container .step-card:nth-last-child(-n+2) {
        grid-column: span 1;
        width: 100%;
    }
}

@media (max-width: 576px) {
    .how-to-buy-section {
        padding: 2rem 0;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .step-card {
        padding: 1.25rem;
    }

    .step-number {
        top: -12px;
        left: -12px;
        width: 28px;
        height: 28px;
        font-size: 0.9rem;
    }
} </pre></body></html>