* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
}

body {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    padding: 20px;
    position: relative;
    overflow: hidden;
}

.background-text {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    opacity: 0.06;
    overflow: hidden;
}

.text-row {
    position: absolute;
    white-space: nowrap;
    display: flex;
    gap: 50px;
    animation: flowText var(--flow-time, 60s) linear infinite;
    animation-delay: var(--flow-delay, 0s);
}

.floating-text {
    color: #000;
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 1rem;
}

@keyframes flowText {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}

.text-row.reverse {
    animation-name: flowTextReverse;
}

@keyframes flowTextReverse {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

.content-wrapper {
    width: 100%;
    max-width: 600px;
    position: relative;
    z-index: 1;
}

.logo-container {
    background: white;
    padding: 3rem 2rem;
    border-radius: 20px;
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.05),
        0 1px 8px rgba(0, 0, 0, 0.02);
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.logo-container:hover {
    transform: translateY(-5px);
}

.logo {
    width: 100%;
    max-width: 400px;
    height: auto;
    display: block;
    margin-bottom: 1.4rem;
}

.tagline-container {
    text-align: center;
    margin-bottom: 2.5rem;
    padding: 0 1rem;
}

.tagline {
    font-size: 1rem;
    line-height: 1.5;
    color: #2c3e50;
    font-weight: 400;
    letter-spacing: 0.01em;
}

.cities {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-top: 1rem;
    position: relative;
    padding-top: 2rem;
    width: 100%;
}

.cities::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #0072ED;
    border-radius: 2px;
}

.city {
    color: #2c3e50;
    font-size: 1.1rem;
    padding: 0.5rem 1rem;
    background: rgba(0, 114, 237, 0.05);
    border-radius: 20px;
    transition: all 0.3s ease;
    font-weight: 400;
}

.city:hover {
    background: rgba(0, 114, 237, 0.1);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .logo-container {
        padding: 2rem 1.5rem;
    }
    
    .logo {
        max-width: 300px;
        margin-bottom: 1.2rem;
    }

    .tagline {
        font-size: 0.95rem;
    }

    .cities {
        gap: 1rem;
    }

    .city {
        font-size: 1rem;
        padding: 0.4rem 0.8rem;
    }

    .floating-text {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    body {
        padding: 15px;
    }

    .logo-container {
        padding: 1.5rem 1rem;
    }
    
    .logo {
        max-width: 240px;
        margin-bottom: 1rem;
    }

    .tagline {
        font-size: 0.9rem;
        padding: 0;
    }

    .cities {
        flex-direction: column;
        align-items: center;
        gap: 0.8rem;
    }

    .city {
        width: 100%;
        text-align: center;
        padding: 0.5rem 1rem;
    }

    .floating-text {
        font-size: 0.75rem;
    }
} 