body, html {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-color: #000;
}

.container {
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 40px;
}


header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    text-align: center;
    padding: 15px;
    z-index: 1000;
}

main {
    margin-top: 110px;
}

section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

section p {
    font-size: clamp(0.875rem, 0.693rem + 0.909vw, 1.375rem);
    line-height: 1.4;
}


.section-img {
    max-width: 300px;
    margin: 10px;
    }

.section-img1 {
        max-width: 60%;
        margin-top: 40px;
        margin-bottom: 40px;
        }


.hero {
        background: linear-gradient(to bottom, rgba(0, 0, 0, 0.9), transparent), 
                    url("/1.png") center center no-repeat;
        background-size: cover;
        text-shadow: 2px 2px 5px black;
    }
    
    /* background: linear-gradient(135deg, #1a1a2e, #16213e); */

.hero h2 {
    font-size: 40px;
}

.hero p {
    font-size: 28px;
    /* text-shadow: 2px 2px 5px black; */
}

.hero .container {
    background: radial-gradient(circle, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0) 100%);
}


.section1 {
    padding: 40px 0;
    background: linear-gradient(135deg, #0f3460, #16213e);
}



.section1 h2 {
    margin-bottom: 40px;
}

.section1 p {
    max-width: 800px;
    font-size: clamp(0.875rem, 0.693rem + 0.909vw, 1.375rem);
    
}



/* Секция 2 */

.section2 {
    background: linear-gradient(135deg, #533483, #0f3460);
    padding-bottom: 20px;
}

.section2 h3 {
    font-size: clamp(0.875rem, 0.693rem + 0.909vw, 1.5rem);
}

.section2 p {
    text-align: left;
    position: relative;
    padding-left: 20px; /* Отступ для кружка */
}

.section2 img {
    max-width: 30%;
        
        margin-bottom: 40px;
}

/* .section2 p::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 8px; 
    height: 8px;
    background-color: white;
    border-radius: 50%;
    transform: translateY(-50%);
} */



.pros-and-cons {
    display: flex;
    gap: 60px;
   
}

.pros-and-cons p {
    font-size: 23px;
    padding-right: 120px;
    padding-top: 10px;
}

@media (max-width: 1100px) {
    .pros-and-cons {
        flex-wrap: wrap;
        gap: 20px;
    }
    
}



.section3 {
    background: linear-gradient(135deg, #e94560, #533483);
    font-size: clamp(0.875rem, 0.693rem + 0.909vw, 1.375rem);
    min-height: 50vh;
  
}

.play-button {
    display: inline-block;
    background: #ffcc00;
    color: #333;
    padding: 15px 30px;
    margin-top: 20px;
    margin-bottom: 20px;
    text-decoration: none;
    font-size: 20px;
    border-radius: 5px;
    transition: background 0.3s;
}

.play-button:hover {
    background: #ffaa00;
}

footer {
    text-align: center;
    padding: 20px;
    background: #222;
    color: white;
}