:root {
    --bg-color: #050505;
    --text-color: #ffffff;
    --accent-color: #3b82f6;
    /* Subtle blue accent */
    --font-main: 'Inter', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-main);
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    position: relative;
}

/* Subtle Background Animation */
.background-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, #0a0a1a 0%, #000000 100%);
    z-index: -1;
    animation: pulseBackground 10s infinite alternate;
}

@keyframes pulseBackground {
    0% {
        background-size: 100% 100%;
    }

    100% {
        background-size: 120% 120%;
    }
}

.container {
    position: relative;
    text-align: center;
    z-index: 1;
    opacity: 0;
    animation: fadeIn 1.5s ease-out forwards;
}

.logo {
    font-size: 4rem;
    font-weight: 600;
    letter-spacing: -0.05em;
    margin-bottom: 0.5rem;
    background: linear-gradient(to right, #fff, #aaa);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
}

.tagline {
    font-size: 1.2rem;
    font-weight: 300;
    color: #888;
    margin-bottom: 2.5rem;
    letter-spacing: 0.05em;
}

.contact-btn {
    display: inline-block;
    text-decoration: none;
    color: var(--text-color);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 12px 32px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 300;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(5px);
}

.contact-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .logo {
        font-size: 3rem;
    }

    .tagline {
        font-size: 1rem;
    }
}