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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: #ffffff;
    min-height: 100vh;
    background-attachment: fixed;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('background.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    filter: blur(8px);
    z-index: -1;
    transform: scale(1.1);
}

.page-container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 1;
}

/* Шапка с фоновым изображением */
.header {
    position: relative;
    width: 100%;
    height: 120px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('header-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: brightness(1.1);
}

/* Если изображение не загрузится, будет белый фон */
.header-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ffffff;
    z-index: -1;
}

/* Контейнер для логотипа */
.logo-container {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo {
    max-width: 100px;
    max-height: 100px;
    width: auto;
    height: auto;
    object-fit: contain;
}

/* Основное содержимое */
.content {
    flex: 1;
    padding: 60px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 50px;
}

.review-title {
    font-size: 48px;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    letter-spacing: 1px;
}

/* Контейнер для кнопок соцсетей */
.social-buttons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    width: 100%;
    max-width: 900px;
}

/* Кнопки соцсетей */
.social-button {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 30px 20px;
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 20px;
    text-decoration: none;
    color: #333;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    cursor: pointer;
}

.social-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
    background: #ffffff;
    border-color: #d0d0d0;
}

.social-button:active {
    transform: translateY(-2px);
}

/* Иконка соцсети */
.social-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666666;
}

.social-icon svg {
    width: 100%;
    height: 100%;
}

.social-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Увеличенная иконка для Фламп */
#flamp-button .social-icon {
    width: 100px;
    height: 70px;
}

#flamp-button .social-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Название соцсети */
.social-name {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    text-align: center;
}

/* Адаптивность */
@media (max-width: 768px) {
    .header {
        height: 100px;
    }

    .logo {
        max-width: 80px;
        max-height: 80px;
    }

    .content {
        padding: 40px 20px;
        gap: 40px;
    }

    .review-title {
        font-size: 36px;
    }

    .social-buttons {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .social-button {
        padding: 25px 15px;
    }

    .social-icon {
        width: 50px;
        height: 50px;
    }

    .social-name {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .header {
        height: 80px;
    }

    .logo {
        max-width: 70px;
        max-height: 70px;
    }

    .review-title {
        font-size: 28px;
    }

    .social-buttons {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

