* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #111;
    color: #fff;
    font-family: 'Poppins', sans-serif;
}


/* NAVBAR DÜZENLEME */

.navbar {
    padding: 35px 0;
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    background: transparent !important;
}

.nav-links {
    display: flex !important;
    align-items: center;
    flex-wrap: nowrap !important;
}

.nav-links .nav-link {
    color: white !important;
    font-weight: 600;
    font-size: 15px;
    margin: 0 8px !important;
    white-space: nowrap !important;
    transition: 0.3s;
}

.nav-links .nav-link.active {
    font-weight: 700;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.nav-links .nav-link:hover {
    color: #ffea62 !important;
}

.nav-buttons {
    white-space: nowrap !important;
    flex-shrink: 0;
}


/* BUTONLAR */

.login-btn,
.register-btn {
    padding: 8px 20px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    margin-left: 10px;
    display: inline-block;
    transition: 0.3s;
}

.login-btn {
    border: 2px solid #ffd84d;
    color: #ffd84d;
}

.login-btn:hover {
    background: #ffd84d;
    color: #000;
}

.register-btn {
    background: #ffd84d;
    border: 2px solid #ffd84d;
    color: #000;
}

.register-btn:hover {
    background: transparent;
    color: #ffd84d;
}


/* HERO ALANI */

.hero {
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -2;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: -1;
}

.hero-content h1 {
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.8);
}

.play-btn {
    margin-top: 30px;
    width: 100%;
    max-width: 400px;
    /* Çok genişlememesi için sınır */
    padding: 15px;
    background: #ffd84d;
    border: none;
    border-radius: 10px;
    font-size: 20px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
}

.play-btn:hover {
    background: #ffcc00;
    transform: scale(1.05);
}


/* MOBİL AYARLAR (Bootstrap harici özel durumlar) */

@media (max-width: 992px) {
    .navbar-collapse {
        background: rgba(0, 0, 0, 0.9);
        padding: 20px;
        border-radius: 10px;
        margin-top: 15px;
    }
    .nav-buttons {
        flex-direction: column;
        gap: 10px;
        margin-top: 15px;
    }
    .nav-buttons a {
        margin-left: 0;
        text-align: center;
    }
}