* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    overflow: hidden;
}

.main-container {
    background-color: #2e3b4e;
    width: 100vw;
    height: 100vh;
    color: #ffffff;
    text-align: center;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.content-wrapper {
    padding: 30px;
    width: 90%;
    max-width: 900px;
    height: 98%;
    max-height: 800px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
}

.header {
    margin-bottom: 30px;
}

.logo-top {
    width: 100px;
    height: 120px;
    background-color: #2E3B4E;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 20px auto;
    position: relative;
    z-index: 1;
}

.foxfire-icon-top {
    width: 180px;
    height: 180px;
    object-fit: contain;
}


.header h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 3.5em;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.header .subtitle {
    font-size: 1.1em;
    color: rgba(176, 224, 230, 0.9);
    font-weight: 300;
}

.features {
    display: flex;
    justify-content: space-around;
    gap: 30px;
    margin-bottom: 40px;
    flex-wrap: wrap;
    flex-grow: 1;
    align-items: center;
}

.feature-item {
    flex: 1;
    min-width: 250px;
    text-align: center;
}

.feature-item .icon {
    font-size: 3.5em;
    color: #b0e0e6;
    margin-bottom: 20px;
    text-shadow: 0 0 5px rgba(176, 224, 230, 0.4);
}

.feature-item h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.3em;
    font-weight: 600;
    margin-bottom: 10px;
    color: #ffffff;
}

.feature-item p {
    font-size: 0.95em;
    line-height: 1.6;
    color: #e0e0e0;
}

.cta-buttons {
    margin-bottom: 40px;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn {
    background-color: #00bcd4;
    color: #ffffff;
    border: none;
    border-radius: 25px;
    padding: 15px 30px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1em;
    font-weight: 600;
	font-deco
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    box-shadow: 0 5px 18px rgba(0, 188, 212, 0.3);
	text-decoration: none; 
}

.btn:hover {
    background-color: #00acc1;
    transform: translateY(-2px);
}

.footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    flex-wrap: wrap;
    text-align: left;
}

.footer-left {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 0;
}

.foxfire-icon-footer {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    object-fit: contain;
    padding: 4px;
}

.footer-text p {
    font-size: 0.85em;
    line-height: 1.4;
    color: #e0e0e0;
}
.footer-text p:first-child {
    font-weight: 600;
    color: #ffffff;
}
.footer-text p:last-child {
    font-style: italic;
    font-size: 0.8em;
    color: rgba(224, 224, 224, 0.9);
}


.footer-right {
    text-align: right;
    margin-bottom: 0;
}

.social-svg-icon {
    width: 1.4em;
    height: 1.4em;
    vertical-align: middle;
    fill: #b0e0e6;
    transition: fill 0.3s ease;
}

.social-icon-link {
    display: inline-block;
    margin-left: 15px;
    vertical-align: middle;
}

.social-icon-link:hover .social-svg-icon {
    fill: #00bcd4; /* Изменение цвета SVG при наведении */
}

.social-icons .fa-brands,
.social-icons .fa-solid,
.social-icons .social-svg-icon {
    font-size: 1.4em;
    color: #b0e0e6;
    fill: #b0e0e6;
    transition: color 0.3s ease, fill 0.3s ease;
    margin-left: 15px;
}

.social-icons .social-icon-link:hover .fa-brands,
.social-icons .social-icon-link:hover .fa-solid {
    color: #00bcd4;
}

.social-icons .social-icon-link:hover .social-svg-icon {
    fill: #00bcd4;
}

.copyright {
    font-size: 0.8em;
    color: #a0a0a0;
    margin-top: 10px;
    color: rgba(160, 160, 160, 0.8);
}

/* Адаптивность */
@media (max-width: 768px) {
    .content-wrapper {
        padding: 30px 20px;
        width: 95%;
        height: auto;
        max-height: none;
    }

    .header h1 {
        font-size: 2.5em;
    }

    .features {
        flex-direction: column;
        align-items: center;
        gap: 40px;
        flex-grow: 0;
    }

    .feature-item {
        max-width: 300px;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .btn {
        width: 80%;
        max-width: 250px;
    }

    .fox-bottom-image {
        left: 20px;
        width: 150px;
        bottom: -10px;
    }

    .footer {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .footer-left, .footer-right {
        margin: 0;
        text-align: center;
        width: 100%;
        justify-content: center;
    }

    .social-icons {
        margin-bottom: 10px;
    }
    .social-icons a {
        margin: 0 8px;
    }
}

@media (max-width: 480px) {
    .content-wrapper {
        padding: 20px 15px;
    }
    .header h1 {
        font-size: 2em;
    }
    .feature-item h3 {
        font-size: 1.1em;
    }
    .feature-item p {
        font-size: 0.9em;
    }
    .fox-bottom-image {
        width: 120px;
        left: 10px;
    }
    .footer-left {
        flex-direction: column;
        gap: 5px;
    }
    .foxfire-icon-footer {
        margin-bottom: 5px;
    }
}