/* style/hit-club-vip-tiers.css */
.page-hit-club-vip-tiers {
    font-family: 'Arial', sans-serif;
    color: #333333;
    line-height: 1.6;
    background-color: #f4f7f6;
}

.page-hit-club-vip-tiers__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.page-hit-club-vip-tiers__hero {
    background: linear-gradient(135deg, #007BFF 0%, #0056b3 100%); /* Darker blue for better contrast */
    color: #FFFFFF;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hit-club-vip-tiers__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.2;
    z-index: 0;
}

.page-hit-club-vip-tiers__hero .page-hit-club-vip-tiers__container {
    position: relative;
    z-index: 1;
}

.page-hit-club-vip-tiers__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    font-weight: bold;
    color: #FFD700; /* Gold for title */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-hit-club-vip-tiers__hero-subtitle {
    font-size: 1.5em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #FFFFFF;
}

.page-hit-club-vip-tiers__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
    font-size: 1.1em;
    cursor: pointer;
    border: none;
}

.page-hit-club-vip-tiers__btn--primary {
    background-color: #FFD700; /* Gold */
    color: #000000; /* Black for contrast */
}

.page-hit-club-vip-tiers__btn--primary:hover {
    background-color: #e6c200;
    transform: translateY(-3px);
}

.page-hit-club-vip-tiers__btn--secondary {
    background-color: transparent;
    color: #FFD700;
    border: 2px solid #FFD700;
    margin-left: 20px;
}

.page-hit-club-vip-tiers__btn--secondary:hover {
    background-color: #FFD700;
    color: #000000;
    transform: translateY(-3px);
}

.page-hit-club-vip-tiers__section {
    padding: 60px 0;
    background-color: #FFFFFF;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.page-hit-club-vip-tiers__section:nth-child(even) {
    background-color: #fcfcfc;
}

.page-hit-club-vip-tiers__section-title {
    font-size: 2.5em;
    color: #007BFF; /* Primary blue */
    text-align: center;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

.page-hit-club-vip-tiers__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #FFD700; /* Gold accent */
    border-radius: 2px;
}

.page-hit-club-vip-tiers__section-description {
    font-size: 1.1em;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 40px auto;
    color: #555555;
}

.page-hit-club-vip-tiers__why-join .page-hit-club-vip-tiers__benefits-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.page-hit-club-vip-tiers__why-join .page-hit-club-vip-tiers__benefits-list li {
    background-color: #e9f5ff; /* Light blue */
    padding: 20px;
    border-radius: 8px;
    font-size: 1.1em;
    display: flex;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    color: #0056b3; /* Darker blue for text */
}

.page-hit-club-vip-tiers__why-join .page-hit-club-vip-tiers__benefits-list li i {
    color: #007BFF;
    font-size: 1.5em;
    margin-right: 15px;
}

/* Icon styles (placeholder, actual icons would be from an icon font or SVG) */
.page-hit-club-vip-tiers .icon-star::before { content: '⭐'; }
.page-hit-club-vip-tiers .icon-headset::before { content: '🎧'; }
.page-hit-club-vip-tiers .icon-limit::before { content: '📈'; }
.page-hit-club-vip-tiers .icon-gift::before { content: '🎁'; }
.page-hit-club-vip-tiers .icon-money::before { content: '💰'; }
.page-hit-club-vip-tiers .icon-cashback::before { content: '💸'; }
.page-hit-club-vip-tiers .icon-birthday::before { content: '🎂'; }
.page-hit-club-vip-tiers .icon-manager::before { content: '🤵'; }
.page-hit-club-vip-tiers .icon-fast-withdraw::before { content: '🚀'; }
.page-hit-club-vip-tiers .icon-event::before { content: '🏆'; }
.page-hit-club-vip-tiers .icon-exclusive-bonus::before { content: '💎'; }

.page-hit-club-vip-tiers__tier-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-hit-club-vip-tiers__tier-card {
    background-color: #FFFFFF;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, border-color 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.page-hit-club-vip-tiers__tier-card:hover {
    transform: translateY(-10px);
    border-color: #007BFF;
}

.page-hit-club-vip-tiers__tier-name {
    font-size: 2em;
    color: #007BFF; /* Primary blue */
    margin-bottom: 15px;
    font-weight: bold;
}

.page-hit-club-vip-tiers__tier-condition {
    font-size: 0.95em;
    color: #777777;
    margin-bottom: 20px;
    min-height: 40px;
}

.page-hit-club-vip-tiers__tier-benefits {
    list-style: none;
    padding: 0;
    text-align: left;
    color: #444444;
    flex-grow: 1;
}

.page-hit-club-vip-tiers__tier-benefits li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 25px;
}

.page-hit-club-vip-tiers__tier-benefits li::before {
    content: '✅';
    position: absolute;
    left: 0;
    color: #28a745;
}

