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

html, body {
    height: 100%;
    width: 100%;
}

body {
    background-color: #000;
    color: #fff;
    font-family: 'Archivo', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    overflow: hidden;
}

.container {
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    width: 100%;
    padding: 2rem;
    position: relative;
}

.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(3rem, 15vw, 10rem);
    font-weight: 400;
    letter-spacing: 0.02em;
    line-height: 1;
    color: #fff;
}

.divider {
    width: 180px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #fff, transparent);
    margin: 0.5rem 0;
    position: relative;
}

.divider::after {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.6), transparent);
    animation: pulse-light 4s ease-in-out infinite;
    opacity: 0;
}

@keyframes pulse-light {
    0%, 100% {
        opacity: 0;
        width: 20%;
    }
    /* First beat */
    14% {
        opacity: 0.35;
        width: 100%;
    }
    20% {
        opacity: 0.1;
        width: 60%;
    }
    /* Second beat (stronger) */
    28% {
        opacity: 0.5;
        width: 100%;
    }
    40% {
        opacity: 0;
        width: 20%;
    }
}

.tagline {
    font-family: 'Archivo', sans-serif;
    font-size: clamp(0.8rem, 2.5vw, 1.1rem);
    font-weight: 300;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.85);
}

.contact {
    position: absolute;
    bottom: 2.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
}

.contact a {
    font-family: 'Archivo', sans-serif;
    font-size: 0.85rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    letter-spacing: 0.05em;
    transition: color 0.3s ease;
}

.contact a:hover {
    color: #fff;
}

.inspired {
    position: absolute;
    top: 2rem;
    font-family: 'Comfortaa', sans-serif;
    font-size: 0.75rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.1em;
}

/* Subtle entrance animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.logo {
    animation: fadeIn 1s ease-out;
}

.divider {
    animation: fadeIn 1s ease-out 0.2s backwards;
}

.tagline {
    animation: fadeIn 1s ease-out 0.4s backwards;
}

.contact {
    animation: fadeIn 1s ease-out 0.6s backwards;
}

/* Mobile adjustments */
@media (max-width: 480px) {
    .contact {
        bottom: calc(4rem + env(safe-area-inset-bottom, 0px));
    }
    
    .contact a {
        font-size: 0.75rem;
    }
    
    .divider {
        width: 120px;
    }
}

