/* Hindi text spacing fix */
body {
    font-family: 'Noto Sans Devanagari', Mangal, Kokila, sans-serif;
}
.title.hindi {
    letter-spacing: normal !important;
    text-transform: none !important;
}
.hindi-title,
.sub-title,
.help__content p,
.help__content h3 {
    letter-spacing: normal !important;
    word-spacing: normal !important;
    font-kerning: normal;
    text-rendering: optimizeLegibility;
    text-transform: none !important;
}
/* ==============================
   Simple Members Table (55 Records)
================================ */

.simple-members-wrap {
    margin-top: 60px;
}

.simple-members-title {
    text-align: center;
    font-size: 22px;
    margin-bottom: 18px;
    color: #333;
    font-weight: 700;
}

.simple-members-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
}

    .simple-members-table th,
    .simple-members-table td {
        border: 1px solid #ddd;
        padding: 10px 12px;
        text-align: center;
        font-size: 15px;
    }

    .simple-members-table th {
        background: #f5f5f5;
        font-weight: 700;
    }

    .simple-members-table tr:nth-child(even) {
        background: #fafafa;
    }

    /* Hover – very subtle */
    .simple-members-table tbody tr:hover {
        background: #f0f7ff;
    }

/* Mobile friendly */
@media (max-width: 768px) {
    .simple-members-table th,
    .simple-members-table td {
        font-size: 14px;
        padding: 8px;
    }
}
/*preloader logo icon*/

.preloader-logo {
    width: 150px;
    height: auto;
    margin-bottom: 10px;
    display: inline-block;
    
}
.preloader {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
}

.preloader-logo {
    width: 150px;
    animation: flipOnce 2.8s ease-in-out forwards;
    transform-style: preserve-3d;
    backface-visibility: hidden;
}

@keyframes flipOnce {
    0% {
        transform: rotateY(0deg);
        opacity: 0;
    }

    20% {
        opacity: 1;
    }

    50% {
        transform: rotateY(180deg);
    }

    100% {
        transform: rotateY(360deg);
    }
}
.preloader {
    animation: hideLoader 3s ease forwards;
}

@keyframes hideLoader {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        visibility: hidden;
    }
}
.footer-grey-box {
    background: #EBEBEB;
    border-radius: 12px;
    color: #000;
    padding: 40px 30px;
    text-align: center;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
/* TAP TO ENABLE OVERLAY */
#tapSoundOverlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.75);
    color: #fff;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000000;
    animation: pulse 1.2s infinite;
    cursor: pointer;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.08);
        opacity: 0.85;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* FIXED AUDIO BAR */
#fixedAudioPlayer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 52px;
    background: linear-gradient(90deg, #ff9800, #ff5722);
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 10px;
    z-index: 999999;
    box-shadow: 0 -4px 10px rgba(0,0,0,0.4);
}

    #fixedAudioPlayer button {
        background: #000;
        color: #fff;
        border: none;
        border-radius: 4px;
        padding: 6px 12px;
        font-size: 18px;
    }

.faText {
    color: #fff;
    font-size: 14px;
}

@media (max-width: 600px) {
    .faText {
        display: none;
    }
}

body {
    padding-bottom: 65px;
}


