/* Membership Fees Page Specific Styles - Premium Redesign */

:root {
    --fee-slate: #37474f;
    --fee-gold: #c5a059;
    --fee-surface: #fcfcfc;
    --card-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
}

.section-padding {
    padding: 50px 0;
}

/* Inner Banner */
.inner-banner {
    height: 240px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: var(--white);
    position: relative;
    overflow: hidden;

    background-size: cover;
    background-position: center 12%;
    background-repeat: no-repeat;}

.inner-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(55, 71, 79, 0.45), rgba(55, 71, 79, 0.9)), url('../images/tournaments_banner.png');
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.banner-title {
    font-family: var(--font-heading);
    font-size: 56px;
    font-weight: 800;
    text-transform: uppercase;
    position: relative;
    z-index: 2;
}

/* Fee Table */
.fee-table-container {
    background: var(--white);
    border-radius: 30px;
    box-shadow: var(--card-shadow);
    overflow: hidden;
    border: 1px solid #eee;
}

.fee-table {
    width: 100%;
    border-collapse: collapse;
}

.fee-table th {
    background: var(--fee-slate);
    color: var(--white);
    padding: 25px;
    text-align: left;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.fee-table td {
    padding: 20px 25px;
    border-bottom: 1px solid #f0f0f0;
    font-size: 16px;
}

.fee-table tr:last-child td { border-bottom: none; }

.fee-table tr:hover {
    background: #fafafa;
}

.amount-tag {
    font-weight: 700;
    color: var(--fee-slate);
    background: #eceff1;
    padding: 5px 15px;
    border-radius: 8px;
}

/* Payment Box */
.payment-box {
    background: #eceff1;
    padding: 40px;
    border-radius: 30px;
    display: flex;
    gap: 40px;
    align-items: center;
}

.qr-placeholder {
    width: 150px;
    height: 150px;
    background: var(--white);
    padding: 10px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.bank-details {
    flex: 1;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px dashed #cfd8dc;
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.benefit-item {
    display: flex;
    gap: 20px;
    background: var(--white);
    padding: 25px;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.03);
}

.benefit-item i {
    font-size: 24px;
    color: var(--fee-gold);
}

/* Responsive */
@media (max-width: 992px) {
    .benefits-grid { grid-template-columns: 1fr; }
    .payment-box { flex-direction: column; text-align: center; }
}

@media (max-width: 600px) {
    .banner-title { font-size: 38px; }
    .fee-table th, .fee-table td { padding: 15px; font-size: 14px; }
}
