/* style/vip-club-membership-tiers.css */
.page-vip-club-membership-tiers {
    font-family: 'Arial', sans-serif;
    color: #f0f0f0; /* Default text color for dark background */
    background-color: #0A2342; /* Main background color */
    line-height: 1.6;
}

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

.page-vip-club-membership-tiers__hero {
    position: relative;
    background: linear-gradient(135deg, #0A2342 0%, #1a3a60 100%); /* Dark blue gradient */
    padding: 100px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    min-height: 450px;
}

.page-vip-club-membership-tiers__hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    color: #f0f0f0;
}

.page-vip-club-membership-tiers__title {
    font-size: 3.5em;
    color: #FFD700; /* Gold accent for title */
    margin-bottom: 20px;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
}

.page-vip-club-membership-tiers__subtitle {
    font-size: 1.4em;
    color: #cccccc;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

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

.page-vip-club-membership-tiers__button--primary {
    background-color: #FFD700; /* Gold for primary action */
    color: #0A2342;
    border: 2px solid #FFD700;
}

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

.page-vip-club-membership-tiers__button--secondary {
    background-color: transparent;
    color: #FFD700;
    border: 2px solid #FFD700;
}

.page-vip-club-membership-tiers__button--secondary:hover {
    background-color: rgba(255, 215, 0, 0.1);
    transform: translateY(-3px);
}

.page-vip-club-membership-tiers__section-title {
    font-size: 2.8em;
    color: #FFD700;
    text-align: center;
    margin-bottom: 50px;
    padding-top: 60px;
    font-weight: bold;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.page-vip-club-membership-tiers__text {
    font-size: 1.1em;
    color: #e0e0e0;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 30px auto;
}

.page-vip-club-membership-tiers__text--note {
    font-style: italic;
    color: #aaa;
}

.page-vip-club-membership-tiers__introduction,
.page-vip-club-membership-tiers__upgrade-conditions,
.page-vip-club-membership-tiers__benefits,
.page-vip-club-membership-tiers__faq,
.page-vip-club-membership-tiers__cta {
    padding: 60px 0;
    background-color: #0A2342;
}

.page-vip-club-membership-tiers__tiers-overview {
    background-color: #1a3a60;
    padding: 80px 0;
}

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

.page-vip-club-membership-tiers__tier-card {
    background-color: #0A2342;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.page-vip-club-membership-tiers__tier-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.5);
}

.page-vip-club-membership-tiers__tier-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 5px #FFD700);
}

.page-vip-club-membership-tiers__tier-name {
    font-size: 1.8em;
    color: #FFD700;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-vip-club-membership-tiers__tier-description {
    font-size: 1em;
    color: #c0c0c0;
}

.page-vip-club-membership-tiers__list {
    list-style: none;
    padding: 0;
    max-width: 800px;
    margin: 40px auto;
}

.page-vip-club-membership-tiers__list-item {
    background-color: #1a3a60;
    margin-bottom: 15px;
    padding: 20px 30px;
    border-radius: 10px;
    font-size: 1.1em;
    color: #f0f0f0;
    border-left: 5px solid #FFD700;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-vip-club-membership-tiers__list-item strong {
    color: #FFD700;
}

.page-vip-club-membership-tiers__inline-link {
    color: #FFD700;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.page-vip-club-membership-tiers__inline-link:hover {
    color: #e6c200;
    text-decoration: underline;
}

.page-vip-club-membership-tiers__image--full-width {
    width: 100%;
    max-width: 1000px;
    height: auto;
    display: block;
    margin: 50px auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

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

.page-vip-club-membership-tiers__benefit-item {
    background-color: #1a3a60;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, background-color 0.3s ease;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.page-vip-club-membership-tiers__benefit-item:hover {
    transform: translateY(-10px);
    background-color: #2b4f7a;
}

.page-vip-club-membership-tiers__benefit-icon {
    display: block;
    width: 60px;
    height: 60px;
    margin: 0 auto 20px auto;
    background-color: #FFD700;
    border-radius: 50%;
    mask-size: 70%;
    mask-repeat: no-repeat;
    mask-position: center;
    -webkit-mask-size: 70%;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
}

/* Icon masks - using generic placeholders, ideally SVG icons would be used */
.page-vip-club-membership-tiers__benefit-icon--bonus { -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="white"><path d="M12 2L6 5.5V11.5C6 16.75 9.81 21.13 12 22C14.19 21.13 18 16.75 18 11.5V5.5L12 2ZM12 10.5L10 8.5L9 9.5L12 12.5L15 9.5L14 8.5L12 10.5Z"/></svg>'); mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="white"><path d="M12 2L6 5.5V11.5C6 16.75 9.81 21.13 12 22C14.19 21.13 18 16.75 18 11.5V5.5L12 2ZM12 10.5L10 8.5L9 9.5L12 12.5L15 9.5L14 8.5L12 10.5Z"/></svg>'); }
.page-vip-club-membership-tiers__benefit-icon--withdrawal { -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="white"><path d="M20 4H4C2.895 4 2 4.895 2 6V18C2 19.105 2.895 20 4 20H20C21.105 20 22 19.105 22 18V6C22 4.895 21.105 4 20 4ZM4 6H20V18H4V6ZM6 10H10V14H6V10ZM12 10H18V14H12V10Z"/></svg>'); mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="white"><path d="M20 4H4C2.895 4 2 4.895 2 6V18C2 19.105 2.895 20 4 20H20C21.105 20 22 19.105 22 18V6C22 4.895 21.105 4 20 4ZM4 6H20V18H4V6ZM6 10H10V14H6V10ZM12 10H18V14H12V10Z"/></svg>'); }
.page-vip-club-membership-tiers__benefit-icon--manager { -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="white"><path d="M12 12C14.21 12 16 10.21 16 8C16 5.79 14.21 4 12 4C9.79 4 8 5.79 8 8C8 10.21 9.79 12 12 12ZM12 14C9.33 14 4 15.34 4 18V20H20V18C20 15.34 14.67 14 12 14Z"/></svg>'); mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="white"><path d="M12 12C14.21 12 16 10.21 16 8C16 5.79 14.21 4 12 4C9.79 4 8 5.79 8 8C8 10.21 9.79 12 12 12ZM12 14C9.33 14 4 15.34 4 18V20H20V18C20 15.34 14.67 14 12 14Z"/></svg>'); }
.page-vip-club-membership-tiers__benefit-icon--birthday { -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="white"><path d="M12 2C6.48 2 2 6.48 2 12C2 17.52 6.48 22 12 22C17.52 22 22 17.52 22 12C22 6.48 17.52 2 12 2ZM12 20C7.59 20 4 16.41 4 12C4 7.59 7.59 4 12 4C16.41 4 20 7.59 20 12C20 16.41 16.41 20 12 20ZM11 11H13V15H11V11ZM11 7H13V9H11V7Z"/></svg>'); mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="white"><path d="M12 2C6.48 2 2 6.48 2 12C2 17.52 6.48 22 12 22C17.52 22 22 17.52 22 12C22 6.48 17.52 2 12 2ZM12 20C7.59 20 4 16.41 4 12C4 7.59 7.59 4 12 4C16.41 4 20 7.59 20 12C20 16.41 16.41 20 12 20ZM11 11H13V15H11V11ZM11 7H13V9H11V7Z"/></svg>'); }
.page-vip-club-membership-tiers__benefit-icon--event { -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="white"><path d="M19 3H5C3.89 3 3 3.9 3 5V19C3 20.1 3.89 21 5 21H19C20.1 21 21 20.1 21 19V5C21 3.9 20.1 3 19 3ZM19 19H5V8H19V19ZM17 9H7V7H17V9Z"/></svg>'); mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="white"><path d="M19 3H5C3.89 3 3 3.9 3 5V19C3 20.1 3.89 21 5 21H19C20.1 21 21 20.1 21 19V5C21 3.9 20.1 3 19 3ZM19 19H5V8H19V19ZM17 9H7V7H17V9Z"/></svg>'); }
.page-vip-club-membership-tiers__benefit-icon--support { -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="white"><path d="M20 2H4C2.9 2 2 2.9 2 4V16C2 17.1 2.9 18 4 18H8L12 22L16 18H20C21.1 18 22 17.1 22 16V4C22 2.9 21.1 2 20 2ZM11 15H9V13H11V15ZM11 11H9V7H11V11ZM15 15H13V13H15V15ZM15 11H13V7H15V11Z"/></svg>'); mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="white"><path d="M20 2H4C2.9 2 2 2.9 2 4V16C2 17.1 2.9 18 4 18H8L12 22L16 18H20C21.1 18 22 17.1 22 16V4C22 2.9 21.1 2 20 2ZM11 15H9V13H11V15ZM11 11H9V7H11V11ZM15 15H13V13H15V15ZM15 11H13V7H15V11Z"/></svg>'); }

