/* === Fonts & Reset === */
* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Montserrat', sans-serif; }
body { background: #0a0a0a; color: #fff; overflow-x: hidden; }

/* Hero Slider */
.hero-slider { position: relative; width: 100%; height: 90vh; overflow: hidden; }
.slides { display: flex; transition: transform 0.8s ease-in-out; height: 100%; }
.slide { min-width: 100%; position: relative; height: 100%; }
.slide img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.6); }
.slide-content { position: absolute; bottom: 50px; left: 50px; max-width: 600px; }
.slide-content h2 { font-size: 3rem; font-weight: 700; margin-bottom: 15px; }
.slide-content p { font-size: 1.1rem; margin-bottom: 20px; line-height: 1.4; }
.learn-more { padding: 10px 25px; background: #00bcd4; border: none; color: #000; font-weight: 700; cursor: pointer; transition: 0.3s; }
.learn-more:hover { background: #00e5ff; }

/* Slider Controls */
.slider-controls { position: absolute; top: 50%; width: 100%; display: flex; justify-content: space-between; transform: translateY(-50%); padding: 0 20px; pointer-events: none; }
.prev, .next { font-size: 2.5rem; cursor: pointer; pointer-events: all; user-select: none; }

/* Slider Indicators */
.slider-indicators { position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%); display: flex; gap: 10px; }
.indicator { font-size: 30px; color: #00bcd4; cursor: pointer; }
.indicator.active { color: #fff; }

/* About Our Games */
.game-info { padding: 50px 20px; }
.game-info h2 { text-align: center; font-size: 2.5rem; margin-bottom: 40px; }
.info-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px; }
.info-card {
    background: rgba(255,255,255,0.05);
    border-radius: 10px;
    padding: 15px;
    position: relative;
    border: 2px solid transparent;
    transition: border 0.3s, box-shadow 0.3s;
}
.info-card img { width: 100%; height: 180px; object-fit: cover; border-radius: 8px; }

/* Hoverda mavi çizgi + ışık */
.info-card:hover {
    border: 2px solid #00bcd4;
    box-shadow: 0 0 15px rgba(0, 188, 212, 0.5);
}

/* Feedback Section */
.game-feedback { padding: 50px 20px; background: rgba(255,255,255,0.05); border-top: 1px solid #00bcd4; }
.game-feedback h2 { text-align: center; font-size: 2rem; margin-bottom: 25px; }
.game-feedback form { max-width: 500px; margin: auto; display: flex; flex-direction: column; gap: 15px; }
.game-feedback input, .game-feedback textarea, .game-feedback select { padding: 10px; border-radius: 5px; border: none; font-size: 1rem; }
.game-feedback button { background: #00bcd4; border: none; padding: 10px; font-weight: 700; cursor: pointer; transition: 0.3s; }
.game-feedback button:hover { background: #00e5ff; color: #000; }

.success, .error {
    text-align: center;
    font-weight: bold;
    margin: 15px 0;
    display: block;
}
.success { color: green; }
.error { color: red; }
