        body, html {
            margin: 0;
            padding: 0;
            width: 100%;
            height: 100%;
            font-family: 'Inter', sans-serif; 
        }
        .welcome-active {
            overflow: hidden; 
        }
        .welcome-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: #1a1a2e; 
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 9999;
            opacity: 1;
            transition: opacity 1s ease-out; /* Fade-out transition */
        }
        .welcome-overlay.fade-out {
            opacity: 0;
        }
        .welcome-overlay .container {
            text-align: center;
            position: relative; 
            z-index: 1; 
        }
        .icon-button {
            display: inline-block;
            margin: 0 10px; 
            padding: 15px;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            color: #fff;
            font-size: 2rem; 
            transition: transform 0.3s ease;
        }
        .icon-button:hover {
            transform: scale(1.1);
        }
        .gradient-text-white {
            background: linear-gradient(to right, #eee, #fff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            font-weight: bold;
        }
        .gradient-text-primary {
            background: linear-gradient(to right, #6e8efb, #a777e3);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            font-weight: bold;
        }
        .website-link-button {
            display: inline-block;
            padding: 12px 25px;
            background-color: rgba(255, 255, 255, 0.15);
            color: #fff;
            border-radius: 25px;
            text-decoration: none;
            font-size: 1.2rem;
            transition: background-color 0.3s ease;
        }
        .website-link-button:hover {
            background-color: rgba(255, 255, 255, 0.25);
        }
        .typewriter-text {
            display: inline-block; 
        }
        .background-effects { /* Corrected spelling */
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, #5d6a6b, #4b6e80, #f8f9fa);
            background-size: 400% 400%;
            animation: gradientBG 15s ease infinite;
            z-index: 0; 
        }

        @keyframes gradientBG {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }