.games-section {
    padding: clamp(3rem, 5vw, 5rem) 1rem;
    background-color: #e60012;
    text-align: center;
}

.section-subtitle {
    text-align: center;
    margin-bottom: clamp(2rem, 4vw, 3rem);
    font-size: clamp(0.9rem, 1.1vw, 1.1rem);
    padding: 0 1rem;
}



.games-slider {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: clamp(10px, 2vw, 20px);
}

.games-slider-container {
    display: flex;
    transition: transform 0.5s ease;
}

.game-slide {
    display: flex;
    flex-direction: column;
    min-width: 100%;
    background: rgb(0, 0, 0);
    overflow: hidden;
}

.game-image {
    flex: 1;
    padding: clamp(1rem, 2vw, 1.5rem);
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.game-image img {
    width: 100%;
    max-width: 500px;
    height: auto;
    max-height: none;
    border-radius: clamp(5px, 1vw, 8px);
    object-fit: contain;
}

.game-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: clamp(1rem, 2vw, 1.5rem);
    margin: 0;
}

.game-content h3 {
    font-size: clamp(1.3rem, 1.8vw, 1.8rem);
    color: var(--text-light);
    margin-bottom: clamp(0.8rem, 1.5vw, 1rem);
    text-align: center;
}

.stars {
    color: #f39c12;
    font-size: clamp(1rem, 1.5vw, 1.5rem);
    text-align: center;
    margin-bottom: clamp(0.8rem, 1.5vw, 1rem);
}

.game-content p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: clamp(1rem, 2vw, 1.5rem);
    font-size: clamp(0.9rem, 1.1vw, 1rem);
    text-align: center;
}

.game-features {
    margin-bottom: clamp(1.5rem, 3vw, 2rem);
    padding-left: 0;
    list-style-position: inside;
}

.game-features li {
    font-size: clamp(0.8rem, 1vw, 1rem) !important;
    margin-bottom: 0.5rem;
    color: var(--text-light);
    text-align: center;
    list-style-type: none;
}

.game-features li:before {
    content: "•";
    color: var(--text-light);
    font-weight: bold;
    margin-right: 0.5rem;
}

.play-button {
    align-self: center;
    padding: clamp(0.8rem, 1.2vw, 1rem) clamp(1.5rem, 3vw, 2rem);
    background-color: #e60012;
    color: white;
    border: none;
    border-radius: 30px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 0;
    font-size: clamp(0.9rem, 1.1vw, 1.1rem);
    width: auto;
}

.play-button:hover {
    background-color: #ba0111;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Slider Controls */
.slider-prev,
.slider-next {
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
    border: none;
    font-size: clamp(2rem, 6vw, 4rem);
    color: var(--text-light);
    cursor: pointer;
    z-index: 10;
    background: transparent;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.slider-prev:hover,
.slider-next:hover {
    opacity: 1;
}

.slider-prev {
    left: clamp(0.5rem, 1vw, 1rem);
}

.slider-next {
    right: clamp(0.5rem, 1vw, 1rem);
}

/* Responsive Düzenlemeler */
@media (min-width: 768px) {
    .game-slide {
        flex-direction: row;
    }
    
    .game-image {
        margin: clamp(1rem, 2vw, 1.5rem) 0 clamp(1rem, 2vw, 1.5rem) clamp(2rem, 4vw, 4rem);
    }
    
    .game-content {
        margin: clamp(1rem, 2vw, 1.5rem) clamp(2rem, 4vw, 4rem) clamp(1rem, 2vw, 1.5rem) 0;
        text-align: left;
    }
    
    .game-content h3,
    .game-content p,
    .stars {
        text-align: left;
    }
    
    .game-features li {
        text-align: left;
    }
    
    .play-button {
        align-self: flex-start;
    }
}

@media (max-width: 480px) {
    .game-features {
        padding-left: 1rem;
    }
    
    .game-features li {
        text-align: left;
    }
    
    .slider-prev,
    .slider-next {
        font-size: 2.5rem;
    }
}