﻿.button-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin: 120px auto;
    width: 320px;
}

.game-button {
    align-items: center;
    justify-content: center;
    width: 320px;
    padding: 15px 20px;
    font-size: 20px;
    font-weight: normal;
    color: white;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease-in-out;
    position: relative;
    overflow: hidden;
    text-align: center;
    font-family: 'SolaimanLipi', Arial, Helvetica, sans-serif;
}

    .game-button:hover {
        transform: scale(1.05);
        box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.4);
    }

    .game-button:disabled {
        cursor: not-allowed;
        box-shadow: none;
    }

    .game-button.black {
        background-color: #231F20;
        color: white;
        cursor: not-allowed;
    }

        .game-button.black:hover {
            background-color: #000 !important;
            color: white;
        }

    .game-button.orange {
        background-color: #ff5200;
        color: white;
    }

        .game-button.orange:hover {
            background-color: #fd6900 !important;
            color: white;
        }

    .game-button.completed {
        background: linear-gradient(45deg, #1f871f, #27ae60);
        color: white;
        cursor: not-allowed;
    }

.coin-icon {
    width: 18px;
    height: 18px;
    margin-top: -4px;
}

.button-container p {
    text-align: center;
    font-size: 14px;
    color: #cbcbcb;
    font-family: 'SolaimanLipi', Arial, Helvetica, sans-serif;
}

@keyframes glowing {
    0% {
        box-shadow: 0 0 10px rgba(255, 215, 0, 0.6), 0 0 20px rgba(255, 165, 0, 0.6), 0 0 30px rgba(255, 140, 0, 0.6);
    }

    50% {
        box-shadow: 0 0 20px rgba(255, 215, 0, 0.9), 0 0 30px rgba(255, 165, 0, 0.9), 0 0 40px rgba(255, 140, 0, 0.9);
    }

    100% {
        box-shadow: 0 0 10px rgba(255, 215, 0, 0.6), 0 0 20px rgba(255, 165, 0, 0.6), 0 0 30px rgba(255, 140, 0, 6);
    }
}

.score-container {
    margin: 0 auto;
    font-size: 24px;
    color: #fff;
    background: radial-gradient(circle, #ffcc00, #ff8800);
    padding: 10px 15px;
    border-radius: 50px;
    text-align: center;
    width: 180px;
    text-shadow: 2px 2px 5px rgba(255, 255, 255, 0.8);
    animation: glowing 2s infinite alternate;
    transition: all 0.3s ease-in-out;
}

    .score-container:hover {
        transform: scale(1.1);
    }

#score {
    font-size: 25px;
    font-weight: bold;
    text-shadow: 0px 1px 2px #000000;
}
/*====================================*/
.quiz-container {
    max-width: 400px;
    background: radial-gradient(circle, #9E1638, #D12053);
    padding: 20px 15px;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
    margin: 130px auto 0;
}

.timer {
    font-size: 24px;
    background: #000;
    padding: 15px;
    border-radius: 50%;
    width: 70px;
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
    font-weight: bold;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.prize {
    font-size: 22px;
    font-weight: bold;
    margin: 15px 0;
    text-align: center;
}

.question {
    font-size: 17px;
    font-weight: normal;
    margin: 10px 0;
    padding: 5px 10px;
    background: linear-gradient(90deg, #D12053, #E2136E);
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.options button {
    display: block;
    width: 100%;
    margin: 12px 0;
    padding: 8px 15px;
    font-size: 18px;
    background: linear-gradient(145deg, #E2136E, #D12053);
    color: white;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
    font-weight: normal;
    transition: all 0.3sease;
}

    .options button:hover {
        background: linear-gradient(145deg, #D12053, #E2136E);
        transform: scale(1.08);
    }

.lifelines {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

    .lifelines button {
        background: linear-gradient(145deg, #ffdd44, #ffcc00);
        border: none;
        padding: 10px 20px;
        cursor: pointer;
        border-radius: 25px;
        font-size: 16px;
        font-weight: bold;
        transition: all 0.3s ease;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
    }

        .lifelines button:hover {
            background: linear-gradient(145deg, #e6b800, #ffcc00);
            transform: scale(1.1);
        }

.card-header {
    color: white;
    padding: 20px;
    text-align: center;
    border-radius: 8px 8px 0 0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-top: 120px;
    font-family: SolaimanLipi, Arial, Helvetica, sans-serif;
}

.card-title {
    font-size: 20px;
    font-weight: normal;
    margin: 0;
    font-family: SolaimanLipi, Arial, Helvetica, sans-serif;
}

.table-view-box {
    margin: 20px;
    font-family: SolaimanLipi, Arial, Helvetica, sans-serif;
}

.table-responsive {
    overflow-x: auto;
}

.custom-table {
    width: 100%;
    border-collapse: collapse;
    background: linear-gradient(135deg, #D12053, #E2136E);
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);
}

    .custom-table th, .custom-table td {
        padding: 6px 10px;
        text-align: center;
        font-size: 14px;
        font-weight: normal;
        font-family: SolaimanLipi, Arial, Helvetica, sans-serif;
    }

    .custom-table th {
        background: linear-gradient(135deg, #D12053, #E2136E);
        color: white;
        text-transform: uppercase;
        border-bottom: none;
    }

    .custom-table tr:nth-child(even) {
        background: linear-gradient(135deg, #D12053, #E2136E);
        color: #fff;
    }

    .custom-table tr:hover {
        background-color: #D12053;
        color: #fff;
    }

.sticky-header {
    position: sticky;
    top: 0;
    z-index: 10;
}

.td-center {
    text-align: center;
}

.custom-table td {
    color: #fff;
}
@media (max-width: 767px) {
    .score-container {
        margin-top: -35px;
        margin-bottom: 10px;
    }

    .game-button {
        padding: 8px 15px;
        font-size: 15px;
    }

    .quiz-container {
        margin: 75px 10px 5px;
    }
}
