﻿body {
    font-family: 'Montserrat', sans-serif;
    background-color: #1a1a1a;
    margin: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background-image: url('../img/wallpaper.png'); 
    background-repeat: no-repeat; 
    background-size: cover; 
    background-attachment: fixed; 
    background-position: center; 

}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #000f;
    padding: 10px 20px;
    color: white;
    position: sticky; 
    top: 0; 
    z-index: 1000; 
}


nav ul {
    display: flex;
    list-style-type: none;
    gap: 20px;
    font-size: 18px;
    margin-right: 20px;
}


nav a {
    text-decoration: none;
    color: white;
    padding: 8px 16px;
    border: 2px solid transparent;
    border-radius: 20px;
    transition: all 0.3s ease;
    border-color: #1F1F1F;
}

nav a:hover {
    background-color: rgba(255, 255, 255, 0.1); 
    border-color: white; 
    color: #fff;

    }

.logo {
    max-width: 100px;
    margin-left: 20px;
}

.logo img{
    max-width: 100%; 
    height: auto;
}


footer {
    background-color: #000; 
    color: #888; 
    text-align: center; 
    padding: 40px 20px; 
    margin-top: 60px; 
}

    footer p {
        margin: 0 0 15px 0;
        font-size: 14px;
        padding-top: 20px;
    }

.footer-linkler {
    display: flex; 
    justify-content: center; 
    gap: 20px; 
}

 .footer-linkler a {
        color: white;
        text-decoration: none; 
        font-weight: 700; 
        font-size: 14px;
 }

    
main {
    flex: 1;
}


.Assets {
    background: #1A1A1A;
    margin: 60px auto;
    max-width: 1200px;
    border-radius: 10px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7);
    display: block;
    text-align: left; 
    padding: 30px 40px;
}

   
    .Assets h2 {
        text-align: center; 
        margin-top: 0; 
        color: #ffffff;
        font-size: 32px;
        font-weight: 700;
    }
.assets1 {
    background: #000f;
    margin: 40px auto;
    max-width: 100px;
    border-radius: 10px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7);
    display: block;
    text-align: left;
    padding: 30px 40px;
}


.carousel-track {
    display: flex; 
    gap: 20px; 
    overflow-x: auto; 
    padding-bottom: 20px; 
    
    scroll-snap-type: x mandatory;
}

   
    .carousel-track .yt-card {
        flex: 0 0 320px; 
        scroll-snap-align: start; 
    }

    
    .carousel-track::-webkit-scrollbar {
        height: 8px; 
    }

    .carousel-track::-webkit-scrollbar-track {
        background: rgba(255, 255, 255, 0.05); 
        border-radius: 10px;
    }

    .carousel-track::-webkit-scrollbar-thumb {
        background: rgba(255, 255, 255, 0.2); 
        border-radius: 10px;
    }

        .carousel-track::-webkit-scrollbar-thumb:hover {
            background: rgba(255, 255, 255, 0.4);
        }


.empty-state {
    text-align: center;
    color: #666666; 
    font-size: 16px;
    padding: 60px 20px; 
    font-style: italic;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 12px;
    border: 1px dashed rgba(255, 255, 255, 0.1); 
}

.Support {
    background: #1A1A1A;
    margin: 40px auto;
    max-width: 1200px;
    border-radius: 10px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7);
    display: block;
    text-align: left;
    padding: 30px 40px;
}
    
    .Support h2 {
        text-align: center;
        margin-top: 0;
        color: #ffffff;
        font-size: 32px;
        font-weight: 700;
    }

    .Support h3 {
        text-align: center;
        margin-top: 0;
        color: #C7C7C7;
        font-size: 18px;
        font-weight: 700;
    }


.social-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}


.socialmedia {
    width: 110px; 
    height: 110px;
    display: flex;
    flex-direction: column; 
    align-items: center;
    justify-content: center;
    gap: 10px; 

    background-color: #222222;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    text-decoration: none; 
}

   
    .socialmedia:hover {
        transform: translateY(-8px);
        background-color: #333333;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
    }

  
    .socialmedia img {
        width: 40px; 
        height: 40px;
        object-fit: contain;
    }

   
    .socialmedia span {
        color: #aaaaaa; 
        font-size: 13px; 
        font-weight: 600;
    }

   
    .socialmedia:hover span {
        color: #ffffff;
    }


.hero-slider {
    position: relative;
    width: 100%;
    max-width: 1300px;
    height: 500px; 
    margin: 40px auto;
    border-radius: 16px;
    overflow: hidden; 
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}


.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0; 
    transition: opacity 0.8s ease-in-out; 
}

 
    .slide.active {
        opacity: 1;
        z-index: 1;
    }

    
    .slide img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }


.slide-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 60px 40px;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0) 100%);
    box-sizing: border-box;
    text-align: left;
}


    .slide-content .badge {
        background: #ffffff;
        color: #000000;
        padding: 4px 8px;
        font-size: 12px;
        font-weight: 800;
        border-radius: 4px;
        letter-spacing: 1px;
    }

    .slide-content h2 {
        color: #ffffff;
        font-size: 42px;
        margin: 15px 0 10px 0;
    }

    .slide-content p {
        color: #cccccc;
        font-size: 18px;
        max-width: 600px;
        margin-bottom: 25px;
    }


.slider-btn {
    display: inline-block;
    background-color: dimgrey; 
    color: #ffffff;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s;
}

    .slider-btn:hover {
        background-color: #007acc;
    }

/* ALT NOKTALAR (Dots) */
.slider-dots {
    position: absolute;
    bottom: 20px;
    width: 100%;
    text-align: center;
    z-index: 2;
}

.dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
    transition: background 0.3s;
}

    .dot.active, .dot:hover {
        background-color: #ffffff; /* Aktif olan nokta bembeyaz parlar */
    }

.prev-arrow, .next-arrow {
    cursor: pointer;
    position: absolute;
    top: 50%; /* Dikeyde tam ortaya hizalar */
    transform: translateY(-50%);
    padding: 16px 20px;
    color: white;
    font-size: 24px;
    font-weight: bold;
    transition: background-color 0.3s ease;
    border-radius: 0 8px 8px 0; /* Sadece sağ köşeleri kavisli yapar */
    user-select: none; /* Üstüne çift tıklanınca metin gibi seçilmeyi engeller */
    z-index: 10; /* Yazıların ve resimlerin her zaman üstünde kalmasını sağlar */
    background-color: rgba(0, 0, 0, 0.1); /* Standart halinde çok hafif bir gölge */
}

/* Sağ Oku en sağa yaslamak için ve kavis yönünü değiştirmek için */
.next-arrow {
    right: 0;
    border-radius: 8px 0 0 8px;
}
.prev-arrow, .next-arrow {
    /* ... diğer ayarların ... */
    cursor: pointer;
    z-index: 10; /* SİHİRLİ KOD: Okları en ön plana çıkarır */
}

    /* Farenin imlecini okun üstüne getirince */
    .prev-arrow:hover, .next-arrow:hover {
        background-color: rgba(0, 0, 0, 0.8); /* Arka plan koyulaşır, buton belirginleşir */
    }