* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    overflow-x: hidden;
}



/* Slider */
.video-slider {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    overflow: hidden;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease;
}

.slide.active {
    opacity: 1;
}

.video-slide {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Butonlar */
.prev-btn, .next-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    font-size: 24px;
    padding: 10px 15px;
    cursor: pointer;
    z-index: 10;
    border-radius: 5px;
}

.prev-btn {
    left: 20px;
}

.next-btn {
    right: 20px;
}

.prev-btn:hover, .next-btn:hover {
    background: rgba(0, 0, 0, 0.8);
}

/* Navigasyon Noktaları */
.navigation {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.dot.active {
    background-color: rgba(255, 255, 255, 1);
}

/* İçerik */
.content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 5;
}

.content h1 {
    font-size: 40px; /* Başlık boyutunu küçülttük */
    color: white;
    margin-bottom: 20px;
}

.content a {
    display: inline-block;
    padding: 10px 25px; /* Butonları küçülttük */
    margin: 10px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 16px; /* Yazı boyutunu küçülttük */
    transition: transform 0.3s;
}

.content .primary-btn {
    background: white;
    color: black;
}

.content .secondary-btn {
    background: rgba(18, 98, 251, 0.95);
    color: white;
}

.content a:hover {
    transform: scale(1.1);
}
