@font-face {
  font-family: 'Telegraf';
  src: url('../Fonts/TelegrafRegular_272984568a25d8528fe2de8b20b29011.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Telegraf';
  src: url('../Fonts/Telegraf UltraBold 800.otf') format('opentype');
  font-weight: bold;
  font-style: normal;
}

@font-face {
  font-family: 'Telegraf';
  src: url('../Fonts/Telegraf UltraLight 200.otf') format('opentype');
  font-weight: 200;
  font-style: normal;
}

html {
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: 'Telegraf';
  background: linear-gradient(180deg, #22ace2 0%, #13cfb3 30%, #0edc30 100%);
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

/* Beyaz derinlik efektleri */
body::before,
body::after {
  content: '';
  position: fixed;
  top: 0;
  bottom: 0;
  width: 75px;
  z-index: 1000;
  pointer-events: none;
}

body::before {
  left: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0.1) 30%, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 100%);
}

body::after {
  right: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0.1) 70%, rgba(255, 255, 255, 0.4) 100%);
}

.yayin-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 40px;
  background: #fdf7ec;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.header-left .castle-icon {
  height: 58px;
}

.yayin-nav {
  display: flex;
  gap: 150px;
  font-size: 1.6rem;
  font-weight: 500;
}

.yayin-nav a {
  color: #000000;
  text-decoration: none;
  transition: color 0.2s;
}

.yayin-nav a.active,
.yayin-nav a:hover {
  color: #000000;
  font-weight: 700;
}

.header-search input {
  border: none;
  border-radius: 20px;
  padding: 8px 28px;
  font-size: 1.2rem;
  background: #fbf3e5;
  outline: none;
  width: 140px;
  transition: box-shadow 0.2s;
}

.header-search input:focus {
  box-shadow: 0 0 0 2px #e43e2b33;
}

.header-right .main-logo {
  height: 54px;
}

main {
  padding: 0 0 40px 0;
}

.basvuru-baslik {
  color: #fff;
  font-size: 4.3rem;
  font-weight: bold;
  margin-bottom: 28px;
  margin-top: -44px;
  text-align: left;
  line-height: 1.1;
  letter-spacing: 1px;
  width: 100%;
  white-space: nowrap;
}

.basvuru-icerik {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1450px;
  margin: 60px auto 0 auto;
  gap: 40px;
}

.basvuru-sol {
  flex: 4;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.basvuru-metin {
  background: none;
  border-radius: 0;
  box-shadow: none;
  padding: 0 30px 0 0;
  font-size: 1.10rem;
  color: #fff6e7;
  line-height: 1.7;
  margin-left: 0;
  margin-right: 0;
  width: 100%;
  max-width: 1000px;
}

.basvuru-metin p {
  margin: 0 0 18px 0;
  text-align: justify;
}

.basvuru-metin b {
  color: #fff6e7;
  font-size: 1.08em;
  font-weight: 700;
}

.basvuru-metin ul {
  list-style-position: inside;
  /* Madde imini metnin içine alır */
  padding-left: 0;
  /* Tarayıcının varsayılan sol boşluğunu tamamen kaldırır */
}

.basvuru-sag {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-start;
}

.basvuru-buyuk {
  font-size: 6.5rem;
  font-weight: 900;
  color: #fff6e7;
  text-align: right;
  line-height: 0.95;
  letter-spacing: 2px;
  margin-bottom: -10px;
  word-break: break-all;
  text-shadow: 0 2px 16px #174c6433;
}

.basvuru-mail {
  display: flex;
  align-items: center;
  gap: 12px;
  background: none;
  box-shadow: none;
  border-radius: 0;
  color: #fff6e7;
  font-size: 1.25rem;
  font-weight: 600;
  padding: 0;
  margin-top: 18px;
}

.mail-ikon {
  font-size: 1.7rem;
}

.mail-adres {
  font-family: 'Telegraf';
  font-size: 1.15rem;
}

/* TELEFON (max-width: 700px) */
@media (max-width: 700px) {

  body::before,
  body::after {
    width: 25px;
  }

  /* --- GÜNCELLENMİŞ HEADER KODLARI --- */
  .yayin-header {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding: 15px;
    gap: 15px;
    box-sizing: border-box;
  }

  .header-left {
    order: 1;
  }

  .header-right {
    order: 2;
  }

  .yayin-nav {
    width: 100%;
    order: 3;
    justify-content: center;
  }

  .header-search {
    width: 100%;
    order: 4;
  }

  .header-left .castle-icon,
  .header-right .main-logo {
    height: 48px;
    position: static;
    margin: 0;
  }

  .yayin-nav {
    gap: 20px;
    font-size: 1.1rem;
    flex-wrap: wrap;
    margin-bottom: 0;
  }

  .header-search input {
    width: 100%;
    box-sizing: border-box;
    text-align: center;
    background: #f0e8da;
    font-size: 1.1rem;
    padding: 10px 15px;
    min-width: unset;
    display: block;
    margin: 0;
    height: auto;
    position: static;
    z-index: 1;
  }

  /* --- SAYFA İÇERİK KODLARI --- */
  .basvuru-baslik {
    font-size: 1.1rem;
    margin-bottom: 16px;
    text-align: center;
    margin-top: 0;
    white-space: normal;
  }

  .basvuru-icerik {
    flex-direction: column;
    align-items: stretch;
    gap: 24px;
    margin: 24px 0 0 0;
    max-width: 100%;
  }

  .basvuru-sol {
    padding: 10px;
    align-items: stretch;
  }

  .basvuru-metin {
    font-size: 0.85rem;
    max-width: 100%;
  }

  .basvuru-sag {
    margin-top: 0;
    align-items: flex-end;
    justify-content: flex-start;
  }

  .basvuru-buyuk {
    font-size: 3rem;
    text-align: right;
    margin-bottom: 12px;
  }

  .basvuru-mail {
    font-size: 1rem;
    margin-top: 8px;
  }
}

/* TABLET DİKEY (min-width: 701px) and (max-width: 1366px) and (orientation: portrait) */
@media (min-width: 701px) and (max-width: 1366px) and (orientation: portrait) {
  html {
    overflow-x: hidden;
  }

  body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 50px;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0.1), transparent);
    z-index: 1;
    pointer-events: none;
  }

  body::after {
    content: '';
    position: fixed;
    top: 0;
    right: 0;
    width: 50px;
    height: 100%;
    background: linear-gradient(to left, rgba(255, 255, 255, 0.1), transparent);
    z-index: 1;
    pointer-events: none;
  }

  .yayin-header {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 18px 40px;
    width: 90vw;
    gap: 0;
  }

  .header-left .castle-icon {
    height: 68px;
    margin-left: -20px;
  }

  .yayin-nav {
    gap: 75px;
    font-size: 1.05rem;
    font-weight: 500;
    flex-wrap: nowrap;
    margin-bottom: 0;
  }

  .header-search {
    position: static;
    z-index: 1;
    width: auto;
    background: transparent;
  }

  .header-search input {
    font-size: 1.15rem;
    width: 100px;
    min-width: 100px;
    height: 28px;
    padding: 8px 28px;
    z-index: 1;
    position: static;
    background: #fbf3e5;
    display: inline-block;
    margin: 0;
  }

  .header-right {
    position: static;
    margin-top: 0;
  }

  .header-right .main-logo {
    position: static;
    margin-top: -10px;
    margin-right: -5px;
    height: 55px;
  }

  .basvuru-baslik {
    font-size: 1.6rem;
    margin-bottom: 16px;
    margin-left: 20px;
    margin-top: 0;
    white-space: normal;
  }

  .basvuru-icerik {
    flex-direction: column;
    align-items: stretch;
    gap: 24px;
    margin: 24px 0 0 0;
    max-width: 100%;
  }

  .basvuru-sol {
    padding: 0;
    align-items: stretch;
  }

  .basvuru-metin {
    font-size: 0.9rem;
    max-width: 100%;
    margin-left: 10px;
    margin-top: 40px;
  }

  .basvuru-sag {
    margin-top: 0;
    align-items: flex-end;
    justify-content: flex-start;
  }

  .basvuru-buyuk {
    font-size: 3rem;
    text-align: right;
    margin-bottom: 12px;
  }

  .basvuru-mail {
    font-size: 1rem;
    margin-top: 8px;
  }
}