.page-hit-club-vip-tiers__image-full-width {
    width: 100%;
    height: auto;
    max-width: 100%;
    border-radius: 8px;
    margin-top: 40px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-hit-club-vip-tiers__image-center {
    display: block;
    margin: 40px auto 0 auto;
    max-width: 80%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-hit-club-vip-tiers__upgrade-guide .page-hit-club-vip-tiers__guide-list {
    list-style: none;
    padding: 0;
    max-width: 900px;
    margin: 0 auto 40px auto;
}

.page-hit-club-vip-tiers__upgrade-guide .page-hit-club-vip-tiers__guide-list li {
    background-color: #f7f7f7;
    padding: 20px;
    margin-bottom: 15px;
    border-left: 5px solid #007BFF;
    border-radius: 5px;
    font-size: 1.1em;
    color: #333333;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.page-hit-club-vip-tiers__upgrade-guide .page-hit-club-vip-tiers__guide-list li strong {
    color: #0056b3;
}

.page-hit-club-vip-tiers__privilege-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-hit-club-vip-tiers__privilege-card {
    background-color: #e9f5ff; /* Light blue */
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    color: #0056b3; /* Darker blue for text */
}

.page-hit-club-vip-tiers__privilege-card i {
    font-size: 3em;
    color: #007BFF;
    margin-bottom: 15px;
    display: block;
}

.page-hit-club-vip-tiers__privilege-card h3 {
    font-size: 1.5em;
    margin-bottom: 10px;
    color: #007BFF;
}

.page-hit-club-vip-tiers__privilege-card p {
    font-size: 1em;
    color: #333333;
}

.page-hit-club-vip-tiers__faq {
    background-color: #fcfcfc;
}

.page-hit-club-vip-tiers__faq-item {
    background-color: #FFFFFF;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-hit-club-vip-tiers__faq-question {
    font-size: 1.25em;
    color: #007BFF;
    margin-bottom: 10px;
    font-weight: bold;
}

.page-hit-club-vip-tiers__faq-answer {
    font-size: 1em;
    color: #555555;
}

.page-hit-club-vip-tiers__cta-section {
    background: linear-gradient(135deg, #007BFF 0%, #0056b3 100%);
    color: #FFFFFF;
    padding: 80px 0;
    text-align: center;
    border-radius: 8px;
    margin-top: 40px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.page-hit-club-vip-tiers__cta-image {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 200px;
    height: auto;
    opacity: 0.1;
    z-index: 0;
}

.page-hit-club-vip-tiers__cta-section .page-hit-club-vip-tiers__container {
    position: relative;
    z-index: 1;
}

.page-hit-club-vip-tiers__cta-title {
    font-size: 2.8em;
    color: #FFD700; /* Gold */
    margin-bottom: 20px;
    font-weight: bold;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}

.page-hit-club-vip-tiers__cta-description {
    font-size: 1.3em;
    max-width: 800px;
    margin: 0 auto 40px auto;
    color: #FFFFFF;
}

.page-hit-club-vip-tiers__cta-buttons .page-hit-club-vip-tiers__btn {
    margin: 0 10px;
}

.page-hit-club-vip-tiers .highlight-text {
    color: #FFD700;
    font-weight: bold;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-hit-club-vip-tiers__hero-title {
        font-size: 3em;
    }
    .page-hit-club-vip-tiers__hero-subtitle {
        font-size: 1.3em;
    }
    .page-hit-club-vip-tiers__section-title {
        font-size: 2em;
    }
    .page-hit-club-vip-tiers__tier-grid,
    .page-hit-club-vip-tiers__privilege-grid {
        grid-template-columns: 1fr;
    }
    .page-hit-club-vip-tiers__why-join .page-hit-club-vip-tiers__benefits-list {
        grid-template-columns: 1fr;
    }
    .page-hit-club-vip-tiers__cta-title {
        font-size: 2.2em;
    }
    .page-hit-club-vip-tiers__cta-description {
        font-size: 1.1em;
    }
}

@media (max-width: 768px) {
    .page-hit-club-vip-tiers__hero {
        padding: 80px 0;
    }
    .page-hit-club-vip-tiers__hero-title {
        font-size: 2.5em;
    }
    .page-hit-club-vip-tiers__hero-subtitle {
        font-size: 1.1em;
    }
    .page-hit-club-vip-tiers__btn {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-hit-club-vip-tiers__btn--secondary {
        margin-left: 10px;
    }
    .page-hit-club-vip-tiers__section {
        padding: 40px 0;
    }
    .page-hit-club-vip-tiers__section-title {
        font-size: 1.8em;
    }
    .page-hit-club-vip-tiers__section-description {
        font-size: 1em;
    }
    .page-hit-club-vip-tiers__tier-card,
    .page-hit-club-vip-tiers__privilege-card {
        padding: 20px;
    }
    .page-hit-club-vip-tiers__tier-name {
        font-size: 1.8em;
    }
    .page-hit-club-vip-tiers__faq-question {
        font-size: 1.1em;
    }
    .page-hit-club-vip-tiers__cta-title {
        font-size: 1.8em;
    }
    .page-hit-club-vip-tiers__cta-description {
        font-size: 1em;
    }
    .page-hit-club-vip-tiers__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    .page-hit-club-vip-tiers__cta-buttons .page-hit-club-vip-tiers__btn {
        margin: 0;
        width: 80%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .page-hit-club-vip-tiers__hero-title {
        font-size: 2em;
    }
    .page-hit-club-vip-tiers__hero-subtitle {
        font-size: 0.9em;
    }
    .page-hit-club-vip-tiers__btn {
        padding: 10px 20px;
        font-size: 0.9em;
    }
    .page-hit-club-vip-tiers__section-title {
        font-size: 1.5em;
    }
    .page-hit-club-vip-tiers__image-center {
        max-width: 95%;
    }
    .page-hit-club-vip-tiers__cta-title {
        font-size: 1.5em;
    }
    .page-hit-club-vip-tiers__cta-description {
        font-size: 0.9em;
    }
}