/* Container */
.page-template-page-woo-credit-packages {
    background: linear-gradient(120deg, #c7e9f1 10%, #2563eb94 40%, #d4e4f7 80%, #f8fafc 100%) !important;
}

.credit-packages {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    font-family: "Segoe UI", sans-serif;
}

/* Grid Layout (3 per row desktop, 2 tablet, 1 mobile) */
.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

/* Package Card */
.package-card {
    background: #0c0b0b;
    border: 1px solid #ffffff;
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.package-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
}

/* Package Title */
.package-card h2 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #fff;
}

/* Price */
.package-card strong {
    font-size: 26px;
    color: #fff;
}

/* Credits Count */
.package-card p {
    margin: 8px 0;
    color: #fff;
}

/* Description */
.package-card p:last-of-type {
    font-size: 14px;
    color: #fff;
}

/* Buy Now Button */
.package-card .btn-buy,
.package-card .btn-login {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 20px;
    background-image: linear-gradient(to right, #4776E6 0%, #8E54E9 51%, #4776E6 100%);
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    border-radius: 6px;
    transition: background 0.3s ease;
}

.package-card .btn-buy:hover,
.package-card .btn-login:hover {
    background-image: linear-gradient(to right, #77A1D3 0%, #79CBCA 51%, #77A1D3 100%);
}

.page-template-page-credit-packages {
    background: linear-gradient(120deg, #c7e9f1 10%, #2563eb94 40%, #d4e4f7 80%, #f8fafc 100%) !important;
}

.packages-heading {
    text-align: center;
    margin-bottom: 5px;
}

.packages-text {
    text-align: center;
    margin-bottom: 40px;
}