*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins",sans-serif;
}

body{
    background-color: black;
    min-height: 100vh;
    height: 100%;
}

.spinner-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh; /* Tüm ekran boyutu için */
    background-color: rgba(0, 0, 0, 0.8); /* Hafif bir arka plan */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 200; /* Üstte olması için */
}

.spinner-border {
    width: 3rem;
    height: 3rem;
    border-width: 0.3rem;
}

.header{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 100px;
    background-color: transparent;
    display: flex ;
    justify-content: space-between;
    align-items: center;
    z-index: 100;

    transition: top 0.3s ease-in-out;
}

.logo{
    font-size: 32px;
    color: white;
    text-decoration: none;
    font-weight: 700;
}

.logo:hover{
    text-decoration: none;
    color: #fff;
}

.navbar a{
    position: relative;
    font-size: 18px;

    color: white;
    
    font-weight: 500;
    text-decoration: none;
    margin-left: 30px;
}

.navbar a::before{
    content: '';
    position: absolute;
    top: 100%;

    left: 0;
    width: 0;
    height: 2px;

    background: #fff;
    transition: 0.5s;
}

.navbar a:hover::before{
    width: 100%;
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-toggle {
    cursor: pointer;
    font-size: 18px;
    color: white;
    text-decoration: none;
    margin-left: 30px;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: black;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    z-index: 10;
}

.dropdown-menu a {
    display: inline-block;
    padding: 15px 20px;
    color: white;
    text-decoration: none;
    font-size: 16px;
}

.dropdown-menu a:hover {
    background-color: #555;
    transition: 0.2s;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

#btn-1{
    width: 100px;

    height: 30px;

    margin-left: 10px;

    border: 1px solid #fff;

    background-color: transparent;

    color: #fff;

    border-radius: 9px;

    font-family: arial;

    font-size: 14px;

}

#btn-1:hover{
    cursor: pointer;

    transform: scale(1.05);

    transition: 0.5s;

    background-color: #fff;

    color: black;
}

.container {
    width: 1400px;
    height: 370px;
    margin: auto;
    margin-top: 120px;

    display: flex;
    justify-content: space-between; 
    align-items: center; 
}

.content {
    background-color: transparent;
    border: 1px solid #fff;

    padding: 20px;
    margin-top: 10px;
    width: 600px;
    height: 350px;
    border-radius: 20px;

    float: left;
    animation: fadeIn 1s ease-in-out;
}

.content-2 {
    background-color: transparent;
    border: 1px solid #fff;
    width: 600px;
    padding: 20px;
    height: 350px;
    border-radius: 20px;
    float: left;
    margin-left: 20px; /* İki div arasında boşluk */
    margin-top: 10px;

    animation: fadeIn 1s ease-in-out;
}

.gt-bilgi{
    font-size: 13px;
    text-align: center;
    line-height: 15px;
    margin-top: 8px;

    text-shadow: white 1px 1px 15px ;
}

#gt-bilgi{
    font-size: 15px;
    text-align: center;
    color: aqua;
}

.carousel{
    width: 1000px;
    margin: auto;

    margin-top: 80px;
}

@keyframes fadeIn {
    from {
      opacity: 0;
      transform: scale(0.9);
    }
    to {
      opacity: 1;
      transform: scale(1);
    }
  }

.content:hover{
    transform: translateY(-5px);
    transition: 0.5s;
}

.content-2:hover{
    transform: translateY(-5px);
    transition: 0.5s;
}

.new{
    font-size: 25px;
    font-family: arial;
    display: inline;

}

#title{
    text-align: center;
    line-height: 0px;
    font-family: sans-serif;
    font-weight: bolder;
    font-size: 18px;
}

.icon{
    width: 45px;
}

.icon-div{
    width: 145px;
    margin: auto;
    margin-top: 30px;
}

#mp-3{
    text-align: center;
    line-height: 0px;
    font-family: sans-serif;
    font-weight: bolder;
    font-size: 18px;
}

#bilgi{
    line-height: 30px;
    text-align: center;

    font-size: 15px;

    text-shadow: white 1px 1px 15px ;
}

#bilgi-2{
    text-align: center;
    line-height: 50px;
    font-size: 20px;
    color: blue;

    text-shadow: blue 1px 1px 15px ;
}

#mp-btn{
    background-color: transparent;

    border: 1px solid #fff;

    width: 150px;
    height: 40px;

    color: #fff;

    border-radius: 12px;
}

#mp-btn:hover{
    background-color: #fff;
    color: black;

    cursor: pointer;

    transform: scale(1.05);

    transition: 0.2s;
}

#mp-btn:active{
    transform: scale(0.85);
}

.content-btn{
    width: 150px;
    height: 40px;

    margin: auto;

    margin-top: 40px;
    
}

/* Mobil Uyumlu Yapı */
@media (max-width: 768px) {
    .spinner-border {
        width: 2rem;
        height: 2rem;
        border-width: 0.2rem;
    }
    .header {
        flex-direction: column;
        align-items: center;
        padding: 10px;
    }

    .logo {
        font-size: 20px;
        margin-bottom: 10px;
    }

    .navbar {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .navbar a {
        font-size: 16px;
        margin: 5px 0;
    }

    .dropdown-menu {
        position: static;
        width: 100%;
        text-align: center;
    }

    .dropdown-menu a {
        padding: 10px;
        font-size: 14px;
    }

    #btn-1 {
        width: 150px;
        height: 40px;
        font-size: 14px;
        margin-top: 10px;
    }

    .content {
        width: 90%;
        height: auto;
        padding: 20px;
    }

    .carousel {
        width: 100%;
        margin: 20px auto;
    }

    .carousel-inner img {
        width: 100%;
        height: auto;
    }
}

@media (max-width: 480px) {
    .spinner-border {
        width: 1.5rem;
        height: 1.5rem;
        border-width: 0.2rem;
    }
    .header {
        padding: 5px;
    }

    .logo {
        font-size: 18px;
    }

    .navbar a {
        font-size: 14px;
    }

    #btn-1 {
        width: 120px;
        font-size: 12px;
    }

    .content {
        padding: 15px;
    }

    .carousel {
        margin: 10px auto;
    }
}
