/* vip-styles.css */

/* Общие стили */
.monthly-price {
    font-size: 14px;
    color: #caff00;
    font-weight: normal;
    display: block;
    margin-top: 5px;
}

* {
    box-sizing: border-box;
}

/* VIP секция */
.vip-info-section {
    margin-top: 15px;
    padding: 15px;
    background-color: #222a51;
    border-radius: 8px;
    text-align: center;
    color: #fff;
    font-size: 16px;
}

.vip-link-center {
    grid-column: 1 / -1;
    text-align: center;
    margin-top: 5px;
}

.vip-link-center a {
    color: #ff9800;
    font-size: 16px;
    text-decoration: none;
    font-weight: bold;
}

.vip-link-center a:hover {
    color: #ffd700;
    text-decoration: underline;
}

.vip-notice {
    padding: 10px;
    background-color: #1a243b;
    border-radius: 8px;
    margin: 0 auto;
}

.vip-notice-title {
    color: #ff9800;
    font-weight: bold;
    font-size: 16px;
    margin-bottom: 10px;
}

.vip-notice-text {
    color: #ddd;
    font-size: 13px;
}

.vip-notice-text a {
    color: #ffd700;
    font-size: 13px;
    text-decoration: underline;
}

.vip-notice-text a:hover {
    font-size: 13px;
    color: #ff9800;
}

/* Таблица сравнения тарифов */
.comparison-table {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4px;
    color: white;
    background-color: #09123d;
    padding: 8px;
    border-radius: 10px;
    margin-bottom: 6px;
}

.tariff-column {
    background-color: #222a51;
    border-radius: 10px;
    padding: 12px;
    text-align: center;
    position: relative;
    transition: transform 0.3s ease;
}

.tariff-column:hover {
    transform: translateY(-5px);
}

.tariff-column h3 {
    font-size: 16px;
    margin-bottom: 10px;
    font-weight: bold;
    color: white;
}

.tariff-column .tariff-price {
    font-size: 20px;
    color: #ffd700;
    margin-bottom: 15px;
    font-weight: bold;
}

.tariff-duration {
    font-size: 14px;
    font-weight: bold;
    color: #ffd700;
    margin-bottom: 10px;
}

.tariff-features {
    list-style: none;
    padding: 0;
    text-align: center;
    font-size: 14px;
}

.tariff-features li {
    margin: 10px 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Оплата */
.payment-block {
    background-color: #1a243b;
    padding: 8px;
    border-radius: 10px;
    margin-top: 10px;
}

.payment-title {
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 5px;
    color: #ccc;
}

.payment-block a.cta {
    text-decoration: none;
    color: #000000;
    background-color: #ff9800;
    padding: 8px;
    border-radius: 50px;
    font-weight: bold;
    display: inline-block;
    margin: 5px 0;
    width: 100%;
    text-align: center;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.payment-block a.cta:hover {
    background-color: #e68900;
    color: #ffffff;
    transform: translateY(-3px);
}

/* Лучший выбор */
.best-choice-label {
    position: absolute;
    top: -10px;
    right: -10px;
    background-color: #ff9800;
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    z-index: 10;
}

/* VIP выделение */
.vip-highlight {
    border: 2px solid #ffd700;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
    background-color: #292f5c;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.vip-highlight:hover {
    box-shadow: 0 0 25px rgba(255, 215, 0, 0.8);
}

/* Tooltip */
.tooltip {
    position: relative;
    cursor: pointer;
    margin-left: 5px;
    display: inline-block;
    background-color: #ccc;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    text-align: center;
    line-height: 20px;
    color: #222;
    font-size: 14px;
    font-weight: bold;
}

.tooltip .tooltiptext {
    visibility: hidden;
    width: 170px;
    background-color: #333;
    color: #fff;
    text-align: center;
    border-radius: 5px;
    padding: 10px;
    position: absolute;
    z-index: 1;
    bottom: 125%;
    left: 50%;
    margin-left: -150px;
    opacity: 0;
    transition: opacity 0.3s;
    font-size: 12px;
}

.tooltip:hover .tooltiptext {
    visibility: visible;
    opacity: 1;
}

/* Адаптивность */
@media (max-width: 768px) {
    .vip-info-section {
        padding: 10px;
        font-size: 14px;
    }
    .vip-notice {
        padding: 8px;
    }
    .vip-link-center a {
        font-size: 14px;
    }
    .vip-notice-title {
        font-size: 14px;
    }
    .vip-notice-text {
        font-size: 13px;
    }
    .comparison-table {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    .tariff-column {
        padding: 10px;
    }
    .tariff-column h3 {
        font-size: 14px;
    }
    .tariff-price {
        font-size: 16px;
    }
    .cta {
        font-size: 12px;
        padding: 8px 10px;
    }
    .payment-title {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .comparison-table {
        grid-template-columns: 1fr;
    }
}
