* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', sans-serif;
        }
        
        body {
            background-color: #00091b;
            color: #fff;
            min-height: 100vh;
            display: flex;
            justify-content: center;
            align-items: center;
            position: relative;
        }
        
        .stars {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 0;
        }
        
        .star {
            position: absolute;
            background-color: rgba(255, 255, 255, 0.7);
            border-radius: 50%;
            animation: twinkle 4s infinite;
        }
        
        @keyframes twinkle {
            0% { opacity: 0; }
            50% { opacity: 1; }
            100% { opacity: 0; }
        }
        
        .container {
            max-width: 800px;
            text-align: center;
            position: relative;
            z-index: 1;
            padding: 2rem;
            backdrop-filter: blur(5px);
            border-radius: 20px;
            border: 1px solid rgba(246, 146, 30, 0.2);
            box-shadow: 0 0 30px rgba(246, 146, 30, 0.1);
            animation: pulse 3s infinite;
        }
        
        @keyframes pulse {
            0% { box-shadow: 0 0 15px rgba(246, 146, 30, 0.1); }
            50% { box-shadow: 0 0 30px rgba(246, 146, 30, 0.3); }
            100% { box-shadow: 0 0 15px rgba(246, 146, 30, 0.1); }
        }
        
        .logo {
            margin-bottom: 2rem;
            animation: float 6s ease-in-out infinite;
        }
        
        @keyframes float {
            0% { transform: translateY(0px); }
            50% { transform: translateY(-20px); }
            100% { transform: translateY(0px); }
        }
        
        .logo img {
            max-width: 200px;
            height: auto;
        }
        
        h2 {
            color: #f6921e;
            font-size: 1.5rem;
            margin-bottom: 0.5rem;
            position: relative;
            display: inline-block;
        }
        
        h1::after {
            content: '';
            position: absolute;
            width: 100%;
            height: 3px;
            background-color: #f6921e;
            bottom: -5px;
            left: 0;
            animation: widthAnim 4s ease-in-out infinite;
        }
        
        @keyframes widthAnim {
            0% { width: 0; }
            50% { width: 100%; }
            100% { width: 0; }
        }
        
        p {
            margin-bottom: 1rem;
            font-size: 1rem;
            line-height: 1.6;
        }
        
        .timer {
            font-size: 3rem;
            margin: 2rem 0;
            color: #f6921e;
            font-weight: bold;
        }
        
        .server {
            display: flex;
            justify-content: center;
            margin: 2rem 0;
        }
        
        .server-rack {
            width: 100px;
            height: 150px;
            background-color: rgba(20, 30, 60, 0.8);
            border-radius: 5px;
            position: relative;
            display: flex;
            flex-direction: column;
            justify-content: space-around;
            padding: 10px;
            border: 2px solid rgba(246, 146, 30, 0.5);
        }
        
        .server-light {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background-color: #f6921e;
            position: absolute;
            top: 10px;
            right: 10px;
            animation: blink 1s infinite;
        }
        
        @keyframes blink {
            0% { opacity: 0; }
            50% { opacity: 1; }
            100% { opacity: 0; }
        }
        
        .server-unit {
            width: 100%;
            height: 15px;
            background-color: rgba(246, 146, 30, 0.2);
            border-radius: 3px;
            position: relative;
            overflow: hidden;
        }
        
        .server-unit::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 0;
            width: 0;
            height: 2px;
            background-color: #f6921e;
            animation: dataTransfer 3s infinite;
        }
        
        @keyframes dataTransfer {
            0% { width: 0; left: 0; }
            50% { width: 100%; left: 0; }
            50.1% { width: 100%; left: auto; right: 0; }
            100% { width: 0; left: auto; right: 0; }
        }
        
        .contact {
            margin-top: 2rem;
        }
        
        .contact a {
            color: #f6921e;
            text-decoration: none;
            font-weight: bold;
            position: relative;
            padding: 5px 10px;
            border-radius: 5px;
            background-color: rgba(246, 146, 30, 0.1);
            transition: all 0.3s ease;
        }
        
        .contact a:hover {
            background-color: rgba(246, 146, 30, 0.3);
            text-decoration: underline;
        }
        
        .loading-bar {
            height: 10px;
            width: 80%;
            margin: 1.5rem auto;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 5px;
            overflow: hidden;
            position: relative;
        }
        
        .loading-bar::before {
            content: '';
            position: absolute;
            left: -50%;
            height: 100%;
            width: 50%;
            background: linear-gradient(to right, transparent, #f6921e, transparent);
            animation: loading 2s infinite linear;
        }
        
        @keyframes loading {
            0% { left: -50%; }
            100% { left: 150%; }
        }
        
        .social-links {
            margin-top: 1.5rem;
            display: flex;
            justify-content: center;
            gap: 15px;
        }
        
        .social-links a {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            background-color: rgba(246, 146, 30, 0.2);
            color: #f6921e;
            font-size: 20px;
            transition: all 0.3s ease;
        }
        
        .social-links a:hover {
            background-color: rgba(246, 146, 30, 0.4);
            transform: translateY(-5px);
        }