@charset "utf-8";
/* CSS Document */
@import url(https://fonts.googleapis.com/css?family=Courgette);
@import url(http://fonts.googleapis.com/css?family=Roboto:400,300,100);
@import url(http://fonts.googleapis.com/css?family=Roboto+Condensed:400,300,100);
body {
    font-family: serif;
    margin: 0;
    color: #717170;

    background-image: url("../img/star3.gif");
    background-size: cover;      /* Full screen cover */
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed; /* Background fixed rahe */

    min-height: 100vh; /* Kam se kam full screen */
}
a {
	text-decoration:none;
}
.container{
	position:relative;
	top:0px;
	width: 900px;
	height: auto;
	margin:auto;
}
.header{
	background-color:#013042;
	width:100%;
	position:relative;
	top:10px;
	border-radius:25px;
	border: dashed 4px #25dbdb;
}
.header h1{
	
	padding:17px 0 0px 0;
	color:#25dbdb;
	position:relative;
	top:0px;
	margin:0;
	text-align:center;
	font-size:40px;
}
.middle{
	text-align:center;
	background-color:#ebede8;
	width:100%;
	position:relative;
	top:40px;
	border-radius:25px;
	border: dashed 4px #25dbdb;
	margin-bottom:10px;
}
.headings {
	width:800px;
	position:relative;
	left:5%;
}
.headings h2{
	position:relative;
	padding-top:5px;
	padding-bottom:5px;
	letter-spacing:1px;
	font-size:35px;
	line-height:45px;
	background-color:#25dbdb;
}
.header img{
	position:relative;
	height: 100px;
}
.middle{
	padding-bottom:15px;
}
.middle a{
	color:#ffffff;
}
.results{
	float:left;
	position:relative;
	left:5px;
	min-height:150px;
	width:88%;
}
#day{
	float:left;
	position:relative;
	top:0px;
	left:35px;
	width:50%;
	min-height:160px;
	}
#night{
	float:right;
	position:relative;
	top:0px;
	left:50px;
	width:45%;
	min-height:160px;
	}
#night h2 {
	background-color:#25dbdb;
	padding:5px 0 5px 0;
	border:solid 2px #25dbdb;
	font-size:25px;
	display:inline;
	margin:0;
}
#day table {
	float:right;
	width:100%;
	font-size:20px;
}
 
.results table th{
	background-color:#124845;
	color:#56f7af;
}
.results table td{
	background-color:#25dbdb;
		color:#000000;
	}

.result-by-year table{
	font-size:20px;
	position:relative;
	width:100%;
	
}
.result-by-year table th{
	background-color:#124845;
	color:#56f7af;
}





/* =========================
LOTTERY BUTTON
========================= */

