 /* Reset and base styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
            background: #fff;
            color: #1976d2;
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: space-around;
            flex-direction: column;
            text-align: center;
            padding: 20px;
            background-image: url('../images/banner.jpg'); 
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            min-height: 100vh;
            position: relative;
        }
        body::after {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgb(0, 0, 0); 
            z-index: -1; 
            opacity: 0.7; 
        }
        /* Logo */
        .logo img {
            max-width: 200px;
            margin-bottom: 20px;
        }
        /* Headings */
        h1 {
            font-size: 5rem;
            margin-bottom: 10px;
            color: #1a72b8;
        }

        p {
            font-size: 1.2rem;
            margin-bottom: 40px;
            color: #fff;
        }

        /* Countdown look placeholder */
        .countdown {
            display: flex;
            gap: 20px;
            margin-bottom: 40px;
            justify-content: center;
        }

        .time-box {
            background: rgba(255, 255, 255, 0.1);
            padding: 20px 25px;
            border-radius: 10px;
            font-size: 42px;
            font-weight: bold;
            color: #fff;
        }

        .time-box span {
            display: block;
            font-size:  30px;
            font-weight: 600;
            margin-top: 5px;
            color: #fff;
        }
          .time-box span + span {
            font-size:  20px;
            font-weight: normal;
          }

        /* Footer text */
        footer {
            font-size: 0.9rem;
            opacity: 0.8;
            margin-top: 40px;
            color: #fff;
        }