.page-vip-club-membership-tiers__benefit-title {
    font-size: 1.4em;
    color: #FFD700;
    margin-bottom: 10px;
    font-weight: bold;
}

.page-vip-club-membership-tiers__benefit-description {
    font-size: 0.95em;
    color: #c0c0c0;
}

.page-vip-club-membership-tiers__accordion {
    max-width: 900px;
    margin: 50px auto;
}

.page-vip-club-membership-tiers__accordion-item {
    margin-bottom: 15px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-vip-club-membership-tiers__accordion-header {
    background-color: #1a3a60;
    color: #FFD700;
    padding: 20px 25px;
    width: 100%;
    text-align: left;
    border: none;
    outline: none;
    cursor: pointer;
    font-size: 1.2em;
    font-weight: bold;
    transition: background-color 0.3s ease;
    position: relative;
}

.page-vip-club-membership-tiers__accordion-header::after {
    content: '+';
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5em;
    line-height: 1;
    transition: transform 0.3s ease;
}

.page-vip-membership-tiers__accordion-header.active::after {
    content: '-';
    transform: translateY(-50%) rotate(180deg);
}

.page-vip-club-membership-tiers__accordion-header:hover {
    background-color: #2b4f7a;
}

.page-vip-club-membership-tiers__accordion-content {
    background-color: #0A2342;
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}

.page-vip-club-membership-tiers__accordion-content.active {
    max-height: 200px; /* Adjust as needed */
    padding: 20px 25px;
}

.page-vip-club-membership-tiers__accordion-content p {
    color: #e0e0e0;
    font-size: 1em;
    margin: 0;
}

.page-vip-club-membership-tiers__cta {
    background-color: #1a3a60;
    position: relative;
    overflow: hidden;
    text-align: center;
    padding: 80px 0;
}

.page-vip-club-membership-tiers__cta-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.15;
    z-index: 1;
}

.page-vip-club-membership-tiers__cta .page-vip-club-membership-tiers__container {
    position: relative;
    z-index: 2;
}

.page-vip-club-membership-tiers__cta-buttons {
    margin-top: 40px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-vip-club-membership-tiers__title {
        font-size: 3em;
    }
    .page-vip-club-membership-tiers__section-title {
        font-size: 2.2em;
    }
    .page-vip-club-membership-tiers__grid,
    .page-vip-club-membership-tiers__benefits-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .page-vip-club-membership-tiers__hero {
        padding: 80px 0;
    }
    .page-vip-club-membership-tiers__title {
        font-size: 2.5em;
    }
    .page-vip-club-membership-tiers__subtitle {
        font-size: 1.2em;
    }
    .page-vip-club-membership-tiers__button {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-vip-club-membership-tiers__section-title {
        font-size: 2em;
        margin-bottom: 40px;
        padding-top: 40px;
    }
    .page-vip-club-membership-tiers__text {
        font-size: 1em;
    }
    .page-vip-club-membership-tiers__grid,
    .page-vip-club-membership-tiers__benefits-grid {
        grid-template-columns: 1fr;
    }
    .page-vip-club-membership-tiers__tier-card,
    .page-vip-club-membership-tiers__benefit-item {
        padding: 25px;
    }
    .page-vip-club-membership-tiers__accordion-header {
        font-size: 1.1em;
        padding: 18px 20px;
    }
    .page-vip-club-membership-tiers__accordion-header::after {
        right: 20px;
    }
    .page-vip-club-membership-tiers__accordion-content.active {
        padding: 15px 20px;
    }
}

@media (max-width: 480px) {
    .page-vip-club-membership-tiers__hero {
        padding: 60px 0;
    }
    .page-vip-club-membership-tiers__title {
        font-size: 2em;
    }
    .page-vip-club-membership-tiers__subtitle {
        font-size: 1em;
    }
    .page-vip-club-membership-tiers__button {
        padding: 10px 20px;
        font-size: 0.9em;
        margin: 5px;
    }
    .page-vip-club-membership-tiers__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
        padding-top: 30px;
    }
    .page-vip-club-membership-tiers__list-item {
        font-size: 0.95em;
        padding: 15px 20px;
    }
    .page-vip-club-membership-tiers__benefit-title {
        font-size: 1.2em;
    }
    .page-vip-club-membership-tiers__accordion-header {
        font-size: 1em;
        padding: 15px 18px;
    }
    .page-vip-club-membership-tiers__accordion-header::after {
        right: 15px;
    }
}