/* ============================================
   BUY POKT SECTION
   ============================================ */
.buy-pokt {
    background: var(--pocket-brand-blue);
    position: relative;
    overflow: hidden;
    padding: 100px 0;
}

.buy-pokt::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 214, 10, 0.15) 0%, transparent 60%);
    pointer-events: none;
}

.buy-pokt::after {
    content: '';
    position: absolute;
    bottom: -30%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(76, 155, 245, 0.2) 0%, transparent 60%);
    pointer-events: none;
}

.buy-pokt__inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.buy-pokt__content {
    max-width: 480px;
}

.buy-pokt__title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
}

.buy-pokt__description {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    margin-bottom: 32px;
}

.buy-pokt__buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.buy-pokt .btn--primary {
    background: var(--pocket-yellow);
    color: var(--pocket-dark);
}

.buy-pokt .btn--primary:hover {
    background: #fff;
    transform: translateY(-2px);
}

.buy-pokt .btn--secondary {
    border-color: rgba(255, 255, 255, 0.3);
}

.buy-pokt__widget {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: var(--radius-xl);
    padding: 32px;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.buy-pokt__widget-placeholder {
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
}

/* CoinGecko widget styling */
.buy-pokt__widget gecko-coin-ticker-widget,
.buy-pokt__widget gecko-coin-price-chart-widget {
    width: 100%;
}

/* Responsive */
@media (max-width: 992px) {
    .buy-pokt__inner {
        grid-template-columns: 1fr;
        gap: 48px;
        text-align: center;
    }
    
    .buy-pokt__content {
        max-width: 100%;
    }
    
    .buy-pokt__buttons {
        justify-content: center;
    }
}
