
body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    background: #f4f6f9;
}

/* ===== HEADER ===== */
.header-section {
    background: linear-gradient(45deg, #560cff, #000000);
    padding: 20px 0;
    border-bottom: 4px solid #ff0080;
}

.title-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 7px;
    flex-wrap: wrap;
}

.title-text {
    font-size: 42px;
    font-weight: 700;
    color: #ffffff;
    text-shadow: 2px 2px 0px #000;
}

.header-card {
    width: 70px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

/* Responsive */
@media(max-width:576px) {
    .title-text {
        font-size: 33px;
    }

    .header-card {
        width: 45px;
    }
}

/* ===== GAME CARDS ===== */
.game-card {
    border-radius: 15px;
    transition: 0.3s;
    cursor: pointer;
}

    .game-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    }

.number-box {
    background: rgba(255,255,255,0.2);
    border-radius: 10px;
    padding: 8px;
    margin-top: 8px;
}

.number-title {
    font-size: 12px;
    font-weight: 600;
}

.number-value {
    font-size: 18px;
    font-weight: 700;
}



/* ===== CENTER SECTION ===== */

.custom-btn {
    background: linear-gradient(to bottom, #caa4dd, #8dd8ea);
    color: #fff;
    font-weight: 600;
    padding: 10px 40px;
    border-radius: 25px;
    border: none;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
    transition: 0.3s;
}

    .custom-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 6px 12px rgba(0,0,0,0.4);
    }

.center-chart-img {
    width: 180px;
    max-width: 100%;
}


/* box color */
.gradient-1 {
    background: linear-gradient(45deg, #ff9a9e, #fad0c4);
}

.gradient-2 {
    background: linear-gradient(45deg, #a18cd1, #fbc2eb);
}

.gradient-3 {
    background: linear-gradient(45deg, #f6d365, #fda085);
}

.gradient-4 {
    background: linear-gradient(45deg, #84fab0, #8fd3f4);
}

.game-card {
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transition: 0.3s;
}

    .game-card:hover {
        transform: translateY(-5px);
    }

.number-box {
    margin-top: 10px;
    padding: 10px;
    background: #fff;
    border-radius: 10px;
}

/* box color */


/*3 box */
/* ===== RESULT WRAPPER ===== */
.result-wrapper {
    display: flex;
    justify-content: center;
    margin: 25px 0;
}

/* ===== RESULT BOX ===== */
.result-box {
    width: 95%;
    max-width: 420px;
    padding: 20px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(15px);
    border: 2px solid transparent;
    background-clip: padding-box;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    transition: 0.3s;
}

    /* Gradient Border */
    .result-box::before {
        content: "";
        position: absolute;
        inset: -2px;
        border-radius: 22px;
        background: linear-gradient(45deg, #040404, #000000);
        z-index: -1;
    }

    .result-box:hover {
        transform: translateY(-5px);
    }

/* ===== GAME NAME ===== */
.result-header {
    text-align: center;
    font-size: 28px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 1px;
    margin-bottom: 0px;
    text-transform: uppercase;
}

/* ===== RESULT NUMBER ===== */
.result-body {
    text-align: center;
    font-size: 28px;
    font-weight: 800;
    color: #ffcc00;
    text-shadow: 0 0 15px rgba(255,204,0,0.9);
    letter-spacing: 5px;
}
/*3 box end*/

/* table */
/* ===== CARD STYLE ===== */
.custom-table-card {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    border: none;
}

/* ===== TABLE HEADER ===== */
.custom-table thead {
    background: linear-gradient(45deg, #ff512f, #dd2476);
}

    .custom-table thead th {
        color: #000;
        font-weight: 600;
        padding: 15px;
        font-size: 16px;
        border: none;
    }

/* ===== TABLE BODY ===== */
.custom-table tbody tr {
    transition: 0.3s;
}

    .custom-table tbody tr:hover {
        background: #f8f9fa;
        transform: scale(1.01);
    }

.custom-table td {
    padding: 15px;
    vertical-align: middle;
    font-size: 16px;
    border-top: 1px solid #eee;
    font-family: math;
}

/* ===== GAME NAME ===== */
.game-name {
    font-weight: 600;
    color: #333;
}

/* ===== RESULT STYLE ===== */
.result-number {
    font-weight: 700;
    font-size: 22px;
    color: #ff2a00;
    letter-spacing: 2px;
}
/* table end*/