/* TABLET YATAY (min-width: 701px) and (max-width: 1366px) and (orientation: landscape) */
@media (min-width: 701px) and (max-width: 1366px) and (orientation: landscape) {
  html {
    overflow-x: hidden;
  }

  body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 50px;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0.1), transparent);
    z-index: 1;
    pointer-events: none;
  }

  body::after {
    content: '';
    position: fixed;
    top: 0;
    right: 0;
    width: 50px;
    height: 100%;
    background: linear-gradient(to left, rgba(255, 255, 255, 0.1), transparent);
    z-index: 1;
    pointer-events: none;
  }

  .yayin-header {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 18px 40px;
    width: 100vw;
    gap: 0;
  }

  .header-left .castle-icon {
    height: 68px;
    margin-left: -20px;
  }

  .yayin-nav {
    gap: 100px;
    font-size: 1.4rem;
    font-weight: 500;
    flex-wrap: nowrap;
    margin-bottom: 0;
  }

  .header-search {
    position: static;
    z-index: 1;
    width: auto;
    background: transparent;
  }

  .header-search input {
    font-size: 1.2rem;
    width: 140px;
    min-width: 140px;
    height: 28px;
    padding: 8px 28px;
    z-index: 1;
    position: static;
    background: #fbf3e5;
    display: inline-block;
    margin: 0;
  }

  .header-right {
    position: static;
    margin-top: 0;
  }

  .header-right .main-logo {
    position: relative;
    top: -110px;
    right: -200px;
    margin: 0;
    height: 55px;
  }

  .basvuru-baslik {
    color: #fff;
    font-size: 3.45rem;
    font-weight: 900;
    margin-bottom: 28px;
    margin-top: -44px;
    text-align: left;
    line-height: 1.1;
    letter-spacing: 1px;
    width: 100%;
    white-space: nowrap;
  }

  .basvuru-icerik {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1450px;
    margin: 60px auto 0 auto;
    gap: 40px;
  }

  .basvuru-sol {
    flex: 4;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .basvuru-metin {
    font-size: 1rem;
    color: #fff6e7;
    line-height: 1.7;
    margin-left: 10px;
    margin-right: 0;
    width: 100%;
    max-width: 750px;
  }

  .basvuru-sag {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: flex-start;
    margin-top: 70px;
    margin-right: 10px;
  }

  .basvuru-buyuk {
    font-size: 5rem;
    font-weight: 900;
    color: #fff6e7;
    text-align: right;
    line-height: 0.95;
    letter-spacing: 2px;
    margin-bottom: 8px;
    word-break: break-all;
    text-shadow: 0 2px 16px #174c6433;
  }

  .basvuru-mail {
    display: flex;
    align-items: center;
    gap: 12px;
    background: none;
    box-shadow: none;
    border-radius: 0;
    color: #fff6e7;
    font-size: 1.25rem;
    font-weight: 600;
    padding: 0;
    margin-top: 18px;
  }
}