body, html {
            margin: 0;
            padding: 0;
            height: 100%;
            width: 100%;
            font-family: 'Inter', sans-serif;
            overflow: hidden; /* Prevents scrolling */
        }

        .container {
            /* Full screen settings */
            width: 100vw;
            height: 100vh;

            /* Center content */
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;

            /* Styling */
            background: radial-gradient(circle at center, #ffffff 0%, #f4f7f6 100%);
            color: #333;
            text-align: center;
            padding: 20px;
            box-sizing: border-box;
        }

        .icon {
            font-size: 80px; /* Slightly larger for full screen */
            margin-bottom: 24px;
        }

        .status-tag {
            display: inline-block;
            background: #e1f5fe;
            color: #0288d1;
            padding: 10px 20px;
border-radius: 30px;
            font-weight: bold;
            font-size: 1rem;
            margin-bottom: 25px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        h1 {
            font-size: clamp(2rem, 5vw, 3.5rem); /* Scales based on screen size */
            margin-bottom: 15px;
            color: #2c3e50;
            font-weight: 700;
        }

        p {
            font-size: clamp(1rem, 2vw, 1.25rem);
            line-height: 1.6;
            color: #666;
            max-width: 700px; /* Keeps text readable on wide screens */
            margin: 0 auto 40px auto;
        }
