/* General Styling */
        body {
            font-family: 'Inter', sans-serif;
            margin: 0;
            padding: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            height: 100vh;
            background-color: #313943;
            color: #fff;
            text-align: center;
        }

        /* Container */
        .container {
            max-width: 650px;
            padding: 20px;
        }

        /* Title */
        h1 {
            font-size: 2.5rem;
            font-weight: 600;
            color: #2FDB9C;
            margin-bottom: 10px;
        }

        /* Paragraph */
        p {
            font-size: 1.2rem;
            max-width: 600px;
            margin: 0 auto 20px;
            line-height: 1.5;
            color: #ccc;
        }

        /* Status Box */
        .status-box {
            display: inline-block;
            padding: 15px 30px;
            font-size: 1.2rem;
            font-weight: bold;
            background: linear-gradient(135deg, #0C94B3, #2FDB9C);
            border-radius: 8px;
            box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.3);
            transition: transform 0.3s ease-in-out;
            color: #fff;
        }

        /* Hover effect */
        .status-box:hover {
            transform: scale(1.05);
        }

        /* Online status */
        .online {
            font-weight: bold;
            text-transform: uppercase;
        }

        /* Footer */
        footer {
            margin-top: 20px;
            font-size: 0.9rem;
            color: #bbb;
        }