        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Georgia', 'Times New Roman', serif;
            background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
            color: #f5f5f5;
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            position: relative;
        }

        /* Animated background particles */
.particles { position: fixed; inset: 0; }

        .particle {
            position: absolute;
            background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
            border-radius: 50%;
            animation: float 20s infinite ease-in-out;
        }

        @keyframes float {
            0%, 100% {
                transform: translateY(0) translateX(0) scale(1);
                opacity: 0;
            }
            10% {
                opacity: 0.4;
            }
            90% {
                opacity: 0.4;
            }
            50% {
                transform: translateY(-100vh) translateX(100px) scale(1.2);
            }
        }

        .container {
            max-width: 800px;
            padding: 40px;
            text-align: center;
            position: relative;
            z-index: 10;
            animation: fadeInUp 1.5s ease-out;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        h1 {
            font-size: 3.5em;
            margin-bottom: 20px;
            letter-spacing: 3px;
            font-weight: 300;
            position: relative;
            display: inline-block;
            animation: shimmer 3s ease-in-out infinite;
            background: linear-gradient(90deg, #e3f2fd, #ffffff, #e3f2fd);
            background-size: 200% 100%;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        @keyframes shimmer {
            0% {
                background-position: -200% center;
            }
            100% {
                background-position: 200% center;
            }
        }

        .divider {
            width: 100px;
            height: 1px;
            background: linear-gradient(90deg, transparent, #64b5f6, transparent);
            margin: 30px auto;
            animation: expand 2s ease-in-out infinite;
        }

        @keyframes expand {
            0%, 100% {
                width: 100px;
                opacity: 0.5;
            }
            50% {
                width: 150px;
                opacity: 1;
            }
        }

        .message {
            font-size: 1.2em;
            line-height: 1.8;
            margin-bottom: 40px;
            color: #e3f2fd;
            animation: fadeIn 2s ease-out 0.5s both;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
            }
            to {
                opacity: 1;
            }
        }

        .status {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 15px 30px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 50px;
            margin-bottom: 40px;
            animation: pulse 2s ease-in-out infinite;
        }

        @keyframes pulse {
            0%, 100% {
                box-shadow: 0 0 0 0 rgba(100, 181, 246, 0.4);
            }
            50% {
                box-shadow: 0 0 0 10px rgba(100, 181, 246, 0);
            }
        }

        .status-dot {
            width: 10px;
            height: 10px;
            background: #64b5f6;
            border-radius: 50%;
            animation: blink 1.5s ease-in-out infinite;
        }

        @keyframes blink {
            0%, 100% {
                opacity: 1;
            }
            50% {
                opacity: 0.3;
            }
        }

        .contact-btn {
            display: inline-block;
            padding: 15px 40px;
            background: transparent;
            color: #e3f2fd;
            text-decoration: none;
            border: 2px solid #64b5f6;
            border-radius: 30px;
            font-size: 1.1em;
            letter-spacing: 1px;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            animation: fadeIn 2s ease-out 1s both;
        }

        .contact-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(100, 181, 246, 0.3), transparent);
            transition: left 0.5s ease;
        }

        .contact-btn:hover {
            color: #ffffff;
            box-shadow: 0 0 20px rgba(100, 181, 246, 0.5);
            transform: translateY(-2px);
        }

        .contact-btn:hover::before {
            left: 100%;
        }

        .closing {
            margin-top: 50px;
            font-style: italic;
            color: #b3d7ff;
            font-size: 1.1em;
            animation: fadeIn 2s ease-out 1.5s both;
        }

        /* Loading animation */
        .loader {
            display: inline-flex;
            gap: 5px;
            margin-top: 30px;
            animation: fadeIn 2s ease-out 0.8s both;
        }

        .loader-dot {
            width: 8px;
            height: 8px;
            background: #64b5f6;
            border-radius: 50%;
            animation: bounce 1.4s ease-in-out infinite both;
        }

        .loader-dot:nth-child(1) { animation-delay: -0.32s; }
        .loader-dot:nth-child(2) { animation-delay: -0.16s; }
        .loader-dot:nth-child(3) { animation-delay: 0; }

        @keyframes bounce {
            0%, 80%, 100% {
                transform: scale(0);
            }
            40% {
                transform: scale(1);
            }
        }

        /* Responsive design */
        @media (max-width: 768px) {
            h1 {
                font-size: 2.5em;
            }
            .message {
                font-size: 1.1em;
            }
            .container {
                padding: 20px;
            }
        }
        .tagline .w::first-letter {
  font-weight: 800;       /* or 700 */
}
html, body { height: auto; }
body {
  overflow-x: hidden;
  overflow-y: auto;
}