/* VIP Section Styles */
.vip-sec {
    margin: 20px 0;
}

.vip-container {
    background: #000000a3;
    border-radius: 20px;
    padding: 20px;
    margin: 0 auto;
    max-width: 95%;
}

.vip-header {
    text-align: center;
    margin-bottom: 20px;
    padding: 15px 0;
}

.vip-header h2 {
    color: #f8e9ae;
    font-weight: bold;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.vip-tiers-grid {
    display: grid;
    grid-template-columns: repeat(9, 1fr);
    gap: 10px;
    align-items: center;
}
.vip-tiers-grid2{
    gap: 10px;
    align-items: center;
    display: grid;
    grid-template-columns: repeat(8, 1fr);
}
.vip-tier-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 10px 5px;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.vip-tier-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
}

.vip-tier-item img {
    max-width: 120px;
    /* height: 50px; */
    object-fit: contain;
}

.tier-label {
    color: #fff;
    font-size: 11px;
    font-weight: bold;
    margin-bottom: 4px;
    text-transform: uppercase;
}

.tier-amount {
    color: #f8e9ae;
    font-size: 13px;
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .vip-tiers-grid {
        grid-template-columns: repeat(8, 1fr);
        gap: 8px;
    }
    
    .vip-tier-item img {
        width: 45px;
        height: 45px;
    }
    
    .tier-label {
        font-size: 10px;
    }
    
    .tier-amount {
        font-size: 9px;
    }
}

@media (max-width: 999px) {
    .vip-tiers-grid {
        grid-template-columns: repeat(6, 1fr);
        gap: 8px;
    }
    
    .vip-container {
        padding: 15px;
    }
    
    .vip-header h2 {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .vip-tiers-grid,.vip-tiers-grid2 {
        grid-template-columns: repeat(4, 1fr);
        gap: 6px;
    }
    
    .vip-tier-item {
        padding: 8px 3px;
    }
    
    .vip-tier-item img {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 680px) {
    .vip-tiers-grid,.vip-tiers-grid2 {
        grid-template-columns: repeat(3, 1fr);
        gap: 5px;
    }
    
    .vip-container {
        padding: 10px;
        max-width: 100%;
    }
    
    .vip-header {
        padding: 10px 0;
    }
    
    .vip-header h2 {
        font-size: 14px;
    }
}

@media (max-width: 375px) {
    .vip-tiers-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 4px;
    }
    
    .vip-tier-item {
        padding: 6px 2px;
    }
    
    .vip-tier-item img {
        width: 35px;
        height: 35px;
    }
    
    .tier-label {
        font-size: 9px;
    }
    
    .tier-amount {
        font-size: 8px;
    }
}

/* VIP Table Section */
.vip-table-section {
    margin-top: 30px;
    background: #000000a3;
    border-radius: 15px;
    padding: 30px 40px;
}

.membership-section {
}

.section-title {
    color: #fff;
    font-size: 16px;
    text-align: left;
    padding: 10px 0;
    margin: 0;
}

.table-container {
    overflow-x: auto;
}

.membership-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 11px;
    color: #fff;
    border: 1px solid #4df025;
}

.membership-table thead {
}

.membership-table th {
    padding: 8px 4px;
    text-align: center;
    font-size: 10px;
    border-top: 1px solid #4df025;
    border-bottom: 1px solid #4df025;
    color: #fff;
    line-height: 1.3;
    font-weight: bolder;
    vertical-align: bottom;
}

.membership-table td {
    padding: 5px;
    text-align: center;
    border-top: 1px solid #4df025;
    border-bottom: 1px solid #4df025;
    font-size: 12px;
    line-height: 1.4;
}

.membership-table tbody tr {
}

.membership-table tbody tr:nth-child(even) {
}

.membership-table tbody tr:hover {
    background: rgba(45, 90, 61, 0.4);
}

/* Color coding for different columns */
.membership-table .col-upgrade,
.membership-table .upgrade {
    color: #12a0f4;
}

.membership-table .col-birthday,
.membership-table .birthday {
    color: #4df025;
}

.membership-table .col-rebate,
.membership-table .rebate {
    color: #f802df;
}

.membership-table .col-monthly,
.membership-table .monthly {
    color: #fc0500;
}

.membership-table .tier-name {
    color: #fff;
}

.membership-table .required {
    color: #ffffff;
}

/* Terms & Conditions Section */
.terms-section {
    margin-top: 20px;
    padding: 0;
}

.terms-header {
    color: #ffffff;
    font-size: 12px;
    margin-bottom: 5px;
}

.terms-list {
    color: #fff;
    font-size: 11px;
    line-height: 1.6;
}

.terms-list p {
    margin-bottom: 5px;
    padding-left: 0;
}

/* Responsive Design for Table */
@media (max-width: 999px) {
    .vip-table-section {
        margin-top: 30px;
        padding: 15px;
    }
    
    .vip-table {
        font-size: 11px;
    }
    
    .vip-table th,
    .vip-table td {
        padding: 8px 6px;
        font-size: 10px;
    }
    
    .vip-tnc-content {
        font-size: 11px;
    }
}

@media (max-width: 768px) {
    .vip-table-section {
        margin-top: 20px;
        padding: 12px;
    }
    
    .vip-table {
        font-size: 10px;
    }
    
    .vip-table th,
    .vip-table td {
        padding: 6px 4px;
        font-size: 9px;
    }
    
    .vip-table-title h4 {
        font-size: 16px;
    }
    
    .vip-tnc-section {
        margin-top: 20px;
        padding: 15px;
    }
    
    .vip-tnc-content {
        font-size: 10px;
    }
}

@media (max-width: 680px) {
    .vip-table-container {
        overflow-x: scroll;
        -webkit-overflow-scrolling: touch;
    }
    
    .vip-table {
        min-width: 600px;
        font-size: 9px;
    }
    
    .vip-table th,
    .vip-table td {
        padding: 5px 3px;
        font-size: 8px;
        white-space: nowrap;
    }
}

@media (max-width: 375px) {
    .vip-table-section {
        margin-top: 15px;
        padding: 8px;
    }
    
    .vip-table {
        min-width: 550px;
    }
    
    .vip-table-title h4 {
        font-size: 14px;
    }
    
    .vip-tnc-section {
        margin-top: 15px;
        padding: 10px;
    }
    
    .vip-tnc-content {
        font-size: 9px;
    }
}