* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        @font-face {
        font-family: 'El Messiri';
        src: url('fonts/ElMessiri-VariableFont_wght.ttf') format('truetype');
        font-weight: 100 900;
        font-style: normal;
            }
             
        body {
            width: 100vw;
            height: 100vh;
            overflow: hidden;
            display: flex;
            justify-content: center;
            align-items: center;

            background: repeating-linear-gradient(
                -45deg,
                #000000  0px,
                #000000  20px,
                #fdd835 20px,
                #fdd835 40px
            );

            font-family: 'El Messiri', sans-serif;
        }

        .glass-box {
            width: 80vw;
            max-width: 600px;
            padding: 5vw 4vw;
            background: rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(7px) saturate(1.3);
            -webkit-backdrop-filter: blur(16px) saturate(1.3);
            border-radius: 24px;
            border: 1px solid rgba(255, 255, 255, 0.30);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
            color: #000;
            text-align: center;
            line-height: 1.6;
        }

        .glass-box h1 {
            font-size: clamp(1.5rem, 5vw, 2.8rem);
            margin-bottom: 0.5em;
            font-weight: 700;
            letter-spacing: 1px;
            text-shadow: 0 2px 6px rgba(0,0,0,0.25);
            color: #000;
        }

        .glass-box p {
            font-size: clamp(0.95rem, 2.5vw, 1.25rem);
            font-weight: 400;
            color: #000;
        }

        .email-link {
            display: block;
            margin-top: 1.8rem;
            font-size: clamp(1.1rem, 3vw, 1.6rem);
            font-weight: 700;
            color: #000;
            text-decoration: none;
            letter-spacing: 0.5px;
            text-shadow:
                -1px -1px 0 #fdd835,
                 1px -1px 0 #fdd835,
                -1px  1px 0 #fdd835,
                 1px  1px 0 #fdd835;
        }