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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    height: 100vh;
    overflow: hidden;
    background: #f0f4f8;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Particles container */
#particles-js {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
}

/* Main Content */
.content-container {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 3rem;
    max-width: 600px;
    animation: fadeInUp 1.2s ease-out;
    background: transparent;
    border-radius: 20px;
}

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

.logo {
    font-size: 3.5rem;
    font-weight: 100;
    color: #fff;
    letter-spacing: 0.08em;
    margin-bottom: 0.5rem;
    position: relative;
    text-transform: uppercase;
}

/* For logo image */
img.logo {
    width: auto;
    max-width: 90%;
    height: auto;
    max-height: 120px;
    display: block;
    margin: 0 auto 0.5rem;
    object-fit: contain;
}

.logo::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #0088cc, transparent);
    animation: pulse 2.5s infinite;
}

@keyframes pulse {
    0%, 100% { 
        opacity: 0.3; 
        transform: translateX(-50%) scaleX(0.5); 
    }
    50% { 
        opacity: 1; 
        transform: translateX(-50%) scaleX(1.2); 
    }
}

.tagline {
    font-size: 1.1rem;
    color: rgba(0, 0, 0, 0.7);
    font-weight: 300;
    margin: 2rem 0 1rem;
    letter-spacing: 0.05em;
}

.status {
    display: inline-block;
    font-size: 1.8rem;
    font-weight: 300;
    color: #0088cc;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    margin: 2.5rem 0;
    position: relative;
    padding: 0.5rem 0;
}

.status::before,
.status::after {
    content: '';
    position: absolute;
    height: 1px;
    width: 40px;
    background: linear-gradient(90deg, transparent, #0088cc);
    top: 50%;
    transform: translateY(-50%);
}

.status::before {
    left: -60px;
    background: linear-gradient(90deg, transparent, #0088cc);
}

.status::after {
    right: -60px;
    background: linear-gradient(270deg, transparent, #0088cc);
}

.contact {
    margin-top: 3rem;
    padding-top: 2.5rem;
}

.contact-label {
    font-size: 0.85rem;
    color: rgba(0, 0, 0, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 1rem;
    font-weight: 500;
}

.email-link {
    color: #0088cc;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 400;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
    position: relative;
    padding: 0.75rem 1.5rem;
    letter-spacing: 0.02em;
}

.email-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #0088cc, #0066aa);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateX(-50%);
}

.email-link:hover {
    color: #004477;
    transform: translateY(-3px);
    text-shadow: 0 10px 20px rgba(0, 136, 204, 0.2);
}

.email-link:hover::before {
    width: 100%;
}

/* Responsive adjustments */
@media (max-width: 640px) {
    .logo {
        font-size: 2.5rem;
    }
    
    img.logo {
        max-height: 70px;
        max-width: 85%;
    }
    
    .status {
        font-size: 1.4rem;
    }
    
    .status::before,
    .status::after {
        width: 30px;
    }
    
    .status::before {
        left: -45px;
    }
    
    .status::after {
        right: -45px;
    }
    
    .content-container {
        padding: 2rem;
        margin: 1rem;
        background: transparent;
    }

    .tagline {
        font-size: 1rem;
    }

    .email-link {
        font-size: 1.1rem;
    }
}

/* Gradient overlay for depth */
.gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, transparent 0%, rgba(10, 14, 39, 0.4) 100%);
    z-index: 2;
    pointer-events: none;
}