/* --- Базовые стили и сброс --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-snap-type: y mandatory;
}
body {
    background-color: #121212;
    color: #e0e0e0;
    font-family: 'Montserrat', sans-serif;
}
a {
    text-decoration: none;
    transition: color 0.3s ease;
}

/* --- Стили для полноэкранных секций с GIF --- */
.full-screen-section {
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    scroll-snap-align: start;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}
.full-screen-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
}
.full-screen-section h2 {
    font-size: clamp(2rem, 8vw, 5rem);
    color: white;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
    z-index: 2;
    text-transform: uppercase;
    font-weight: 700;
}

/* --- Ссылки на GIF --- */
#why-us { background-image: url('https://media.giphy.com/media/v1.Y2lkPTc5MGI3NjExM3E1c2E5dzF5czlnaW00dGNyMmt1b3h1d2E0a3B2c2MxbTNsd2Y3MyZlcD12MV9pbnRlcm5hbF9naWZfYnlfaWQmY3Q9Zw/VbnUQpnihPSIgIXuZv/giphy.gif'); }
#what-we-offer { background-image: url('https://media.giphy.com/media/v1.Y2lkPTc5MGI3NjExZDE2MnR0OGYwMXE2cmg5MmtnZjNqZ2JpZWk5bWJqOWU5c2J0bHRzMiZlcD12MV9pbnRlcm5hbF9naWZfYnlfaWQmY3Q9Zw/g0ytf2dajqO2s/giphy.gif'); }
#about-us { background-image: url('https://media.giphy.com/media/v1.Y2lkPTc5MGI3NjExeWZ0a2s1c3F1MmVrZDRpOTdva3l2NmU5bjh3ZmJkNzF6ZmRtdmZ4cyZlcD12MV9pbnRlcm5hbF9naWZfYnlfaWQmY3Q9Zw/rAeYDYIkbTj1A3A3H5/giphy.gif'); }
/* Для новой секции "Зарабатывай" нужна новая ссылка на гифку */
#earning { background-image: url('https://media.giphy.com/media/v1.Y2lkPTc5MGI3NjExM3E1c2E5dzF5czlnaW00dGNyMmt1b3h1d2E0a3B2c2MxbTNsd2Y3MyZlcD12MV9pbnRlcm5hbF9naWZfYnlfaWQmY3Q9Zw/VbnUQpnihPSIgIXuZv/giphy.gif');}


/* --- Верхний заголовок --- */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    text-align: center;
    z-index: 10;
    background: linear-gradient(to bottom, rgba(0,0,0,0.7), transparent);
}
.main-header h1 {
    font-size: clamp(1.5rem, 5vw, 2.5rem);
    color: white;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7);
    font-weight: 700;
}

/* --- === ОБНОВЛЕННЫЕ СТИЛИ ДЛЯ ФИНАЛЬНЫХ СЕКЦИЙ === --- */
.content-section {
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background-color: #121212;
    scroll-snap-align: start;
}
.content-box {
    /* ЭТОТ БЛОК ТЕПЕРЬ ПРОСТО НЕВИДИМЫЙ КОНТЕЙНЕР ДЛЯ ЦЕНТРИРОВАНИЯ */
    width: 100%;
    max-width: 800px;
    text-align: center;
}
.content-box h2 {
    font-size: clamp(1.8rem, 6vw, 2.8rem);
    margin-bottom: 35px;
    text-transform: uppercase;
    color: #ffffff;
    font-weight: 700;
    letter-spacing: 2px;
}
.content-box p {
    margin-bottom: 20px;
}
.content-box p:last-child {
    margin-bottom: 0;
}
.content-box a {
    font-size: clamp(1rem, 3vw, 1.3rem);
    word-wrap: break-word;
    color: #4dabf7;
}
.content-box a:hover {
    color: #ffffff;
    text-decoration: none;
}
