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

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Fira Code', monospace, sans-serif;
            background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0f0f0f 100%);
            background-attachment: fixed;
            color: #ffffff;
            overflow-x: hidden;
            overflow-y: auto;
            min-height: 100vh;
        }

        .container {
            position: relative;
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 40px 20px;
        }

        .content {
            position: relative;
            z-index: 2;
            text-align: center;
            max-width: 900px;
            animation: fadeInUp 1s ease-out;
        }

        .logo-wrapper {
            margin-bottom: 2rem;
            animation: float 3s ease-in-out infinite;
        }

        .logo {
            max-width: 120px;
            width: 100%;
            height: auto;
            filter: drop-shadow(0 0 40px rgba(0, 212, 212, 0.5));
            transition: transform 0.3s ease;
        }

        .logo:hover {
            transform: scale(1.05);
        }

        .title {
            font-size: 3.5rem;
            font-weight: 800;
            margin-bottom: 1rem;
            background: linear-gradient(135deg, #00d4d4 0%, #3ba5a5 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: glow 2s ease-in-out infinite alternate;
            letter-spacing: -1px;
        }

        .reserved-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.75rem;
            background: rgba(212, 0, 0, 0.15);
            backdrop-filter: blur(10px);
            border: 2px solid rgba(255, 70, 70, 0.4);
            padding: 1rem 2rem;
            border-radius: 50px;
            margin-bottom: 2rem;
            animation: pulse 2s ease-in-out infinite;
        }

        .badge-icon {
            font-size: 1.75rem;
            filter: drop-shadow(0 0 10px rgba(255, 70, 70, 0.8));
        }

        .badge-text {
            font-size: 1.1rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: #ff4646;
        }

        .subtitle {
            font-size: 1.35rem;
            color: #b0b0b0;
            margin-bottom: 2.5rem;
            animation: fadeIn 1.5s ease-out;
            font-weight: 500;
        }

        .terminal-box {
            background: rgba(20, 20, 20, 0.9);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(0, 212, 212, 0.3);
            border-radius: 16px;
            padding: 2rem;
            margin: 2rem auto;
            max-width: 700px;
            box-shadow: 0 20px 60px rgba(0, 212, 212, 0.2);
            animation: slideIn 1s ease-out 0.3s both;
        }

        .terminal-header {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            margin-bottom: 1.5rem;
            padding-bottom: 1rem;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .terminal-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: #ff5f56;
        }

        .terminal-dot:nth-child(2) {
            background: #ffbd2e;
        }

        .terminal-dot:nth-child(3) {
            background: #27c93f;
        }

        .terminal-content {
            text-align: left;
            font-family: 'Fira Code', 'Courier New', monospace;
            font-size: 0.95rem;
            line-height: 1.8;
        }

        .terminal-line {
            margin: 0.5rem 0;
            opacity: 0;
            animation: typeIn 0.5s ease-out forwards;
        }

        .terminal-line:nth-child(1) { animation-delay: 0.8s; }
        .terminal-line:nth-child(2) { animation-delay: 1.2s; }
        .terminal-line:nth-child(3) { animation-delay: 1.6s; }
        .terminal-line:nth-child(4) { animation-delay: 2.0s; }

        .prompt {
            color: #00d4d4;
            font-weight: 600;
        }

        .command {
            color: #5fd4d4;
        }

        .error {
            color: #ff4646;
        }

        .warning {
            color: #ffbd2e;
        }

        .info-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
            margin-top: 3rem;
            animation: slideUp 1s ease-out 0.6s both;
        }

        .info-card {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 16px;
            padding: 1.5rem;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .info-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(0, 212, 212, 0.1), transparent);
            transition: left 0.5s ease;
        }

        .info-card:hover::before {
            left: 100%;
        }

        .info-card:hover {
            transform: translateY(-5px);
            border-color: rgba(0, 212, 212, 0.4);
            box-shadow: 0 15px 40px rgba(0, 212, 212, 0.2);
        }

        .card-icon {
            font-size: 2rem;
            margin-bottom: 0.75rem;
            filter: drop-shadow(0 0 10px rgba(0, 212, 212, 0.6));
        }

        .card-title {
            font-size: 1.1rem;
            font-weight: 700;
            color: #00d4d4;
            margin-bottom: 0.5rem;
        }

        .card-text {
            font-size: 0.9rem;
            color: #b0b0b0;
            line-height: 1.5;
        }

        .particles {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            overflow: hidden;
            z-index: 1;
            pointer-events: none;
        }

        .particle {
            position: absolute;
            background: rgba(0, 212, 212, 0.6);
            border-radius: 50%;
            animation: float-particle 15s infinite;
        }

        .social-link {
            position: relative;
            overflow: hidden;
        }

        .ripple {
            position: absolute;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.3);
            transform: scale(0);
            animation: ripple-animation 0.6s ease-out;
            pointer-events: none;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-20px); }
        }

        @keyframes glow {
            from { text-shadow: 0 0 20px rgba(0, 212, 212, 0.4); }
            to { text-shadow: 0 0 40px rgba(0, 212, 212, 0.8); }
        }

        @keyframes pulse {
            0%, 100% {
                transform: scale(1);
                opacity: 1;
            }
            50% {
                transform: scale(1.03);
                opacity: 0.95;
            }
        }

        @keyframes slideIn {
            from {
                opacity: 0;
                transform: translateX(-30px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes slideUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes typeIn {
            from {
                opacity: 0;
                transform: translateX(-10px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes float-particle {
            0%, 100% {
                transform: translate(0, 0);
                opacity: 0;
            }
            10% { opacity: 1; }
            90% { opacity: 1; }
            100% {
                transform: translate(100px, -800px);
                opacity: 0;
            }
        }

        @keyframes ripple-animation {
            to {
                transform: scale(4);
                opacity: 0;
            }
        }

        @media (max-width: 768px) {
            .title {
                font-size: 2.25rem;
            }

            .subtitle {
                font-size: 1rem;
            }

            .terminal-box {
                padding: 1.5rem;
            }

            .terminal-content {
                font-size: 0.85rem;
            }

            .info-cards {
                grid-template-columns: 1fr;
                gap: 1rem;
            }

            .logo {
                max-width: 90px;
            }

            .reserved-badge {
                padding: 0.75rem 1.5rem;
            }

            .badge-text {
                font-size: 0.95rem;
            }
        }