
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Arial', sans-serif;
            background: linear-gradient(135deg, #0a0a2e 0%, #16213e 50%, #0f3460 100%);
            color: #fff;
            min-height: 100vh;
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 40px 20px;
        }

        /* ---- Container ---- */
        .container {
            max-width: 700px;
            width: 100%;
            background: rgba(10, 10, 46, 0.95);
            padding: 40px;
            border-radius: 15px;
            border: 2px solid #4a90e2;
            box-shadow: 0 0 50px rgba(74, 144, 226, 0.7);
            text-align: center;
        }

        h1 {
            font-size: 3em;
            margin-bottom: 25px;
            text-shadow: 0 0 20px #4a90e2, 0 0 30px #4a90e2;
            background: linear-gradient(45deg, #4a90e2, #7b68ee, #4a90e2);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .info {
            font-size: 1.2em;
            margin: 15px 0;
            color: #ccc;
            line-height: 1.8;
        }

        .info strong {
            color: #a0d2ff;
        }

        /* ---- Links ---- */
        a {
            color: #4a90e2;
            text-decoration: none;
            margin: 10px;
            font-weight: bold;
            transition: all 0.3s ease;
        }

        a:hover {
            color: #7b68ee;
            text-shadow: 0 0 10px #4a90e2;
        }

        /* ---- Social Links ---- */
       
     

        .social strong {
            display: block;
            color: #a0d2ff;
            font-size: 1.1em;
        }

        .social a {
            display: inline-block;
            padding: 12px 25px;
            border-radius: 8px;
            border: 2px solid #4a90e2;
            background: linear-gradient(135deg, #4a90e2, #7b68ee);
            color: white;
            margin: 8px;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(74, 144, 226, 0.4);
        }

        .social a:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(74, 144, 226, 0.6);
            background: linear-gradient(135deg, #5ba0f2, #8b78fe);
        }

        /* ---- Footer ---- */
        .footer {
            margin-top: 30px;
            font-size: 0.9rem;
            color: #a0d2ff;
            opacity: 0.8;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .container {
                padding: 30px 20px;
            }

            h1 {
                font-size: 2.5em;
            }

            .info {
                font-size: 1em;
            }

            .social a {
                display: block;
                margin: 10px auto;
                max-width: 200px;
            }
        }


            body {
        margin: 0;
        overflow: hidden;
        height: 100vh;
        background: radial-gradient(circle at bottom, #020111, #000000);
    }

    .star {
        position: absolute;
        width: 2px;
        height: 2px;
        z-index: -10;
        background: white;
        border-radius: 50%;
        opacity: 0.8;
    }
    