<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Chidaksha Narayana | Coming Soon</title>
    <style>
        :root {
            --bg-dark: #03020a;
            --accent-gold: #e5c158;
            --accent-blue: #4a54e1;
            --text-light: #ffffff;
            --text-dim: #b3b3cc;
            --glass-bg: rgba(10, 10, 25, 0.7);
            --glass-border: rgba(229, 193, 88, 0.15);
        }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
            font-family: 'Cinzel', 'Georgia', serif;
        }

        body {
            background-color: var(--bg-dark);
            color: var(--text-light);
            min-height: 100vh;
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 20px;
            overflow-x: hidden;
            background-image: radial-gradient(circle at 50% 30%, #11112a 0%, #03020a 80%);
        }

        /* Monitor Container */
        .monitor-frame {
            width: 100%;
            max-width: 1000px;
            background: #0b0a14;
            border: 3px solid #222133;
            border-radius: 16px;
            box-shadow: 0 30px 70px rgba(0, 0, 0, 0.8), 
                        0 0 40px rgba(74, 84, 225, 0.1);
            overflow: hidden;
            display: flex;
            flex-direction: column;
        }

        /* Top window bar */
        .monitor-header {
            background: #121122;
            padding: 12px 20px;
            display: flex;
            align-items: center;
            border-bottom: 2px solid #1d1c30;
        }

        .dots {
            display: flex;
            gap: 8px;
        }

        .dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            opacity: 0.7;
        }
        .dot-1 { background: #ff5f56; }
        .dot-2 { background: #ffbd2e; }
        .dot-3 { background: #27c93f; }

        /* Cosmic Canvas Content Area */
        .screen-content {
            position: relative;
            min-height: 600px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            padding: 40px 20px;
            text-align: center;
            overflow: hidden;
        }

        /* Background Cosmic Image Styling */
        .cosmic-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: 1;
            opacity: 0.45; /* Blends artwork into the dark background */
            mix-blend-mode: lighten;
            pointer-events: none;
        }

        /* Foreground Content Glass Panel */
        .main-panel {
            position: relative;
            z-index: 2;
            background: var(--glass-bg);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border: 1px solid var(--glass-border);
            padding: 45px 60px;
            border-radius: 12px;
            max-width: 650px;
            width: 100%;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
            box-shadow: inset 0 0 25px rgba(229, 193, 88, 0.03);
        }

        .status-badge {
            font-family: sans-serif;
            font-size: 0.75rem;
            letter-spacing: 3px;
            color: var(--accent-gold);
            text-transform: uppercase;
            margin-bottom: 20px;
            display: inline-block;
            border-bottom: 1px solid var(--accent-gold);
            padding-bottom: 4px;
        }

        .main-title {
            font-size: 2.8rem;
            color: var(--text-light);
            font-weight: 400;
            letter-spacing: 3px;
            margin-bottom: 10px;
            text-shadow: 0 0 15px rgba(255,255,255,0.1);
        }

        .subtitle {
            font-size: 1rem;
            color: var(--accent-gold);
            letter-spacing: 4px;
            text-transform: uppercase;
            margin-bottom: 30px;
            font-weight: 300;
        }

        .description {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            color: var(--text-dim);
            font-size: 0.95rem;
            line-height: 1.7;
            margin-bottom: 35px;
        }

        /* Countdown Elements */
        .timer-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 15px;
            max-width: 450px;
            margin: 0 auto;
        }

        .timer-segment {
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid rgba(255, 255, 255, 0.07);
            padding: 12px 5px;
            border-radius: 6px;
            transition: all 0.3s ease;
        }

        .timer-segment:hover {
            border-color: rgba(229, 193, 88, 0.3);
            background: rgba(229, 193, 88, 0.02);
        }

        .time-display {
            font-size: 2rem;
            font-weight: 300;
            color: #fff;
            display: block;
            letter-spacing: 1px;
        }

        .time-label {
            font-family: sans-serif;
            font-size: 0.65rem;
            color: var(--text-dim);
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-top: 4px;
            display: block;
        }

        #launch-msg {
            display: none;
            font-size: 1.4rem;
            color: var(--accent-gold);
            letter-spacing: 2px;
            padding: 15px;
            border: 1px double var(--accent-gold);
            border-radius: 6px;
        }

        /* Responsive Design Rules */
        @media (max-width: 768px) {
            .main-panel {
                padding: 30px 20px;
            }
            .main-title {
                font-size: 2rem;
            }
            .subtitle {
                font-size: 0.85rem;
                letter-spacing: 2px;
            }
            .screen-content {
                min-height: 500px;
            }
            .time-display {
                font-size: 1.5rem;
            }
            .time-label {
                font-size: 0.6rem;
                letter-spacing: 1px;
            }
            .timer-grid {
                gap: 8px;
            }
        }
    </style>
</head>
<body>


        <div class="screen-content">
            
            <img class="cosmic-bg" src="C:\Users\aparnaraj\Downloads\img.jpg" alt="Cosmic Aura">

            <div class="main-panel">
                <span class="status-badge">Aura Aligning</span>
                <h1 class="main-title">Chidaksha Narayana</h1>
                <p class="subtitle">Vedic Astrology & Cosmic Mindspace</p>
                
                <p class="description">
                    Mapping the celestial pathways of the inner conscious sky. Our digital portal is currently syncing with the planetary alignments.
                </p>

                <div class="timer-grid" id="clock-wrapper">
                    <div class="timer-segment">
                        <span class="time-display" id="days-box">00</span>
                        <span class="time-label">Days</span>
                    </div>
                    <div class="timer-segment">
                        <span class="time-display" id="hours-box">00</span>
                        <span class="time-label">Hrs</span>
                    </div>
                    <div class="timer-segment">
                        <span class="time-display" id="mins-box">00</span>
                        <span class="time-label">Mins</span>
                    </div>
                    <div class="timer-segment">
                        <span class="time-display" id="secs-box">00</span>
                        <span class="time-label">Secs</span>
                    </div>
                </div>

                <div id="launch-msg">The Portal is Open. We Are Live.</div>
            </div>

        </div>
    </div>

    <script>
        // Set specific target deadline: July 1, 2026, 09:00:00 AM
        const launchDate = new Date("July 1, 2026 09:00:00").getTime();

        const engine = setInterval(function() {
            const current = new Date().getTime();
            const remainder = launchDate - current;

            // Date processing arithmetic
            const d = Math.floor(remainder / (1000 * 60 * 60 * 24));
            const h = Math.floor((remainder % (1000 * 60 * 60 * 24)) / (1000 * 60 * 60));
            const m = Math.floor((remainder % (1000 * 60 * 60)) / (1000 * 60));
            const s = Math.floor((remainder % (1000 * 60)) / 1000);

            // Format dynamic numeric outputs with leading zeros
            document.getElementById("days-box").innerHTML = d < 10 ? "0" + d : d;
            document.getElementById("hours-box").innerHTML = h < 10 ? "0" + h : h;
            document.getElementById("mins-box").innerHTML = m < 10 ? "0" + m : m;
            document.getElementById("secs-box").innerHTML = s < 10 ? "0" + s : s;

            // Handle timer expiration logic
            if (remainder < 0) {
                clearInterval(engine);
                document.getElementById("clock-wrapper").style.display = "none";
                document.getElementById("launch-msg").style.display = "block";
            }
        }, 1000);
    </script>
</body>
</html>