.container::before {
    content: "INTERNET TOYBOX - BUY TOYBUCKS";
    position: absolute;
    top: -10px;
    left: 14px;

    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1px;

    background: #e9e9e9;
    padding: 2px 6px;
    border: 1px solid #c7c7c7;
}


.purchase-page {
    padding: 20px;
}

.purchase-header {
    background: white;
    border: 1px solid #cfcfcf;
    padding: 16px;
    margin-bottom: 14px;
    text-align: center;
}

.purchase-header h2 {
    margin-bottom: 5px;
}



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

.bucks-card {
    position: relative;

    background: white;
    border: 1px solid #cfcfcf;
    padding: 20px;
    text-align: center;

    transition: .15s ease;
}

.bucks-card:hover {
    border-color: #ff4a47;

    box-shadow:
        0 0 0 3px rgba(255,74,71,.12);

    transform: translateY(-2px);
}

.featured {
    border-color: #ff4a47;
}

.featured-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);

    background: #4d3f3f;
    color: white;

    font-size: 10px;
    font-weight: 800;

    padding: 4px 8px;
}

.bucks-amount {
    font-size: 42px;
    font-weight: 800;
    color: #ff4a47;
}

.bucks-label {
    font-size: 14px;
    margin-bottom: 10px;
}

.bucks-price {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 14px;
}

.purchase-btn {
    display: inline-block;

    padding: 8px 14px;

    text-decoration: none;
    color: white;

    border: 1px solid #0b1bf5;

    background:
        linear-gradient(
            180deg,
            rgb(178,161,255),
            rgb(92,77,224)
        );

    font-weight: 700;
}

.purchase-btn:hover {
    background:
        linear-gradient(
            180deg,
            rgb(187,172,255),
            rgb(109,94,248)
        );
}

.purchase-info {
    margin-top: 14px;

    background: #f5f5f5;
    border: 1px solid #cfcfcf;
    padding: 14px;
}

.purchase-info h3 {
    margin-bottom: 10px;
}

.purchase-info ul {
    margin-left: 18px;
}

@media (max-width: 900px) {

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

}

.bucks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 14px;
}

.bucks-card {
    position: relative;
    display: flex;
    flex-direction: column;

    background: white;
    border: 1px solid #cfcfcf;
    padding: 22px;
    min-height: 260px;

    text-align: center;

    transition: .15s ease;
}

.bucks-card .btn,
.bucks-card .purchase-btn {
    margin-top: auto;
}

.bucks-card:hover {
    border-color: #ff4a47;

    box-shadow:
        0 0 0 3px rgba(255,74,71,.12);

    transform: translateY(-2px);
}

.featured {
    border: 2px solid #ff4a47;
}

.premium {
    border: 2px solid #ffd24d;
}

.featured-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);

    background: #4d3f3f;
    color: white;

    font-size: 10px;
    font-weight: 800;

    padding: 4px 8px;

    white-space: nowrap;
}

.premium .featured-badge {
    background: #d8a100;
}

.bucks-amount {
    font-size: 46px;
    font-weight: 800;
    color: #ff4a47;
    line-height: 1;
}

.bucks-label {
    font-size: 14px;
    margin-top: 4px;
}

.bucks-price {
    font-size: 28px;
    font-weight: 700;
    margin: 14px 0;
}

.bonus {
    color: #199c3c;
    font-weight: 700;
    margin-bottom: 12px;
    font-size: 13px;
}

.premium-section {
    margin-top: 18px;
    text-align: center;
}

.premium-card {
    max-width: 500px;
    margin: 16px auto 0;

    background: white;
    border: 2px solid #ffd24d;

    padding: 24px;
}

.premium-card ul {
    text-align: left;
    margin: 16px auto;
    max-width: 250px;
}