:root{
  --primary:#621EEE;
  --primary-600:#5a19e0;
  --primary-700:#4c16bf;
  --bg:#fafafe;
  --card:#fff;
  --text:#0f172a;
  --brand:#621EEE;
  --muted:#475569;
  --border:#e5e7eb;
}


@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600&display=swap');
* {
    box-sizing: border-box;
}



body {
    margin: 0;
    color: #333;
    background-color: #f9f9f9;

    font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, Noto Sans, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
}

.container {
    margin-top: 64px;
    padding: 16px;
}

.icon {
    width: 24px;
    height: 24px;
}

.header {
    position: relative;
    text-align: center;
    color: white;
}

.hero-image {
    width: 100%;
    height: auto;
    display: block;
}

.content {
    padding: 0px 16px;
}



.content h2 {
    color: #2c3e50;
    font-size: 1.1em;
    margin-top: 20px;
    margin-bottom: 8px;
}

.content p, .content ul {
    font-size: 0.8em;
}

.content ul {
    list-style-type: none;
    padding: 0;
}

.content ul li {
    margin-bottom: 15px;
    position: relative;
    padding-left: 25px;
}

.content ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 9px;
    width: 10px;
    height: 10px;
    background-color: #e67e22;
    border-radius: 50%;
}

.content strong {
    color: #e67e22;
}

@media (max-width: 768px) {
    .content {
        padding: 20px 10px;
    }

    .content h1 {
        font-size: 2em;
    }

    .content h2 {
        font-size: 1.5em;
    }
}
h1 {
    color: #6200EE;
    text-align: center;
    font-family: 'Poppins', sans-serif;
    margin-top: 0px;
    font-size: 30px;
    margin-bottom: 5px;
}

.icon {
    width: 24px;
    height: 24px;
}


@media (max-width: 768px) {


}

#cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #6200EE;
    color: #fff;
    padding: 20px;
    text-align: center;
    z-index: 1000;
    display: none;
    flex-direction: column;
}

#cookie-banner p{
    color: #fff;
    text-align: left;

}

#cookie-banner .div-button{
    display: flex;
    flex-direction: column;

}
#cookie-banner .cookieButton{
    background: #FFFFFF;
    border: none;
    color: #000;
    padding: 10px 20px;
    margin-top: 20px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 5px;
    width: 100%;
    text-align: center;
}
#cookie-banner .cookieButton2{
    background: #e8e8e8;
    border: none;
    color: #000;
    padding: 10px 20px;
    margin-top: 20px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 5px;
    width: 100%;
    text-align: center;
}

#cookie-settings-panel {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    padding: 10px 15px; /* Yan ve üst boşluklar optimize edildi */
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 95%; /* Mobil görünümde daha fazla genişlik */
    max-width: 600px; /* Genişlik artırıldı */
    max-height: 80vh;
    overflow-y: auto;
    z-index: 1000;
    display: none;
    font-family: 'Poppins', sans-serif;
}

#cookie-settings-panel h2 {
    font-size: 18px;
    color: #333;
    text-align: center;
    margin-bottom: 10px;
}

#cookie-settings-panel p {
    font-size: 13px; /* Daha kompakt bir metin görünümü */
    color: #555;
    line-height: 1.6;
    margin: 5px 0; /* Daha dar boşluklar */
    padding: 0;
}

#cookie-settings-panel label {
    display: block;
    margin-top: 10px;
    font-size: 14px;
    color: #333;
}

#cookie-settings-panel input[type="checkbox"] {
    margin-right: 10px;
}

#cookie-settings-panel a {
    color: #6200EE;
    text-decoration: underline;
}

#cookie-settings-panel button {
    background: #6200EE;
    border: none;
    color: #fff;
    padding: 10px 20px;
    margin-top: 20px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 5px;
    width: 100%;
    text-align: center;
}

#cookie-settings-panel button:hover {
    background: #5e00e0;
}

#cookie-settings-panel button:nth-child(2) {
    background: #ccc;
    color: #333;
}

#cookie-settings-panel button:nth-child(2):hover {
    background: #bbb;
}

/* Switch Tasarımı */
.switch {
    position: relative;
    display: inline-block;
    width: 42px;
    height: 24px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: 0.4s;
    border-radius: 34px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: 0.4s;
    border-radius: 50%;
}

input:checked + .slider {
    background-color: #6200EE; /* Ana renginiz */
}

input:focus + .slider {
    box-shadow: 0 0 1px #6200EE;
}

input:checked + .slider:before {
    transform: translateX(18px);
}

.switch-label {
    font-size: 14px;
    color: #333;
    margin-left: 10px;
    vertical-align: middle;
}


