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

body {
    font-family: 'Outfit', sans-serif;
    background: #000000;
    color: #ffffff;
    overflow: hidden;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.container {
    width: 100%;
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.content {
    text-align: center;
    z-index: 10;
    position: relative;
    padding: 2rem;
}

.typewriter-container {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    min-height: clamp(2.5rem, 8vw, 6rem);
}

.typewriter-text {
    font-size: clamp(2.5rem, 8vw, 6rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    display: inline-block;
    background: linear-gradient(135deg, #ffffff 0%, #a0a0a0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Inter', sans-serif;
    margin: 0;
    white-space: nowrap;
}

.subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    font-weight: 300;
    color: #888888;
    margin-bottom: 3rem;
    opacity: 0;
    letter-spacing: 0.05em;
}

.loading-bar {
    width: 300px;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    margin: 0 auto;
    border-radius: 2px;
    overflow: hidden;
    opacity: 0;
}

.loading-progress {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #ffffff 0%, #666666 100%);
    border-radius: 2px;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .loading-bar {
        width: 400px;
    }

    .typewriter-container {
        min-height: clamp(2rem, 6vw, 4rem);
    }

    .typewriter-text {
        font-size: clamp(2rem, 6vw, 4rem);
    }
}