.row {
    display: block;
    padding: 5px;
}

.vip-cards-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    padding: 10px 0;
}

.vip-card-wrapper {
    width: 100%;
}

.vip-card {
    background: linear-gradient(#0f0f10, #0f0f10), url(../images/bg-h-content.jpg) no-repeat center / cover;
    border-radius: 3px;
    box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    margin-bottom: 10px;
    min-height: 330px;
    padding: 25px;
    padding-bottom: 60px;
    overflow: hidden;
    position: relative;
    text-align: center;
    transition: all 0.2s ease;
    width: 100%;
    z-index: 0;
}

.vip-card:hover {
    transform: translateY(-5px);
}

.vip-card.vip-prime {
    position: relative;
}

.vip-card.vip-prime:before {
    background: #ffb505;
    color: #000;
    content: "PRIME";
    font-size: 9px;
    font-weight: bold;
    line-height: 1;
    padding: 4px 20px;
    position: absolute;
    right: -21px;
    top: 6px;
    transform: rotate(45deg);
    z-index: 2;
}

.vip-card.best-value {
    border: 1px solid #ffb505 !important;
    box-shadow: 0 0 10px rgba(255, 181, 5, 0.2);
    position: relative;
}

.vip-card.best-value:after {
    background: #a40000;
    color: #ffdede;
    content: "BEST VALUE";
    font-size: 8px;
    font-weight: bold;
    padding: 2px 15px;
    position: absolute;
    left: -22px;
    top: 12px;
    transform: rotate(-45deg);
    z-index: 2;
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
}

.vip-image {
    border: 1px solid rgb(83 58 18 / 40%);
    border-radius: 50%;
    height: 70px;
    margin: 0 auto 12px;
    position: relative;
    overflow: hidden;
    width: 70px;
    transition: all 0.3s ease;
}

.vip-card:hover .vip-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle, rgba(255, 181, 5, 0.7) 0%, rgba(255, 181, 5, 0) 70%);
    z-index: 2;
}

.vip-image img {
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.vip-card-content {
    display: flex;
    flex-direction: column;
    height: 100%;
    color: #a5a5a5;
    position: relative;
    width: 100%;
    z-index: 1;
}

.vip-card-top-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.vip-card-bottom-content {
    position: absolute;
    bottom: -45px;
    left: 0;
    width: 100%;
}

.vip-title {
    color: #ffb505 !important;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 4px;
    overflow: hidden;
    text-overflow: ellipsis;
    text-transform: uppercase;
    white-space: nowrap;
}

.vip-duration {
    color: #a5a5a5;
    font-size: 12px;
    font-weight: 500;
    margin-bottom: 8px;
    white-space: nowrap;
}

.price-selector {
    margin: 10px 0;
    width: 100%;
}

.currency-select {
    background-color: #090909c4;
    border: 1px solid #74511942;
    border-radius: 3px;
    color: #ffb505;
    font-size: 12px;
    padding: 5px;
    width: 90%;
    cursor: pointer;
    text-align: center;
    text-align-last: center;
}

.currency-select option {
    background-color: #1a1a1a;
    color: #cccccc;
}

.currency-select:focus {
    outline: none;
    border-color: #ffb505;
    box-shadow: 0 0 5px rgba(255, 181, 5, 0.3);
}

.vip-discount {
    background: rgba(76, 175, 80, 0.1);
    border-radius: 3px;
    color: #4caf50 !important;
    display: block;
    font-size: 10px;
    font-weight: 600;
    margin-bottom: 8px;
    padding: 2px 6px;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.vip-discount-placeholder {
    height: 16px;
    margin-bottom: 8px;
    visibility: hidden;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
}

.vip-benefits {
    display: flex;
    flex-direction: column;
    list-style: none;
    margin: 0 0 5px;
    max-height: none;
    min-height: 50px;
    overflow: visible;
    padding: 0;
    text-align: left;
}

.vip-benefits li {
    align-items: center;
    color: #a5a5a5;
    display: flex;
    font-size: 10px;
    margin-bottom: 5px;
}

.vip-benefits li::before {
    content: "\f00c";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: #4caf50 !important;
    margin-right: 5px;
}

.vip-card-content .btn-base,
.vip-card-content a.btn-base {
    margin: 0 auto !important;
    text-align: center !important;
    width: 80% !important;
}

.vip-type-selection {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 10px;
    padding: 15px;
    border-radius: 0;
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    background: linear-gradient(#0000005e, #0000005e), url(../images/bg-h-content.jpg) no-repeat center / cover;
}

.vip-type-card {
    background: #23232345;
    border: 1px solid rgb(24 24 24);
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px;
    position: relative;
    transition: all 0.3s ease;
    width: 160px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.vip-type-card:hover:not(.active) {
    box-shadow: 0 0 8px #5656564f;
}

.vip-type-card.active {
    border: 1px solid #ffb505;
    box-shadow: 0 0 10px rgba(255, 181, 5, 0.2);
}

.vip-type-card .type-icon {
    color: #ffb505;
    font-size: 18px;
    position: relative;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vip-type-card.active .type-icon {
    color: #ffb505;
}

.vip-type-card .type-icon i.fa-star {
    position: absolute;
    font-size: 10px;
    top: -5px;
    right: -2px;
}

.vip-type-card .type-info h3 {
    color: #ffb505;
    font-size: 14px;
    font-weight: 600;
    margin: 0 0 2px;
}

.vip-type-card.active .type-info h3 {
    color: #ffb505;
}

.vip-type-card .type-info p {
    color: #b0aea394;
    font-size: 10px;
    margin: 0;
}

.vip-content {
    display: none;
    animation: fadeIn 0.4s ease;
}

.vip-content.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@media (max-width: 992px) {
    .vip-cards-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
}

@media (max-width: 576px) {
    .vip-cards-container {
        grid-template-columns: 1fr;
    }
}