.lottery-btn{
    padding:18px 35px;
    font-size:22px;
    font-weight:700;
    color:#fff;
    background:linear-gradient(135deg,#ff9800,#ff5722);
    border:none;
    border-radius:50px;
    cursor:pointer;
    box-shadow:0 8px 25px rgba(255,87,34,.4);
    transition:.3s;
    animation:pulse 1.5s infinite;
	margin-bottom: 30px;
}

.lottery-btn:hover{
    transform:translateY(-4px);
    box-shadow:0 12px 30px rgba(255,87,34,.6);
}

@keyframes pulse{
    0%{transform:scale(1);}
    50%{transform:scale(1.05);}
    100%{transform:scale(1);}
}


.btn {
            background: linear-gradient(45deg, #ff7a00, #ffb347);
            padding: 12px 25px;
            border: none;
            border-radius: 10px;
            color: white;
            cursor: pointer;
            margin: 10px 20px !important;
            font-weight: bold;
            transition: 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        /* BUTTON HOVER */
        .btn:hover {
            transform: scale(1.08);
            box-shadow: 0 0 18px rgba(255, 122, 0, 0.7);
        }

        /* BUTTON CLICK */
        .btn:active {
            transform: scale(0.95);
        }

        /* BUTTON SHINE EFFECT */
        .btn::before {
            content: "";
            position: absolute;
            top: 0;
            left: -120%;
            width: 100%;
            height: 100%;
            background: rgba(255, 255, 255, 0.3);
            transform: skewX(-25deg);
            transition: 0.5s;
        }

        .btn:hover::before {
            left: 120%;
        }


        /* TITLE */
        .title {
            padding: 12px;
            font-weight: 600;
            font-size: 18px;
            color: #fff;
        }

        /* DESCRIPTION */
        .desc {
            font-size: 13px;
            color: #aaa;
            padding: 0 12px 15px;
            line-height: 1.6;
        }

        /* PRICE CARD */
        .price-card {
            width: 260px;
            background: linear-gradient(145deg, #111, #1a1a1a);
            /* padding: 25px; */
            border-radius: 18px;
            transition: 0.4s ease;
            position: relative;
            overflow: hidden;
            border: 1px solid rgba(255, 255, 255, 0.06);

            /* Animation */
            animation: fadeUp 1s ease forwards;
            opacity: 0;
            transform: translateY(40px);
        }

        /* PRICE CARD HOVER */
        .price-card:hover {
            transform: translateY(-12px) scale(1.05);
            box-shadow: 0 0 30px rgba(255, 122, 0, 0.7);
            border-color: #ff7a00;
        }

        /* GLOW EFFECT */
        .price-card::before {
            content: "";
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(45deg,
                    transparent,
                    rgba(255, 122, 0, 0.15),
                    transparent);
            transform: rotate(25deg);
            animation: shine 5s linear infinite;
        }

        /* ANIMATION */
        @keyframes fadeUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* SHINE EFFECT */
        @keyframes shine {
            0% {
                transform: translateX(-100%) rotate(25deg);
            }

            100% {
                transform: translateX(100%) rotate(25deg);
            }
        }

        /* MOBILE RESPONSIVE */
        @media(max-width:768px) {

            .grid {
                flex-direction: column;
                align-items: center;
            }

            .card,
            .price-card {
                width: 90%;
                max-width: 320px;
            }
        }

        .highlight {
            border: 2px solid #ff7a00
        }

        footer {
            text-align: center;
            padding: 20px;
            color: #888
        }

        .review {
            background: #111;
            padding: 20px;
            border-radius: 10px;
            width: 250px
        }




        /* =========================
DELIVERY WRAPPER
========================= */
        #delivery-wrapper {
            width: 100%;
            min-height: 100vh;
            display: none;
            /* HIDE FIRST */
            justify-content: center;
            align-items: center;
            padding: 20px;
            box-sizing: border-box;
            /* background: #0f172a; */
        }

        /* =========================
DELIVERY SECTION
========================= */

        #delivery-section {
            width: 100%;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        /* =========================
DELIVERY BOX
========================= */

        .delivery-box {
            width: 100%;
            max-width: 520px;
            background: #ffffff;
            border-radius: 25px;
            padding: 35px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.25);
            animation: fadeIn 0.5s ease;
            box-sizing: border-box;
        }

        /* =========================
TITLE
========================= */

        .delivery-title {
            text-align: center;
            font-size: 32px;
            font-weight: bold;
            color: #111827;
            margin-bottom: 10px;
        }

        .delivery-subtitle {
            text-align: center;
            color: #6b7280;
            font-size: 15px;
            margin-bottom: 30px;
        }

        /* =========================
FORM
========================= */

        .delivery-form {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .input-box {
            width: 100%;
            position: relative;
        }

        /* =========================
INPUTS
========================= */

        .delivery-form input,
        .delivery-form textarea {
            width: 100%;
            padding: 16px 18px;
            border: 2px solid #e5e7eb;
            border-radius: 14px;
            font-size: 15px;
            outline: none;
            transition: 0.3s;
            background: #f9fafb;
            box-sizing: border-box;
        }

        .delivery-form textarea {
            min-height: 100px;
            resize: none;
        }

        .delivery-form input:focus,
        .delivery-form textarea:focus {
            border-color: #2563eb;
            background: #fff;
            box-shadow: 0 0 10px rgba(37, 99, 235, 0.15);
        }

        /* =========================
BUTTON
========================= */

        .delivery-form button {
            background: linear-gradient(135deg, #2563eb, #1d4ed8);
            color: #fff;
            border: none;
            padding: 16px;
            border-radius: 14px;
            font-size: 17px;
            font-weight: bold;
            cursor: pointer;
            transition: 0.3s;
            width: 100%;
        }

        .delivery-form button:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 20px rgba(37, 99, 235, 0.3);
        }

        /* =========================
SCREENSHOT
========================= */

        .upload-label {
            display: block;
            color: #070707;
            margin-bottom: 10px;
            font-weight: 600;
            font-size: 15px;
        }

        #payment-screenshot {
            width: 100%;
            padding: 14px;
            border-radius: 14px;
            border: none;
            background: #1b1b1b;
            color: #fff;
            font-size: 15px;
            outline: none;
            box-sizing: border-box;
        }

        #payment-screenshot::-webkit-file-upload-button {
            background: linear-gradient(45deg, #ff512f, #dd2476);
            border: none;
            padding: 10px 15px;
            border-radius: 10px;
            color: #fff;
            cursor: pointer;
            margin-right: 10px;
        }

        #screenshot-preview {
            width: 100%;
            margin-top: 15px;
            border-radius: 15px;
            display: none;
            border: 2px solid #333;
            object-fit: cover;
        }

        /* =========================
ANIMATION
========================= */

        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* =========================
TABLET
========================= */

        @media(max-width:768px) {

            #delivery-wrapper {
                padding: 15px;
            }

            .delivery-box {
                padding: 28px;
                border-radius: 22px;
            }

        }

        /* =========================
MOBILE
========================= */

        @media(max-width:600px) {

            #delivery-wrapper {
                padding: 12px;
                align-items: center;
            }

            .delivery-box {
                padding: 20px;
                border-radius: 18px;
            }

            .delivery-title {
                font-size: 24px;
            }

            .delivery-subtitle {
                font-size: 14px;
                margin-bottom: 22px;
            }

            .delivery-form {
                gap: 12px;
            }

            .delivery-form input,
            .delivery-form textarea {
                padding: 13px;
                font-size: 14px;
                border-radius: 12px;
            }

            .delivery-form button {
                font-size: 15px;
                padding: 14px;
                border-radius: 12px;
            }

            .upload-label {
                font-size: 14px;
            }

            #payment-screenshot {
                padding: 12px;
                font-size: 14px;
            }

        }


		/* PAYMENT CARD */

