:root {
    --border-color: rgb(24, 28, 34);
    --background-color: rgba(22, 27, 36, 0.726);
    --border-width: 1px;
    --text-color: rgb(255, 255, 255);
    --btn-border-color: rgb(52, 113, 247);
    --btn-border-color-hover: rgb(61, 145, 255);
    --btn-bg-color: rgba(175, 209, 21, 0);
}

.pricing-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: radial-gradient(94.8% 94.8% at 6.37% 5.2%, var(--background-color) 0%, rgb(9, 9, 13) 100%);
    border-radius: 20px;
    padding: 20px;
    width: 300px;
    opacity: 1;
    border: var(--border-width) solid var(--border-color);
    transition: 0.3s ease-in-out;
}

.pricing-card:hover {
    transform: translateY(-5px) scale(1.02);
    background: radial-gradient(94.8% 94.8% at 6.37% 5.2%, rgb(22, 23, 36) 0%, rgb(10, 9, 13) 100%);
}

.pricing-card h3 {
    font-size: 30px;
    letter-spacing: 2px;
}

.pricing-header h3 {
    font-size: 24px;
    color: var(--text-color);
    margin-bottom: 10px;
}

.pricing-amount h4 {
    font-size: 32px;
    color: var(--text-color);
    margin: 0;
}

.btn-purchase {
    width: 100%;
    padding: 10px;
    margin-top: 20px;
    text-align: center;
    color: var(--text-color);
    text-decoration: none;
    font-size: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    letter-spacing: 2px;
    background-color: var(--btn-border-color);
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: 10px;
    font-weight: bold;
    transition: all .3s ease;
}

.btn-purchase:hover {
    transform: translateY(-5px) scale(1.01);
    background: linear-gradient(149deg, #2f90eb38, #16161611 29%, #16161611 74%, #2f90eb38);
    border: 1px solid var(--btn-border-color);
    box-shadow: 0 1px 3px var(--btn-border-color);
}

.arrow-icon {
    transition: transform 0.2s ease-in-out;
}

.btn-purchase:hover .arrow-icon {
    transform: rotate(45deg);
}

.btn-purchase svg {
    width: 20px;
    height: 20px;
    margin-left: 8px;
}

.btn-purchase-icon {
    width: 24px;
    height: 24px;
    margin-right: 10px;
    object-fit: contain;
}

.pricing-benefits p {
    margin: 5px 0;
    color: rgb(175, 175, 175);
    display: flex;
    align-items: center;
}

.pricing-benefits svg {
    margin-right: 10px;
    width: 20px;
    height: 20px;
    stroke: #1e40af;
}

.purchase-holder {
    z-index: 2;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    flex-direction: column;
}

.purchase-holder h1 {
    font-size: 50px;
    font-weight: 550;
    margin-bottom: 20px;
    color: #fff;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.purchase-holder .description {
    font-size: 20px;
    color: rgb(175, 175, 175);
    font-family: Arial, sans-serif;
    margin-bottom: 40px;
    max-width: 600px;
    letter-spacing: 2px;
}

.purchase-holder > div {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 20px;
    flex-wrap: wrap;
}

.benefit-item {
    margin: 8px 0;
    display: flex;
    align-items: center;
}

.divider {
    height: 1px;
    background-color: #ffffff1a;
    width: 100%;
    margin: 5px 0;
    margin-top: 15px;
    margin-bottom: 15px;
}

@media (max-width: 768px) {
    .purchase-holder {
        height: auto;
        padding: 40px 20px;
    }

    .purchase-holder > div {
        flex-direction: column;
        gap: 30px;
    }

    .pricing-card {
        width: 100%;
        max-width: 300px;
    }

    .purchase-holder h1 {
        font-size: 36px;
    }

    .purchase-holder .description {
        font-size: 16px;
        padding: 0 10px;
    }

    .btn-purchase {
        font-size: 14px;
        padding: 8px;
    }

    .btn-purchase svg {
        width: 18px;
        height: 18px;
    }

    .btn-purchase-icon {
        width: 20px;
        height: 20px;
    }

    .pricing-benefits p {
        font-size: 14px;
    }
}
