body{
    background-color: #000;
    color: #fff;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

header{
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: saturate(180%) blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.5);
    z-index: 1;
    padding: 20px 0;
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 30px;
    font-weight: 600;
}   

header a{
    color: #1F4E79;
    font-size: 18px;
    text-decoration: none;
}

header a:hover{
   color: rgb(45, 241, 255);
}

header img{
    width: 150px;
}

.base{
    width: 1200px;
    margin: 0 auto;
}

nav{
   display: flex;
   gap: 40px;
   justify-content: space-evenly;
}

main {
    display: flex;
    justify-content: center;
    flex-wrap: nowrap;
    padding-top: 140px;
    max-width: 1000px;
    margin: 0 auto;
}

h2{
    color: #000;
}

.ustozim {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    border: 2px solid #130f61;
    border-radius: 20px;
    padding: 30px;
    margin-left: 25px;
    margin-right: 25px;
}

.ustozim img {
    width: 300px;
    height: auto;
    border-radius: 8px;
    margin-bottom: 25px;
    object-fit: cover;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.ustoz-text h2 {
    text-align: center;
    font-size: 22px;
    line-height: 1.5;
    max-width: 700px;
    margin: 0 auto;
}


@media (max-width: 768px) {
    .main-nav, .mode-toggle {
        gap: 15px;
        font-size: 15px;
    }

    .ustozim img {
        width: 90%;
    }

    .ustoz-text h2 {
        font-size: 18px;
        padding: 0 10px;
    }
}

.rating {
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
  gap: 4px;
  margin: 20px;
  border: none; 
}

.rating input {
  display: none;
}

.rating label {
  font-size: 32px;
  line-height: 1;
  color: #ddd;
  cursor: pointer;
  transition: color 0.2s;
}

.rating label::before {
  content: "★";
}

.rating label:hover,
.rating label:hover ~ label,
.rating input:checked ~ label {
  color: #ffc107;
}