/* Masaüstü görünüm */
@media screen and (min-width: 1024px) {
    #cookie-settings-panel {
        max-height: 80vh; /* Panelin maksimum yüksekliği ekranın %80’i kadar */
        overflow-y: auto; /* Dikey kaydırma ekleyin */
        width: 60%;

    }


    #cookie-banner {
        display: none;
        width: 100%;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background: #6200EE;
        color: #fff;
        padding: 20px;
        text-align: center;
        z-index: 1000;
    }
    #cookie-banner p{
        width: 100%;
        color: #fff;
        left: 24px;
        text-align: left;

    }

    #cookie-banner .div-button{
        width: 520px;
        right: 24px;
        display: flex;
        flex-direction: row;

    }
    #cookie-banner .cookieButton{
        background: #FFFFFF;
        border: none;
        color: #000;
        padding: 10px 20px;
        margin-top: 20px;
        margin-right: 20px;
        font-size: 16px;
        margin-left: auto;
        cursor: pointer;
        border-radius: 5px;
        width: 240px;
        text-align: center;
    }
    #cookie-banner .cookieButton2{
        background: #e8e8e8;
        border: none;
        color: #000;
        padding: 10px 20px;
        margin-top: 20px;
        margin-right: 20px;
        font-size: 16px;
        cursor: pointer;
        border-radius: 5px;
        width: 240px;
        text-align: center;
    }

}




.policy-links {
    text-align: center; /* Yatayda ortalar */
    padding: 8px;
    border-top: 1px solid #ddd;
    font-size: 9px; /* Yazı tipini küçültür */
    color: #777; /* Gri renk */
    display: flex; /* Flexbox düzeni */
    flex-wrap: wrap; /* Satır taşması durumunda alt satıra geçer */
    justify-content: center; /* Öğeleri yatayda ortalar */
    gap: 10px; /* Öğeler arası boşluk */
    margin: 0px;
    margin-top: 30px;
}

.policy-links a {
    
    flex: 1 0 calc(33% - 25px); /* En fazla 3 item yan yana */
    box-sizing: border-box; /* Padding ve border'ı dahil eder */
    text-align: center; /* Yazıyı ortalar */
    color: #777; /* Gri renk */
    text-decoration: none; /* Varsayılan olarak altını çizmez */
}

.policy-links a:hover {
    text-decoration: underline; /* Üzerine gelindiğinde altını çizer */
}



@media screen and (max-width: 768px) {
    h1 {
        display: none;
    }



}

@media screen and (min-width: 1024px) {

    h1 {
        font-family: 'fontum', sans-serif; /* İlk tercih özel font, ikinci tercih fallback */
        color: white;
        width: 70%;
        text-align: right;
        margin-top: 0px;
        right: 0px;
        margin-right: 24px;
        font-size: 28px;
        margin-bottom: 5px;
    }


}





.navigation a.nav-buttons,
.navigation a.nav-buttons-home {
  display: inline-flex; align-items: center; gap: 6px;
  text-decoration: none;
  /* mevcut .nav-buttons buton stillerini buraya taşıyabilirsin */
}
.navigation a[aria-current="page"] {
  background: rgba(255,255,255,0.15); /* yarı saydam beyaz arka plan */
  color: #fff;                    /* biraz kalın yazı */
  border-radius: 8px;
}

.navigation a[aria-current="page"] img.icon {
  filter: brightness(1.5); /* ikon biraz daha parlak */
}


.navigation{
  position:fixed; top:0; left:0; width:100%; height:56px;
  background:#6200EE; padding:10px 4px; display:flex; align-items:center;
  overflow:hidden; z-index:9998; gap:4px;
}
.navigation span{font-size:10px; color:#fff}
.nav-buttons,.nav-buttons-home{
  height:56px; min-width:100px;
  background:#6200EE; border:none; color:#fff; font-size:12px; cursor:pointer;
  display:flex; flex-direction:column; align-items:center; justify-content:center; text-align:center;
  transition:background-color .3s ease;
}
.nav-buttons:hover,.nav-buttons-home:hover{background:#eead0e}
.icon{width:20px; height:20px}
#page-header{color:#fff; margin-left:auto; margin-right:24px; font-size:28px}

#page-logo{
  margin:0 8px; width:48px; height:48px; padding:10px; cursor:pointer;
}




@media (max-width:768px){
  .navigation{
    height:56px;
    padding:0 6px;
    gap:0;
    overflow-x:auto;               /* yatay kaydırma */
    -webkit-overflow-scrolling:touch;
    scroll-snap-type:x mandatory;  /* snap etkisi */
  }

  /* Linkler tek satırda, kaydırılabilir olsun */
  .navigation a.nav-buttons,
  .navigation a.nav-buttons-home{
    display:inline-flex;           /* <a> için doğru kullanım */
    align-items:center;
    justify-content:center;
    flex:0 0 auto;                 /* sıkışma yok, yan yana ak */
    min-width:auto;                /* min-width=100px sınırlamasını kaldır */
    padding:0 10px;
    height:56px;
    text-decoration:none;
    background:transparent;        /* arkaplan tek renk olsun */
    border-radius:8px;
    scroll-snap-align:center;
  }

  /* Metinleri gizle → sadece ikon (yer kazancı) */
  .navigation a.nav-buttons span,
  .navigation a.nav-buttons-home span{
    display:none;
  }

  /* İkonları bir tık büyüt */
  .navigation .icon{
    width:22px; height:22px;
  }

  /* Logo daha kompakt */
  #page-logo{
    height:32px; width:auto; padding:0; margin:0 6px 0 0; object-fit:contain;
  }

  /* Aktif sayfa vurgusu */
  .navigation a[aria-current="page"]{
    background:rgba(255,255,255,0.15);
  }

  /* iOS scroll bar gizle */
  .navigation::-webkit-scrollbar{ display:none; }
}

