/* style/vip-program.css */

.page-vip-program {
    font-family: 'Arial', sans-serif;
    color: #E0E0E0; /* Light grey for general text on dark background */
    background-color: #0A1931; /* Primary dark background */
    line-height: 1.6;
}

.page-vip-program__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-vip-program__hero-section {
    background: linear-gradient(135deg, #0A1931 0%, #1a3a6b 100%); /* Dark blue gradient */
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-vip-program__hero-section::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255,215,0,0.1) 0%, rgba(255,215,0,0) 70%);
    animation: floatEffect 15s infinite ease-in-out;
}

.page-vip-program__hero-section::after {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(255,215,0,0.1) 0%, rgba(255,215,0,0) 70%);
    animation: floatEffect 18s infinite reverse ease-in-out;
}

@keyframes floatEffect {
    0% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(10px, 15px) rotate(5deg); }
    50% { transform: translate(-10px, -15px) rotate(-5deg); }
    75% { transform: translate(5px, 10px) rotate(3deg); }
    100% { transform: translate(0, 0) rotate(0deg); }
}

.page-vip-program__title {
    font-size: 3.5em;
    color: #FFD700; /* Gold for main titles */
    margin-bottom: 20px;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.page-vip-program__subtitle {
    font-size: 1.4em;
    color: #B0B0B0;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-vip-program__cta-button {
    display: inline-block;
    background-color: #FFD700; /* Gold button */
    color: #0A1931; /* Dark text on gold button */
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 1.1em;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: none;
    cursor: pointer;
}

.page-vip-program__cta-button:hover {
    background-color: #e6c200;
    transform: translateY(-3px);
}

.page-vip-program__section {
    padding: 60px 0;
    text-align: center;
}

.page-vip-program__section-title {
    font-size: 2.5em;
    color: #FFD700; /* Gold for section titles */
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.page-vip-program__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #FFD700;
    border-radius: 2px;
}

.page-vip-program__description {
    font-size: 1.1em;
    color: #B0B0B0;
    max-width: 900px;
    margin: 0 auto 50px auto;
}

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

.page-vip-program__feature-card {
    background-color: #1A2F4B; /* Slightly lighter dark blue */
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-left: 5px solid #FFD700;
}

.page-vip-program__feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.page-vip-program__feature-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5));
}

.page-vip-program__card-title {
    font-size: 1.5em;
    color: #FFD700;
    margin-bottom: 15px;
}

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

.page-vip-program__level-card {
    background-color: #1A2F4B;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    text-align: center;
    border-bottom: 5px solid #FFD700;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.page-vip-program__level-card:hover {
    transform: scale(1.03);
    background-color: #243e62;
}

.page-vip-program__level-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.6));
}

.page-vip-program__level-title {
    font-size: 1.8em;
    color: #FFD700;
    margin-bottom: 15px;
}

.page-vip-program__level-benefits {
    list-style: none;
    padding: 0;
    margin: 0;
}

.page-vip-program__level-benefits li {
    color: #B0B0B0;
    margin-bottom: 10px;
    position: relative;
    padding-left: 25px;
}

.page-vip-program__level-benefits li::before {
    content: '✅';
    position: absolute;
    left: 0;
    color: #FFD700;
}

.page-vip-program__note {
    margin-top: 50px;
    font-size: 1.1em;
    color: #B0B0B0;
}

.page-vip-program__note a {
    color: #FFD700;
    text-decoration: none;
    font-weight: bold;
}

.page-vip-program__note a:hover {
    text-decoration: underline;
}

.page-vip-program__upgrade-details {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
    margin-top: 50px;
}

.page-vip-program__detail-item {
    background-color: #1A2F4B;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    flex: 1 1 45%; /* Allows two items per row on larger screens */
    max-width: 550px;
    text-align: left;
    border-right: 5px solid #FFD700;
}

.page-vip-program__detail-title {
    font-size: 1.8em;
    color: #FFD700;
    margin-bottom: 20px;
}

.page-vip-program__detail-image {
    width: 100%;
    height: auto;
    max-height: 250px;
    object-fit: cover;
    border-radius: 8px;
    margin-top: 25px;
    border: 1px solid #FFD700;
}

.page-vip-program__privilege-list {
    list-style: none;
    padding: 0;
    margin: 50px auto 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.page-vip-program__privilege-list li {
    background-color: #1A2F4B;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    text-align: left;
    border-top: 5px solid #FFD700;
    transition: transform 0.3s ease;
}

.page-vip-program__privilege-list li:hover {
    transform: translateY(-5px);
}

.page-vip-program__privilege-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 15px;
    filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.4));
}

.page-vip-program__privilege-list h4 {
    font-size: 1.4em;
    color: #FFD700;
    margin-bottom: 10px;
}

.page-vip-program__privilege-list p {
    color: #B0B0B0;
    font-size: 0.95em;
}

.page-vip-program__cta-section {
    background-color: #0A1931;
    padding: 80px 0;
    border-top: 2px solid #FFD700;
}

.page-vip-program__cta-buttons {
    margin-top: 40px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.page-vip-program__cta-button--primary {
    background-color: #FFD700;
    color: #0A1931;
}

.page-vip-program__cta-button--primary:hover {
    background-color: #e6c200;
}

.page-vip-program__cta-button--secondary {
    background-color: #1A2F4B;
    color: #FFD700;
    border: 1px solid #FFD700;
}

.page-vip-program__cta-button--secondary:hover {
    background-color: #243e62;
    border-color: #e6c200;
}

.page-vip-program__cta-button--tertiary {
    background-color: transparent;
    color: #FFD700;
    border: 1px solid #FFD700;
}

.page-vip-program__cta-button--tertiary:hover {
    background-color: rgba(255, 215, 0, 0.1);
    border-color: #e6c200;
}

.page-vip-program__disclaimer {
    margin-top: 50px;
    font-size: 0.9em;
    color: #777;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .page-vip-program__title {
        font-size: 2.8em;
    }
    .page-vip-program__section-title {
        font-size: 2em;
    }
    .page-vip-program__grid, .page-vip-program__levels-grid, .page-vip-program__privilege-list {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
    .page-vip-program__detail-item {
        flex: 1 1 100%;
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .page-vip-program__hero-section {
        padding: 80px 0;
    }
    .page-vip-program__title {
        font-size: 2.2em;
    }
    .page-vip-program__subtitle {
        font-size: 1.2em;
    }
    .page-vip-program__section-title {
        font-size: 1.8em;
    }
    .page-vip-program__description {
        font-size: 1em;
    }
    .page-vip-program__grid, .page-vip-program__levels-grid, .page-vip-program__privilege-list {
        grid-template-columns: 1fr;
    }
    .page-vip-program__feature-card, .page-vip-program__level-card, .page-vip-program__privilege-list li, .page-vip-program__detail-item {
        padding: 25px;
    }
    .page-vip-program__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    .page-vip-program__cta-button {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .page-vip-program__title {
        font-size: 1.8em;
    }
    .page-vip-program__subtitle {
        font-size: 1em;
    }
    .page-vip-program__section-title {
        font-size: 1.5em;
    }
    .page-vip-program__cta-button {
        padding: 12px 20px;
        font-size: 1em;
    }
    .page-vip-program__feature-icon, .page-vip-program__level-icon {
        width: 50px;
        height: 50px;
    }
}