/* Стили для главной страницы */

body {
    margin: 0;
    padding: 0;
    width: 100vw;
    height: 100vh;
    max-width: none;
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
    overflow: hidden;
}

.home-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100vh;
    padding: 40px 20px;
    text-align: center;
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
}

.home-content {
    max-width: 700px;
    width: 100%;
    background: white;
    padding: 60px 40px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.banner-container {
    width: 100%;
    margin-bottom: 2rem;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.banner-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.site-title {
    font-family: 'Reddit Mono', monospace;
    font-size: 2.8rem;
    font-weight: 600;
    color: #2c2c2c;
    margin: 0 0 1.5rem 0;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.site-description {
    font-size: 1.2rem;
    color: #666;
    margin: 0;
    line-height: 1.7;
    font-weight: 400;
}

/* Адаптивность для мобильных устройств */
@media (max-width: 768px) {
    .home-container {
        padding: 20px;
    }

    .home-content {
        padding: 40px 30px;
    }
    
    .banner-container {
        margin-bottom: 1.5rem;
    }
    
    .site-title {
        font-size: 2rem;
    }
    
    .site-description {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .home-content {
        padding: 30px 20px;
    }

    .banner-container {
        margin-bottom: 1rem;
    }

    .site-title {
        font-size: 1.6rem;
    }
    
    .site-description {
        font-size: 1rem;
    }
}