#payment-page{
    display:none;
    max-width:420px;
    margin:30px auto;
    /* background:#1a1919; */
    border:2px solid #111;
    border-radius:20px;
    padding:25px;
    text-align:center;
    box-shadow:0 10px 30px rgba(0,0,0,.5);
}

#payment-page h2{
    color:#fff;
    font-size:34px;
    margin-bottom:20px;
}

#pay-project-name{
    color:#fff;
    font-size:20px;
    font-weight:700;
    margin-bottom:10px;
}

#pay-amount{
    color:#fff;
    font-size:60px;
    font-weight:900;
    margin-bottom:25px;
}

#dynamic-qr-image{
    height:250px;
    width:250px;
    max-width:100%;
    background:#fff;
    padding:15px;
    border-radius:20px;
}

#upi-display-id{
    color:#fff;
    font-size:24px;
    margin-top:25px;
    margin-bottom:25px;
    word-break:break-all;
}

/* BUTTONS */

.payment-btn{
    background:#f9a826;
    color:#fff;
    border:none;
    padding:14px 28px;
    border-radius:12px;
    font-size:18px;
    font-weight:bold;
    cursor:pointer;
    margin:8px;
    min-width:130px;
}

.payment-btn:hover{
    opacity:.9;
}

/* MOBILE */

@media(max-width:600px){

    #payment-page{
        width:95%;
        padding:20px;
    }

    #pay-project-name{
        font-size:18px;
    }

    #pay-amount{
        font-size:48px;
    }

    #dynamic-qr-image{
        width:220px;
    }

    #upi-display-id{
        font-size:18px;
    }

    .payment-btn{
        width:100%;
        margin-top:10px;
    }
}


/* LOTTERY TIME SELECT */

.input-box select {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid rgba(19, 16, 16, 0.15);
    border-radius: 14px;
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(10px);
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    outline: none;
    transition: 0.3s ease;
    cursor: pointer;

    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;

    background-image:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' fill='white' viewBox='0 0 16 16'%3E%3Cpath d='M1.5 5.5l6 6 6-6' stroke='white' stroke-width='2' fill='none'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 18px;
}

.input-box select:focus {
    border-color: #00ff99;
    box-shadow: 0 0 15px rgba(0,255,153,0.4);
}

.input-box select option {
    background: #111;
    color: #fff;
}

#d-time {
    color: #050202;
}

#d-time:valid {
    color: #0c0606;
}