        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: Arial, Helvetica, sans-serif;
        }

        body {
            background: #D3C1F5;
            color: #333;
            user-select: none;
        }

        /* HEADER */

        .site-header {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 15px;

            background: #A773F5;
            color: white;
            padding: 15px;
        }

        .site-logo {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            object-fit: cover;
        }

        .site-title {
            font-size: 23px;
            font-weight: 700;
        }

        /* CONTAINER */

        .container {
            max-width: 1100px;
            margin: auto;
            padding: 20px;
        }

        /* BUTTONS */

        .time-buttons {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            justify-content: center;
            margin: 25px 0;
        }

        .btn {
            padding: 15px 35px;
            border: none;
            border-radius: 50px;
            font-size: 16px;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
            color: white;
            border: 1px solid white;
            font-family: Arial, Helvetica, sans-serif;
            box-shadow:
                0 6px 15px rgba(0, 0, 0, 0.25),
                0 12px 30px rgba(0, 0, 0, 0.15),
                inset 0 -2px 4px rgba(0, 0, 0, 0.2);
        }

        .btn.animate {
            animation: pulse 2s infinite, blink 1s infinite;
        }

        .btn:hover {
            transform: translateY(-3px) scale(1.06);

            box-shadow:
                0 12px 25px rgba(0, 0, 0, 0.35),
                0 18px 40px rgba(0, 0, 0, 0.25),
                inset 0 -2px 6px rgba(0, 0, 0, 0.25);
        }

        .red {
            background: #5525DB;
        }

        .yellow {
            background: #ffc107;
            color: black;
        }

        .orange {
            background: #fd7e14;
        }

        /* RESULT BOX */

        .result-box {
            background: #9A7EF2;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
            text-align: center;
            margin-bottom: 30px;
        }

        .result-box h2 {
            font-size: 30px;
            color: #198754;
            margin-bottom: 10px;
        }

        /* COMING SOON */

        /* default: NO animation */
        .coming-box {
            display: inline-block;
            padding: 18px 45px;
            margin-top: 15px;
            font-size: 22px;
            font-weight: bold;
            color: white;
            border-radius: 60px;
            letter-spacing: 1px;
            position: relative;
            overflow: hidden;
            border: 1px solid #9A7EF2;
            font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
            background: linear-gradient(135deg, #711ddf, #711ddf, #6f60f0);

            box-shadow:
                0 0 10px rgba(127, 45, 221, 0.9),
                0 0 20px rgba(110, 86, 214, 0.9),
                0 6px 18px rgba(0, 0, 0, 0.45);
        }

        /* animation starts ONLY when class added */
        .coming-box.animate {
            animation: pulse 2s infinite, blink 1s infinite;
        }

        .coming-box.animate::before {
            content: "";
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(120deg,
                    transparent,
                    rgba(255, 255, 255, 0.8),
                    transparent);
            animation: shine 2.5s infinite;
        }

        /* ADS */

        .ad-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 15px;
            margin: 30px 0;
        }

        .ad-card {
            background: #9A7EF2;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
        }

        .ad-card img {
            width: 100%;
            height: 120px;
            object-fit: cover;
        }

        .ad-card p {
            padding: 10px;
            font-size: 14px;
            text-align: center;
            color: #fff;
        }

        /* GOOGLE ICON */
        .google-center {
            margin-top: 40px;
            text-align: center;
            font-size: 120px;
        }

        .google-center i {
            color: #9B46F0;
            /* base Google blue */
            /* multi-color glow */
            text-shadow:
                0 0 8px #4285F4,
                0 0 16px #EA4335,
                0 0 24px #FBBC05,
                0 0 32px #34A853;
        }

        /* RESPONSIVE */
        @media(max-width:600px) {
            .btn {
                width: 100%;
            }

            .time-buttons {
                flex-direction: column;
                align-items: center;
            }
        }

        /* ANIMATIONS */
        @keyframes pulse {
            0% {
                transform: scale(1);
                box-shadow: 0 0 12px rgba(255, 65, 108, 0.5), 0 0 25px rgba(255, 75, 43, 0.5);
            }

            50% {
                transform: scale(1.05);
                box-shadow: 0 0 20px rgba(255, 65, 108, 0.6), 0 0 35px rgba(255, 75, 43, 0.6);
            }

            100% {
                transform: scale(1);
                box-shadow: 0 0 12px rgba(255, 65, 108, 0.5), 0 0 25px rgba(255, 75, 43, 0.5);
            }
        }

        @keyframes shine {
            0% {
                left: -100%;
            }

            100% {
                left: 100%;
            }
        }

        @keyframes googlePop {
            0% {
                transform: scale(1);
            }

            100% {
                transform: scale(1.15);
            }
        }

        /* FOOTER */
        .site-footer {
            width: 100%;
            background: #A773F5;
            padding: 15px;
            text-align: center;
            margin-top: 15px;
        }

        .footer-title {
            font-size: 22px;
            font-weight: bold;
            color: #fff;
            margin-bottom: 8px;
        }

        .footer-copy {
            font-size: 14px;
            color: #fff;
            margin-bottom: 20px;
        }

        .footer-social {
            display: flex;
            justify-content: center;
            gap: 20px;
        }

        .footer-social a {
            font-size: 28px;
            color: #9A36C2;
            transition: 0.3s;
        }

        .footer-social a:hover {
            color: #0d6efd;
            transform: scale(1.15);
        }

        .date-search {
            display: flex;
            justify-content: center;
            margin-top: 20px;
            gap: 10px;
            flex-wrap: wrap;
        }

        .date-search input[type="date"] {
            padding: 10px 15px;
            font-size: 16px;
            border: 1px solid #ccc;
            border-radius: 6px;
            width: 200px;
        }

        .date-search button {
            padding: 10px 20px;
            background-color: #52783D;
            border: none;
            color: #fff;
            font-size: 16px;
            border-radius: 6px;
            cursor: pointer;
            transition: background 0.3s;
        }

        .date-search button:hover {
            background-color: #b71c1c;
        }

        .date {
            color: green;
            font-size: 20px;
            margin-bottom: 15px;
        }

        hr {
            border: none;
            height: 1px;
            background: #672DBD;
            margin: 20px 0;
        }

        .btn-wrap {
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .btn-note {
            margin-top: 6px;
            font-size: 14px;
            font-style: italic;
            text-align: center;
            color: #5525DB;
        }

        .result-img {
            display: none;
            margin: 20px auto;
            width: auto;
            height: 400px;
            border-radius: 10px;
            object-fit: contain;

            box-shadow:
                0 0 15px rgba(85, 37, 219, 0.9),
                0 10px 25px rgba(0, 0, 0, 0.5);
        }

        .result-image-box {
            text-align: center;
        }

        .protection-layer {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            background: repeating-linear-gradient(45deg,
                    rgba(255, 255, 255, 0.02),
                    rgba(255, 255, 255, 0.02) 2px,
                    transparent 2px,
                    transparent 4px);
        }

        .watermark {
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%) rotate(-30deg);
            font-size: 60px;
            color: rgba(0, 0, 0, 0.08);
            pointer-events: none;
            user-select: none;
            
        }