
        body {
            margin: 0;
            font-family: Arial, Helvetica, sans-serif;
        }
        .mainContainer{
            width: 100%;
            height: auto;
           display: flex;
           justify-content: center;
           align-items: center;
           background: black;
        }

        .mainContainer1{
           width: 425px;
           height: auto;
           background: white;
        }
        .header {
            width: 100%;
            padding: 16px 0;
            text-align: center;
            background: linear-gradient(270deg, #ff512f, #dd2476, #1e90ff, #ff512f);
            background-size: 800% 800%;
            animation: gradientMove 10s ease infinite;
            box-shadow: 0 4px 10px rgba(255, 255, 255, 0.5);
        }

        .header h1 {
            color: white;
            font-size: 14px;
            letter-spacing: 0px;
            font-weight: 600;
            margin: 0;
            text-transform: uppercase;
        }

        .header p {
            color: #fff;
            font-size: 18px;
            margin-top: 10px;
            opacity: 0.9;
        }

        @keyframes gradientMove {
            0% {
                background-position: 0% 50%;
            }

            50% {
                background-position: 100% 50%;
            }

            100% {
                background-position: 0% 50%;
            }
        }

        .carousel-item img {
            height: 22vh;
        }

        .download-btn {
            background: linear-gradient(45deg, #ff512f, #dd2476);
            color: white;
            border: none;
            padding: 15px 30px;
            font-size: 16px;
            font-weight: bold;
            border-radius: 50px;
            cursor: pointer;
            letter-spacing: 0px;
            box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
            transition: 0.3s;
        }

        .download-btn:hover {
            transform: scale(1.08);
            box-shadow: 0 12px 28px rgba(0, 0, 0, 0.55);
            background: linear-gradient(45deg, #232526, #414345);
        }

        .header-heading {
            padding: 30px;
            text-align: center;
            color: black;
            font-size: 32px;
            font-weight: 500;
            margin: 18px;
            line-height: 34px;
        }

        .timer-box {
            width: 100%;
            height: auto;
            border-radius: 10px;
            color: white;
            text-align: center;
            font-weight: 500;
            box-shadow: 0 3px 8px rgba(0, 0, 0, 0.3);
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 8px;
            font-size: 16px;
        }

        .result-box {
            width: 100%;
            height: auto;
            border-radius: 10px;
            color: white;
            text-align: center;
            margin-top: 8px;
            font-weight: 500;
            box-shadow: 0 3px 8px rgba(0, 0, 0, 0.3);
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            padding: 7px 0px;
            margin-bottom: 30px;
        }

        .header-heading2 {
            margin: 18px 18px 41px;
        }

        .header-headbg {
            background: linear-gradient(180deg, #4cd1a1, #3f8fd6);
        }

        .header-headbg2 {
            background: linear-gradient(180deg, #8bdc00, #6dd5ed, #8bdc00);
        }

        .box-1 {
            background: linear-gradient(180deg, #ff4b7d, #c4004b);
        }

        .box2 {
            background: linear-gradient(180deg, #ffb347, #ff7e00);
        }

        .box3 {
            background: linear-gradient(180deg, #5cc6ff, #0072ff);
        }

        .box4 {
            background: linear-gradient(180deg, #ff77d6, #b4009e);
        }

        .box5 {
            background: linear-gradient(180deg, #a855f7, #6b21a8);
        }

        .box6 {
            background: linear-gradient(180deg, #b4d000, #4d7c0f);
        }

        .box7 {
            background: linear-gradient(180deg, #ff9a8b, #ff3d00);
        }

        .box8 {
            background: linear-gradient(180deg, #b59f3b, #7c6f00);
        }

        .box9 {
            background: linear-gradient(180deg, #b76e79, #6a1b2e);
        }

        .box10 {
            background: linear-gradient(180deg, #9fa8da, #3949ab);
        }

        .box11 {
            background: linear-gradient(180deg, #ff2d2d, #b30000);
        }

        .box12 {
            background: linear-gradient(180deg, #9e9e9e, #616161);
        }

        .btn-lottery {
            color: white;
            padding: 12px;
            border-radius: 8px;
            border: none;
            font-weight: 500;
            text-align: center;
        }

        .morning-btn {
            background: linear-gradient(180deg, #ff6a9c, #d81b60);
        }

        .day-btn {
            background: linear-gradient(180deg, #ffd54f, #ff9800);
        }

        .evening-btn {
            background: linear-gradient(180deg, #64b5f6, #1e88e5);
        }

        .night-btn {
            background: linear-gradient(180deg, #e056fd, #c2188b);
        }

        .footer {
            background: #bfc5cc;
            color: #ffffff;
            text-align: center;
            padding: 5px 10px;
            font-size: 11px;
            letter-spacing: 1px;
            border-top: 3px solid #9ea4ab;
            font-family: monospace;
        }
        @media only screen and (max-width: 650px){
            .mainContainer1{
                width: 100%;
            }
        }
