        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: Arial, Helvetica, sans-serif;
            min-height: 100vh;
            overflow: hidden;
            color: white;
            background: linear-gradient(135deg, #2a2a2a 0%, #141414 50%, #000000 100%);
        }

        .container {
            position: relative;
            z-index: 1;
            text-align: center;
            padding: 2rem;
            max-width: 900px;
            margin: 0 auto;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
        }

        .logo {
            font-size: 7rem;
            font-weight: 700;
            margin-bottom: 1rem;
            letter-spacing: 0.1em;
            color: #ffffff;
            animation: fadeInDown 1s ease-out;
        }

        .tagline {
            font-size: 1.5rem;
            font-weight: 300;
            margin-bottom: 2rem;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            opacity: 0.85;
            animation: fadeInUp 1s ease-out 0.5s backwards;
        }

        .divider {
            width: 150px;
            height: 3px;
            background: linear-gradient(90deg, transparent, white, transparent);
            margin: 2.5rem auto;
            animation: fadeIn 1s ease-out 0.5s backwards;
        }

        .message {
            font-size: 1.4rem;
            line-height: 1.8;
            font-weight: 400;
            max-width: 700px;
            opacity: 0.9;
            animation: fadeInUp 1s ease-out 0.5s backwards;
        }

        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
            }
            to {
                opacity: 1;
            }
        }

        .social-links {
            margin-top: 4rem;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .x-logo {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 70px;
            height: 70px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            transition: background 0.3s ease;
            border: 2px solid rgba(255, 255, 255, 0.2);
        }

        .x-logo:hover {
            background: rgba(0, 150, 255, 0.2);
        }

        .x-icon {
            width: 35px;
            height: 35px;
            color: white;
        }

        @media (max-width: 768px) {
            .logo {
                font-size: 3.5rem;
            }

            .tagline {
                font-size: 1rem;
            }

            .message {
                font-size: 1.3rem;
            }

            .coming-soon {
                font-size: 1rem;
            }
        }

        @media (max-width: 480px) {
            .logo {
                font-size: 2.5rem;
            }

            .tagline {
                font-size: 0.9rem;
            }

            .message {
                font-size: 1.1rem;
            }
        }