* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    height: 100vh;
    overflow: hidden;
}

.container {
    width: 100%;
    height: 100vh;
    background-image: url('./img/background-min.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: left;
    position: relative;
}

.container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.content {
    text-align: left;
    color: white;
    z-index: 2;
    position: relative;
    max-width: 800px;
    padding: 0 20px;
    margin-left: 160px;
}

.logo {
    max-width: 100%;
    height: auto;
    max-height: 40vh;
    width: auto;
    filter: drop-shadow(2px 2px 8px rgba(0, 0, 0, 0.3));
    margin-bottom: 2rem;
}

.main-title {
    font-size: clamp(2rem, 6vw, 4rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    letter-spacing: -0.02em;
    color: white;
}

.subtitle {
    font-size: clamp(1rem, 2.5vw, 1.5rem);
    font-weight: 300;
    opacity: 0.9;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    letter-spacing: 0.02em;
    color: white;
}

/* Адаптивность для мобильных устройств */
@media (max-width: 768px) {
    .content {
        padding: 0 15px;
    }
    
    .logo {
        max-height: 30vh;
        margin-bottom: 1.5rem;
    }
    
    .main-title {
        margin-bottom: 0.8rem;
    }
}

@media (max-width: 480px) {
    .logo {
        max-height: 25vh;
        margin-bottom: 1rem;
    }
    
    .main-title {
        margin-bottom: 0.6rem;
    }
}
