.gameplay-section {
    min-height: 100vh;
    padding-top: 80px;
    background-color: var(--darker);
}

.gameplay-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.gameplay-intro {
    text-align: center;
    font-size: 1.2rem;
    color: var(--light);
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-top: 2rem;
}

.feature-item {
    display: flex;
    background: rgba(62, 58, 55, 0.7);
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid var(--copper);
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.feature-item:hover {
    transform: translateY(-5px);
    border-color: var(--brass);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.feature-image {
    flex: 0 0 300px;
    min-height: 250px;
}

.feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-right: 2px solid var(--copper);
}

.feature-content {
    flex: 1;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.feature-content h3 {
    color: var(--brass);
    font-size: 1.8rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.feature-content h3 i {
    color: var(--copper);
}

.feature-content p {
    color: #d4c4a8;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.6;
}

.feature-details {
    list-style: none;
    padding: 0;
}

.feature-details li {
    color: var(--light);
    margin-bottom: 0.8rem;
    padding-left: 1.8rem;
    position: relative;
    font-size: 1rem;
}

.feature-details li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--brass);
    font-weight: bold;
    font-size: 1.1rem;
}

.back-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--brass);
    text-decoration: none;
    margin-bottom: 2rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.back-button:hover {
    gap: 15px;
    color: var(--light);
}

/* Адаптивность для мобильных устройств */
@media (max-width: 768px) {
    .feature-item {
        flex-direction: column;
    }
    
    .feature-image {
        flex: 0 0 200px;
        min-height: 200px;
        width: 100%;
    }
    
    .feature-image img {
        border-right: none;
        border-bottom: 2px solid var(--copper);
    }
    
    .feature-content {
        padding: 1.5rem;
    }
    
    .feature-content h3 {
        font-size: 1.5rem;
    }
    
    .gameplay-container {
        padding: 1rem;
    }
}