/* ========== GENEL AYARLAR ========== */
:root {
    --accent: #1eff00;
    --bg: #1a7f3a;
    --btn: #fff;
    --box-h: 24px;
    --width-open: 230px;
    /* arama kutusu açık maksimum genişliği */
    --search-padding: 0px;
}

/* kutu boyutu hesaplamasını her elementte aynı hale getirir */
* {
    box-sizing: border-box;
}

html,
body {
    height: 100%;
}

/* ========== SAYFA YAPISI ========== */
body {
    margin: 0;
    font-family: "Genos", system-ui, Arial;
    background: var(--bg);
    color: #000;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Sayfa içeriği alanı */
main {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 10px;
}

/* ========== HEADER ========== */
header {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 1px 0;
    position: relative;
}

/* Logo */
.logo,
.logo-container .logo {
    height: 110px !important;
    max-height: 110px !important;
    width: auto;
    max-width: min(78vw, 320px) !important;
    display: block;
    margin-bottom: 0;
}

/* DİL SEÇİCİ (sağ üst) */
.lang-switch {
    position: absolute;
    top: 10px;
    right: 16px;
    display: flex;
    gap: 8px;
    align-items: center;
    font-size: 18px;
    z-index: 50;
}

.lang-switch a {
    text-decoration: none;
    color: #000;
    opacity: 0.95;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 6px;
    transition: background .18s, transform .12s, color .2s;
}

.lang-switch a:hover {
    background: rgba(0, 0, 0, 0.06);
    transform: translateY(-1px);
    color: var(--accent);
}

/* ========== ARAMA KUTUSU ========== */
.search-wrap {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: var(--search-padding);
    background: var(--accent);
    border-radius: 999px;
    height: var(--box-h);
    box-shadow: 0 6px 18px rgba(0, 0, 0, .18);
    transition: box-shadow .22s ease, transform .12s ease;
    margin-top: -50px;
}

.search-wrap:hover {
    transform: scale(1.01);
    box-shadow: 0 10px 30px rgba(0, 0, 0, .22);
}

/* input başlangıçta kapalı */
.search-input {
    width: 0;
    max-width: var(--width-open);
    background: transparent;
    border: none;
    color: #000;
    font-size: 15px;
    outline: none;
    transition: width .34s cubic-bezier(.2, .9, .2, 1), padding .2s;
    padding: 0 8px;
}

.search-input::placeholder {
    color: rgba(255, 255, 255, .9);
}

/* buton */
.search-btn {
    width: 49px;
    height: 49px;
    border-radius: 100%;
    background: var(--btn);
    border: none;
    display: grid;
    place-items: center;
    color: #000;
    cursor: pointer;
    transform-origin: top;
    transition: transform .88s ease, box-shadow .3s ease;
}

/* input focus olduğunda açılır */
.search-wrap.open .search-input,
.search-wrap:focus-within .search-input {
    width: var(--width-open);
    padding: 0 8px;
}

.search-wrap:hover .search-btn,
.search-wrap:focus-within .search-btn {
    transform: scale(1.05);
    box-shadow: 0 6px 14px rgba(0, 200, 83, .12);
}

/* GLOW animasyonu */
.search-wrap.glow {
    animation: glow 1.6s infinite;
}

@keyframes glow {
    0% {
        box-shadow: 0 6px 18px rgba(0, 0, 0, .18), 0 0 6px rgba(0, 200, 83, .06);
    }

    50% {
        box-shadow: 0 10px 30px rgba(0, 0, 0, .22), 0 0 20px rgba(0, 200, 83, .10);
    }

    100% {
        box-shadow: 0 6px 18px rgba(0, 0, 0, .18), 0 0 6px rgba(0, 200, 83, .06);
    }
}

/* ========== FOOTER ========== */
footer {
    width: 100%;
    padding: 20px 16px;
    font-size: 14px;
    color: #111;
    font-family: "Genos", system-ui, Arial;
    margin-top: auto;
    background: transparent;
    box-sizing: border-box;
}

.footer-container {
    max-width: 980px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 2px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: -8px;
}

.footer-links a {
    color: inherit;
    text-decoration: none;
    opacity: .95;
    transition: color .2s ease;
}

.footer-links a:hover {
    color: var(--accent);
}

.footer-text {
    font-size: 15px;
    color: #111;
    border-top: 1px solid #aaa;
    padding-top: 5px;
    width: 100%;
    text-align: center;
    margin: 0 auto 2px;
}

/* ========== RESPONSIVE ========== */
@media (max-width:600px) {
    :root {
        --width-open: 180px;
    }

    .logo,
    .logo-container .logo {
        height: 78px !important;
        max-height: 78px !important;
        max-width: min(74vw, 220px) !important;
    }

    footer {
        padding: 20px 10px;
        font-size: 14px;
    }
}

.search-btn {
    width: 49px;
    height: 49px;
    border-radius: 100%;
    background: var(--btn);
    border: none;
    display: grid;
    place-items: center;
    color: #000;
    cursor: pointer;
    transform-origin: center;
    transition: transform .2s ease, box-shadow .3s ease, background .3s;
}

/* Hover’da yumuşak parlama */
.search-btn:hover {
    background: var(--accent);
    color: #000;
    transform: scale(1.08);
    box-shadow: 0 0 12px rgba(30, 255, 0, 0.5);
}

/* Tıklayınca kısa bir “pulse” efekti */
.search-btn:active {
    transform: scale(0.92);
    box-shadow: 0 0 6px rgba(30, 255, 0, 0.8);
}

.lang-switch a {
    opacity: 0;
    transform: translateY(-8px) rotate(-8deg);
    animation: langIn 0.6s forwards;
}

/* Her biri sırayla gelsin */
.lang-switch a:nth-child(1) {
    animation-delay: 0.1s;
}

.lang-switch a:nth-child(2) {
    animation-delay: 0.25s;
}

.lang-switch a:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes langIn {
    to {
        opacity: 1;
        transform: translateY(0) rotate(0);
    }
}

.lang-switch a {
    opacity: 0;
    transform: translateY(-8px) rotate(-8deg);
    animation: langIn 0.6s forwards;
}

/* Her biri sırayla gelsin */
.lang-switch a:nth-child(1) {
    animation-delay: 0.1s;
}

.lang-switch a:nth-child(2) {
    animation-delay: 0.25s;
}

.lang-switch a:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes langIn {
    to {
        opacity: 1;
        transform: translateY(0) rotate(0);
    }
}

a.back-home:hover {
    transform: translateY(-2px) scale(1.03);
    transition: transform .2s, box-shadow .25s;
}

.lang-switch a:hover {
    transform: translateY(-2px) scale(1.1);
    background: rgba(30, 255, 0, .2);
    transition: transform .2s, background .18s;
}

/* ---- Konu/Terim Sayfaları ---- */
.topic {
    max-width: 900px;
    margin: 20px auto;
    padding: 10px;
    text-align: left;
    /* metin sol hizalı */
}

.topic h1 {
    text-align: center;
    color: var(--accent);
    margin-bottom: 15px;
    font-size: 28px;
}

.topic h2 {
    margin-top: 30px;
    margin-bottom: 10px;
    font-size: 22px;
    color: #111;
    border-bottom: 1px solid #aaa;
    /* alt çizgi ile başlık ayrımı */
    padding-bottom: 3px;
}

.topic h3 {
    margin-top: 20px;
    margin-bottom: 5px;
    font-size: 18px;
    color: #111;
}

.topic p {
    margin: 0 0 10px;
    line-height: 1.6;
    font-size: 15px;
    color: #333;
}

.baslik {
    font-size: 55px;
    font-weight: bold;
    line-height: 1.2;
    text-align: center;
}
.icerik1, .icerik2 {
    max-width: 900px;       /* İçeriğin maksimum genişliği */
    margin: 0 auto;          /* Sayfanın ortasında */
    padding: 0 20px;         /* Sol ve sağ boşluk */
    box-sizing: border-box;  /* Padding sayfayı taşırmaz */
}

.icerik1, .icerik2 h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #222;
}

.icerik1, .icerik2 p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 20px;
}
#searchResults {
  position: absolute;
  top: 30px; /* logonun altına hizalanır, gerekirse ayarlayabiliriz */
  left: 50%;
  transform: translateX(-50%);
  width: 280px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 6px 22px rgba(0,0,0,0.2);
  overflow: hidden;
  z-index: 1000;
  font-family: "Genos", sans-serif;
  display: none;
}

#searchResults a {
  display: block;
  padding: 10px 14px;
  color: #111;
  text-decoration: none;
  border-bottom: 1px solid #eee;
  font-size: 17px;
}

#searchResults a:hover {
  background: var(--accent);
  color: #000;
}

#searchResults .no-result {
  padding: 10px 14px;
  color: #666;
  font-size: 16px;
}
.back-home {
  display: inline-block;
  background: #000000;        /* ana renk */
  color: #000;                /* yazı rengi */
  font-weight: 600;
  text-decoration: none;
  padding: 10px 20px;         /* iç boşluk */
  border-radius: 12px;        /* yuvarlak köşeler */
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  margin-top: 20px;           /* içerik ile araya boşluk */
}

.back-home:hover {
  background: #000000;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.2);
}
.back-home.fixed {
    position: fixed;
    bottom: 140px;
    right: 140px;
    z-index: 150;
}
.back-home {
    display: inline-block;
    padding: 16px 34px;
    font-size: 20px;
    font-weight: 600;
    color: #000;
    text-decoration: none;

    /* iOS 17 CAM EFEKTİ */
    background: rgba(255, 255, 255, 0.22);
    backdrop-filter: blur(26px) saturate(260%);
    -webkit-backdrop-filter: blur(26px) saturate(260%);

    border-radius: 22px;

    /* iOS 17 DERİNLİK + PARLAMA */
    box-shadow:               /* dış gölge */               /* dış neon parlama */
        inset 0 0 30px rgba(255, 255, 255, 0.18),      /* cam içi bulutumsu ışık */
        inset 0 3px 10px rgba(255, 255, 255, 0.45);    /* ÜST parlak çizgi (iOS 17'ye özgü) */

    position: relative;

    transition:
        transform .25s ease,
        box-shadow .25s ease,
        background .25s ease,
        border .25s ease;
}

/* Üst highlight çizgisinin gerçek iOS görünümü */
.back-home::before {
    content: "";
    position: absolute;
    top: 2px;
    left: 8%;
    right: 8%;
    height: 4px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.65);
    filter: blur(6px);
    pointer-events: none;
}

/* Hover efekti – iOS "hover glow" */
.back-home:hover {
    background: rgba(255, 255, 255, 0.30);

    box-shadow:
        inset 0 0 34px rgba(255, 255, 255, 0.22),
        inset 0 3px 12px rgba(255, 255, 255, 0.55);

    transform: translateY(-3px);
}

/* Tıklama — iOS "press" animasyonu */
.back-home:active {
    transform: scale(0.96);
    box-shadow:
        inset 0 0 22px rgba(255, 255, 255, 0.25),
        inset 0 3px 8px rgba(255, 255, 255, 0.40);
}

/* Sabit pozisyon kullanırsan */
.back-home.fixed {
    position: fixed;
    bottom: 140px;
    right: 140px;
    z-index: 150;
}
/* ---- iOS 17 cam efekti arama kutusu ---- */
.search-wrap {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 18px;
    
    /* CAM EFEKTİ */
    background: rgba(255,255,255,0.22);
    backdrop-filter: blur(26px) saturate(260%);
    -webkit-backdrop-filter: blur(26px) saturate(260%);
    
    border-radius: 22px;
    
    /* DERİNLİK + PARLAMA */
    box-shadow:
        inset 0 0 30px rgba(255, 255, 255, 0.18),
        inset 0 3px 10px rgba(255, 255, 255, 0.45),
        0 8px 18px rgba(0,0,0,0.15); /* dış gölge, hover için ekstra etkili */
    
    transition: all 0.25s ease;
}

/* Hover efekti */
.search-wrap:hover {
    background: rgba(255,255,255,0.30);
    box-shadow:
        inset 0 0 34px rgba(255, 255, 255, 0.22),
        inset 0 3px 12px rgba(255, 255, 255, 0.55),
        0 10px 22px rgba(0,0,0,0.18);
    transform: translateY(-2px);
}

/* Input alanı */
.search-input {
    flex: 1;
    background: transparent;
    border: none;
    color: #000;
    font-size: 16px;
    outline: none;
    transition: width 0.34s cubic-bezier(.2,.9,.2,1), padding 0.2s;
    padding: 0 8px;
    width: var(--width-open); /* isteğe göre başlangıçta geniş veya dar */
}

/* Placeholder cam görünümü için biraz opacity */
.search-input::placeholder {
    color: rgba(0,0,0,0.5);
}

/* Arama butonu cam stili */
.search-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255,255,255,0.25);
    backdrop-filter: blur(18px) saturate(200%);
    -webkit-backdrop-filter: blur(18px) saturate(200%);
    border: none;
    display: grid;
    place-items: center;
    color: #000;
    cursor: pointer;
    box-shadow:
        inset 0 0 18px rgba(255,255,255,0.2),
        inset 0 3px 8px rgba(255,255,255,0.4),
        0 4px 12px rgba(0,0,0,0.12);
    transition: all 0.25s ease;
}

/* Buton hover */
.search-btn:hover {
    background: rgba(255,255,255,0.35);
    transform: scale(1.08);
    box-shadow:
        inset 0 0 22px rgba(255,255,255,0.25),
        inset 0 3px 10px rgba(255,255,255,0.5),
        0 6px 14px rgba(0,0,0,0.15);
}

/* Buton tıklama */
.search-btn:active {
    transform: scale(0.96);
    box-shadow:
        inset 0 0 18px rgba(255,255,255,0.2),
        inset 0 3px 8px rgba(255,255,255,0.4);
}
/* ---- Modern iOS 17 tarzı arama kutusu ---- */
.search-wrap {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;

    /* CAM EFEKTİ */
    background: rgba(255,255,255,0.18);
    backdrop-filter: blur(28px) saturate(270%);
    -webkit-backdrop-filter: blur(28px) saturate(270%);

    border-radius: 28px;

    /* DERİNLİK + SOFT GÖLGELER */
    box-shadow:
        inset 0 0 20px rgba(255,255,255,0.15),
        inset 0 4px 12px rgba(255,255,255,0.35),
        0 6px 20px rgba(0,0,0,0.12);

    transition: all 0.3s ease;
}

/* Hover efektleri */
.search-wrap:hover {
    background: rgba(255,255,255,0.28);
    transform: translateY(-2px);
    box-shadow:
        inset 0 0 28px rgba(255,255,255,0.2),
        inset 0 4px 14px rgba(255,255,255,0.38),
        0 8px 22px rgba(0,0,0,0.15);
}

/* Input alanı */
.search-input {
    flex: 1;
    background: transparent;
    border: none;
    color: #000;
    font-size: 17px;
    outline: none;
    padding: 0 10px;
}

.search-input::placeholder {
    color: rgba(0,0,0,0.45);
    font-style: italic;
}

/* Arama butonu */
.search-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(22px) saturate(220%);
    -webkit-backdrop-filter: blur(22px) saturate(220%);
    border: none;
    display: grid;
    place-items: center;
    color: #000;
    cursor: pointer;

    box-shadow:
        inset 0 0 16px rgba(255,255,255,0.2),
        inset 0 3px 10px rgba(255,255,255,0.4),
        0 4px 14px rgba(0,0,0,0.1);

    transition: all 0.25s ease;
}

/* Buton hover */
.search-btn:hover {
    background: rgba(255,255,255,0.3);
    transform: scale(1.07);
    box-shadow:
        inset 0 0 20px rgba(255,255,255,0.25),
        inset 0 4px 12px rgba(255,255,255,0.45),
        0 6px 18px rgba(0,0,0,0.12);
}

/* Buton tıklama */
.search-btn:active {
    transform: scale(0.95);
    box-shadow:
        inset 0 0 16px rgba(255,255,255,0.2),
        inset 0 3px 8px rgba(255,255,255,0.35);
}
/* ---- Modern iOS 17 tarzı arama butonu (geliştirilmiş) ---- */
.search-btn {
    width: 52px;
    height: 52px;
    border-radius: 50%;

    /* CAM + GRADIENT EFEKT */
    background: linear-gradient(
        145deg,
        rgba(255,255,255,0.25) 0%,
        rgba(255,255,255,0.15) 50%,
        rgba(255,255,255,0.2) 100%
    );
    backdrop-filter: blur(22px) saturate(220%);
    -webkit-backdrop-filter: blur(22px) saturate(220%);
    border: none;

    display: grid;
    place-items: center;
    color: #000;
    cursor: pointer;

    /* DERİNLİK */
    box-shadow:
        inset 0 0 18px rgba(255,255,255,0.25),
        inset 0 4px 12px rgba(255,255,255,0.4),
        0 6px 18px rgba(0,0,0,0.12);

    transition: all 0.28s ease;
}

/* Hover efekti */
.search-btn:hover {
    background: linear-gradient(
        145deg,
        rgba(255,255,255,0.35) 0%,
        rgba(255,255,255,0.22) 50%,
        rgba(255,255,255,0.3) 100%
    );
    transform: scale(1.09);
    box-shadow:
        inset 0 0 22px rgba(255,255,255,0.28),
        inset 0 5px 14px rgba(255,255,255,0.45),
        0 8px 20px rgba(0,0,0,0.14);
}

/* Tıklama efekti */
.search-btn:active {
    transform: scale(0.95);
    box-shadow:
        inset 0 0 16px rgba(255,255,255,0.22),
        inset 0 3px 10px rgba(255,255,255,0.38);
}

/* İçindeki ikon için hafif glow */
.search-btn i {
    text-shadow: 0 0 4px rgba(30,255,0,0.5);
    font-size: 18px;
}
/* ---- Arama Gönder Butonu: Modern Cam Efekt ---- */
.search-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;

    /* Cam efekt */
    background: rgba(255, 255, 255, 0.22);
    backdrop-filter: blur(20px) saturate(200%);
    -webkit-backdrop-filter: blur(20px) saturate(200%);

    /* Derinlik + gölge */
    box-shadow:
        inset 0 0 16px rgba(255,255,255,0.25),
        inset 0 3px 8px rgba(255,255,255,0.35),
        0 4px 12px rgba(0,0,0,0.15);

    display: grid;
    place-items: center;
    cursor: pointer;
    color: #000;
    transition: all 0.25s ease;
}

/* Hover efekti */
.search-btn:hover {
    background: rgba(255, 255, 255, 0.30);
    transform: scale(1.08);
    box-shadow:
        inset 0 0 20px rgba(255,255,255,0.28),
        inset 0 4px 10px rgba(255,255,255,0.40),
        0 6px 16px rgba(0,0,0,0.18);
}

/* Tıklama efekti */
.search-btn:active {
    transform: scale(0.94);
    box-shadow:
        inset 0 0 12px rgba(255,255,255,0.20),
        inset 0 3px 6px rgba(255,255,255,0.35);
}

/* İçindeki ikon */
.search-btn i {
    text-shadow: 0 0 4px rgba(30,255,0,0.5);
    font-size: 18px;
}

/* ---------- Glass effect search wrapper ---------- */
.glass-search-wrap {
  display: inline-flex;
  align-items: center;
  gap: 100px;
  padding: 2px 4px;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(24px) saturate(220%);
  -webkit-backdrop-filter: blur(24px) saturate(220%);
  box-shadow: inset 0 0 20px rgba(255,255,255,0.2), 0 6px 20px rgba(0,0,0,0.12);
  transition: all 0.3s ease;
}

.glass-search-wrap:hover {
  background: rgba(255, 255, 255, 0.32);
  box-shadow: inset 0 0 28px rgba(255,255,255,0.25), 0 8px 28px rgba(0,0,0,0.15);
  transform: translateY(-2px);
}

/* Input alanı */
.glass-search-input {
  border: none;
  outline: none;
  background: transparent;
  font-size: 16px;
  color: #000;
  width: 200px;
  transition: width 0.3s ease;
}

.glass-search-input::placeholder {
  color: rgba(0,0,0,0.5);
}

/* Arama butonu */
.glass-search-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  display: grid;
  place-items: center;
  font-size: 18px;
  color: #000;
  cursor: pointer;
  background: rgba(255,255,255,0.25);
  backdrop-filter: blur(24px) saturate(220%);
  -webkit-backdrop-filter: blur(24px) saturate(220%);
  box-shadow: inset 0 0 12px rgba(255,255,255,0.2), 0 4px 14px rgba(0,0,0,0.1);
  transition: all 0.25s ease;
}

.glass-search-btn:hover {
  transform: scale(1.08);
  background: rgba(255,255,255,0.3);
  box-shadow: inset 0 0 16px rgba(255,255,255,0.25), 0 6px 18px rgba(0,0,0,0.15);
}

.glass-search-btn:active {
  transform: scale(0.95);
  box-shadow: inset 0 0 8px rgba(255,255,255,0.2), 0 3px 12px rgba(0,0,0,0.1);
}

/* Arama sonuçları kutusu */
#glassSearchResults {
  position: absolute;
  top: 60px; /* ihtiyaç halinde ayarla */
  left: 50%;
  transform: translateX(-50%);
  width: 300px;
  background: rgba(255,255,255,0.95);
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
  overflow: hidden;
  display: none;
  z-index: 999;
  font-family: "Genos", sans-serif;
}

#glassSearchResults a {
  display: block;
  padding: 10px 14px;
  color: #111;
  text-decoration: none;
  border-bottom: 1px solid #eee;
}

#glassSearchResults a:hover {
  background: var(--accent, #1eff00);
  color: #000;
}

#glassSearchResults .no-result {
  padding: 10px 14px;
  color: #666;
}

/* Arama kutusu logo altına */
.glass-search-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 20px; /* logodan boşluk */
  padding: 12px 20px;
  border-radius: 28px;
  background: rgba(255,255,255,0.22);
  backdrop-filter: blur(28px) saturate(250%);
  -webkit-backdrop-filter: blur(28px) saturate(250%);
  box-shadow: inset 0 0 22px rgba(255,255,255,0.2), 0 6px 20px rgba(0,0,0,0.12);
  transition: all 0.3s ease;
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
}

/* Hover efekti */
.glass-search-wrap:hover {
  background: rgba(255,255,255,0.32);
  box-shadow: inset 0 0 28px rgba(255,255,255,0.25), 0 8px 28px rgba(0,0,0,0.15);
  transform: translateY(-2px);
}

/* Input alanı */
.glass-search-input {
  flex: 1;
  border: none;
  outline: none;
  background: transparent;
  font-size: 16px;
  color: #000;
}

.glass-search-input::placeholder {
  color: rgba(0,0,0,0.5);
}

/* Gönder butonu modern cam + neon efekti */
.glass-search-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: none;
  display: grid;
  place-items: center;
  font-size: 20px;
  color: #fff;
  cursor: pointer;
  background: rgba(30,255,0,0.2); /* neon yeşil cam efekti */
  backdrop-filter: blur(28px) saturate(250%);
  -webkit-backdrop-filter: blur(28px) saturate(250%);
  box-shadow: 0 0 12px rgba(30,255,0,0.45), 0 4px 12px rgba(0,0,0,0.1);
  transition: all 0.25s ease;
}

.glass-search-btn:hover {
  transform: scale(1.12);
  box-shadow: 0 0 24px rgba(30,255,0,0.55), 0 6px 16px rgba(0,0,0,0.15);
}

.glass-search-btn:active {
  transform: scale(0.96);
  box-shadow: 0 0 14px rgba(30,255,0,0.35), 0 3px 10px rgba(0,0,0,0.1);
}

/* Arama sonuçları */
#glassSearchResults {
  position: absolute;
  top: 90px; /* logo + arama kutusu altı */
  left: 50%;
  transform: translateX(-50%);
  width: 300px;
  background: rgba(255,255,255,0.95);
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
  overflow: hidden;
  display: none;
  z-index: 999;
  font-family: "Genos", sans-serif;
}

#glassSearchResults a {
  display: block;
  padding: 10px 14px;
  color: #111;
  text-decoration: none;
  border-bottom: 1px solid #eee;
}

#glassSearchResults a:hover {
  background: var(--accent, #1eff00);
  color: #000;
}

#glassSearchResults .no-result {
  padding: 10px 14px;
  color: #666;
}
/* Arama kutusu logo altına, boşluk az */
.glass-search-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 8px; /* eskiden 20px, şimdi daha yakın */
  padding: 12px 20px;
  border-radius: 28px;
  background: rgba(255,255,255,0.22);
  backdrop-filter: blur(28px) saturate(250%);
  -webkit-backdrop-filter: blur(28px) saturate(250%);
  box-shadow: inset 0 0 22px rgba(255,255,255,0.2), 0 6px 20px rgba(0,0,0,0.12);
  transition: all 0.3s ease;
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
}

/* Gönder butonu - cam + neon + ok simgesi */
.glass-search-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: none;
  display: grid;
  place-items: center;
  font-size: 18px;
  color: #fff;
  cursor: pointer;
  background: rgba(30,255,0,0.25);
  backdrop-filter: blur(24px) saturate(250%);
  -webkit-backdrop-filter: blur(24px) saturate(250%);
  box-shadow: 0 0 14px rgba(30,255,0,0.5), 0 4px 10px rgba(0,0,0,0.1);
  transition: all 0.25s ease;
}

.glass-search-btn:hover {
  transform: scale(1.15);
  box-shadow: 0 0 28px rgba(30,255,0,0.7), 0 6px 14px rgba(0,0,0,0.15);
}

.glass-search-btn:active {
  transform: scale(0.95);
  box-shadow: 0 0 18px rgba(30,255,0,0.4), 0 3px 8px rgba(0,0,0,0.1);
}

/* Input alanı */
.glass-search-input {
  flex: 1;
  border: none;
  outline: none;
  background: transparent;
  font-size: 16px;
  color: #000;
}

.glass-search-input::placeholder {
  color: rgba(0,0,0,0.5);
}

/* Arama sonuçları */
#glassSearchResults {
  position: absolute;
  top: 72px; /* artık logo + arama kutusu altı daha yakın */
  left: 50%;
  transform: translateX(-50%);
  width: 300px;
  background: rgba(255,255,255,0.95);
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
  overflow: hidden;
  display: none;
  z-index: 999;
  font-family: "Genos", sans-serif;
}
/* Logo altına cam arama kutusu */
.glass-search-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: -20px; /* negatif margin ile logo ile arası neredeyse sıfır */
  padding: 14px 24px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(32px) saturate(250%);
  -webkit-backdrop-filter: blur(32px) saturate(250%);
  box-shadow: 0 8px 32px rgba(0,0,0,0.18), inset 0 0 20px rgba(255,255,255,0.1);
  max-width: 460px;
  margin-left: auto;
  margin-right: auto;
  transition: all 0.3s ease;
  position: relative;
}

/* Input alanı */
.glass-search-input {
  flex: 1;
  border: none;
  outline: none;
  background: transparent;
  font-size: 16px;
  color: #000;
  padding: 6px 12px;
}

.glass-search-input::placeholder {
  color: rgba(0,0,0,0.4);
}

/* Gönder butonu */
.glass-search-btn {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: none;
  display: grid;
  place-items: center;
  font-size: 18px;
  color: #fff;
  cursor: pointer;
  background: rgba(30,255,0,0.25);
  backdrop-filter: blur(28px) saturate(260%);
  -webkit-backdrop-filter: blur(28px) saturate(260%);
  box-shadow: 0 0 20px rgba(30,255,0,0.5), 0 4px 10px rgba(0,0,0,0.1);
  transition: all 0.25s ease;
}

.glass-search-btn:hover {
  transform: scale(1.15);
  box-shadow: 0 0 36px rgba(30,255,0,0.7), 0 6px 14px rgba(0,0,0,0.15);
}

.glass-search-btn:active {
  transform: scale(0.95);
  box-shadow: 0 0 18px rgba(30,255,0,0.4), 0 3px 8px rgba(0,0,0,0.1);
}

/* Arama sonuçları */
#glassSearchResults {
  position: absolute;
  top: 68px; /* logo + arama kutusu altı */
  left: 50%;
  transform: translateX(-50%);
  width: 320px;
  background: rgba(255,255,255,0.95);
  border-radius: 14px;
  box-shadow: 0 8px 28px rgba(0,0,0,0.15);
  overflow: hidden;
  display: none;
  z-index: 999;
  font-family: "Genos", sans-serif;
}

#glassSearchResults a {
  display: block;
  padding: 12px 16px;
  color: #111;
  text-decoration: none;
  border-bottom: 1px solid #eee;
  font-size: 16px;
}

#glassSearchResults a:hover {
  background: var(--accent);
  color: #000;
}

#glassSearchResults .no-result {
  padding: 12px 16px;
  color: #666;
  font-size: 16px;
}
.glass-search-wrap {
  margin-top: -60px; /* Logo altı boşluğu minimum */
  padding: 0px 0px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(32px) saturate(250%);
  -webkit-backdrop-filter: blur(32px) saturate(250%);
  box-shadow: 0 8px 32px rgba(0,0,0,0.18), inset 0 0 20px rgba(255,255,255,0.1);
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: center;
}
.glass-search-wrap {
    margin-top: -60px;       /* Logo ile arası */
    padding: 0px 0px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.22);
    backdrop-filter: blur(28px) saturate(280%);
    -webkit-backdrop-filter: blur(28px) saturate(280%);
    
    /* iOS 17 tarzı iç parlaklık ve gölge */
    box-shadow:
        inset 0 0 30px rgba(255,255,255,0.2),
        inset 0 4px 12px rgba(255,255,255,0.4),
        0 10px 30px rgba(0,0,0,0.25);

    display: flex;
    gap: 12px;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.25s ease;
}
.search-suggestions {
    position: absolute;
    top: 100%;  /* arama kutusunun hemen altı */
    left: 0;
    right: 0;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 12px;
    box-shadow: 0 6px 16px rgba(0,0,0,0.2);
    overflow: hidden;
    display: none;
    z-index: 1000;
    max-height: 250px;
    overflow-y: auto;
}

.search-suggestions div {
    padding: 10px 14px;
    cursor: pointer;
    transition: background 0.2s;
}

.search-suggestions div:hover {
    background: var(--accent);
    color: #000;
}

/* ========== SEARCH: LIQUID GLASS OVERRIDE (iOS / Instagram style) ========== */
.search-wrap,
.glass-search-wrap {
    --search-glass-bg: rgba(26, 82, 50, 0.26);
    --search-glass-border: rgba(193, 255, 219, 0.28);
    --search-glass-shadow: rgba(5, 35, 20, 0.28);
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: -42px;
    padding: 5px 7px 5px 12px;
    min-height: 46px;
    border-radius: 999px;
    background: linear-gradient(160deg, rgba(20, 66, 40, 0.38), var(--search-glass-bg));
    border: 1px solid var(--search-glass-border);
    backdrop-filter: blur(22px) saturate(175%);
    -webkit-backdrop-filter: blur(22px) saturate(175%);
    box-shadow:
        0 14px 38px var(--search-glass-shadow),
        inset 0 0 0 rgba(255, 255, 255, 0);
    transition: transform .25s ease, box-shadow .3s ease, border-color .3s ease;
}

.search-wrap::before,
.glass-search-wrap::before {
    content: none;
    pointer-events: none;
}

.search-wrap:hover,
.search-wrap:focus-within,
.glass-search-wrap:hover,
.glass-search-wrap:focus-within {
    transform: translateY(-2px) scale(1.01);
    border-color: rgba(199, 255, 223, 0.58);
    box-shadow:
        0 16px 38px rgba(5, 35, 20, 0.32),
        0 0 0 1px rgba(153, 247, 188, 0.18);
}

.search-input,
.glass-search-input {
    width: min(54vw, 280px);
    border: 0;
    outline: 0;
    background: transparent;
    color: #041c10;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: .01em;
    padding: 0 6px;
}

.search-input::placeholder,
.glass-search-input::placeholder {
    color: rgba(8, 42, 24, 0.56);
}

.search-btn,
.glass-search-btn {
    width: 34px;
    height: 34px;
    border: 1px solid rgba(188, 255, 214, 0.4);
    border-radius: 999px;
    display: grid;
    place-items: center;
    color: #dffff0;
    cursor: pointer;
    background: linear-gradient(165deg, rgba(10, 44, 26, 0.88), rgba(22, 86, 52, 0.9));
    box-shadow:
        inset 0 1px 0 rgba(205, 255, 226, 0.22),
        0 8px 16px rgba(6, 28, 17, 0.38);
    transition: transform .2s ease, box-shadow .25s ease, filter .25s ease, border-color .25s ease;
}

.search-btn:hover,
.glass-search-btn:hover {
    transform: scale(1.1) rotate(-8deg);
    filter: saturate(1.12) brightness(1.05);
    border-color: rgba(204, 255, 226, 0.75);
    box-shadow:
        inset 0 1px 0 rgba(205, 255, 226, 0.34),
        0 10px 20px rgba(6, 28, 17, 0.42),
        0 0 16px rgba(144, 255, 189, 0.32);
}

.search-btn:active,
.glass-search-btn:active {
    transform: scale(0.94);
}

@media (max-width: 600px) {
    .search-wrap,
    .glass-search-wrap {
        margin-top: -26px;
        min-height: 42px;
        padding: 4px 6px 4px 10px;
    }

    .search-input,
    .glass-search-input {
        width: min(58vw, 220px);
        font-size: 16px;
    }

    .search-btn,
    .glass-search-btn {
        width: 32px;
        height: 32px;
    }
}



/* ========== SEARCH FINAL OVERRIDE ========== */
.search-wrap,
.glass-search-wrap {
    position: relative !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 10px !important;
    margin-top: 10px !important;
    padding: 7px 8px 7px 14px !important;
    min-height: 50px !important;
    border-radius: 999px !important;
    border: 1px solid rgba(255, 255, 255, 0.22) !important;
    background: rgba(255, 255, 255, 0.16) !important;
    backdrop-filter: blur(14px) saturate(170%) !important;
    -webkit-backdrop-filter: blur(14px) saturate(170%) !important;
    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.25) !important;
    transition: transform .2s ease, background .25s ease, border-color .25s ease, box-shadow .25s ease, backdrop-filter .25s ease !important;
}

.search-wrap::before,
.glass-search-wrap::before {
    content: none !important;
}

.search-wrap:hover,
.search-wrap:focus-within,
.glass-search-wrap:hover,
.glass-search-wrap:focus-within {
    transform: translateY(-1px) !important;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.08)) !important;
    border-color: rgba(219, 255, 234, 0.8) !important;
    backdrop-filter: blur(20px) saturate(190%) !important;
    -webkit-backdrop-filter: blur(20px) saturate(190%) !important;
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.16),
        0 0 22px rgba(151, 255, 202, 0.45),
        0 16px 34px rgba(0, 0, 0, 0.22),
        inset 0 1px 0 rgba(255, 255, 255, 0.55),
        inset 0 -1px 0 rgba(255, 255, 255, 0.18) !important;
}

.search-input,
.glass-search-input {
    width: min(52vw, 300px) !important;
    border: 0 !important;
    outline: 0 !important;
    background: transparent !important;
    color: #ffffff !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    letter-spacing: .01em !important;
    padding: 0 4px !important;
}

.search-input::placeholder,
.glass-search-input::placeholder {
    color: rgba(255, 255, 255, 0.8) !important;
}

.search-btn,
.glass-search-btn {
    width: 40px !important;
    height: 40px !important;
    border-radius: 14px !important;
    border: 1px solid rgba(255, 255, 255, 0.26) !important;
    display: grid !important;
    place-items: center !important;
    cursor: pointer !important;
    color: #ffffff !important;
    background: rgba(255, 255, 255, 0.16) !important;
    backdrop-filter: blur(14px) saturate(170%) !important;
    -webkit-backdrop-filter: blur(14px) saturate(170%) !important;
    box-shadow:
        0 10px 24px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.25) !important;
    transition: transform .2s ease, background .25s ease, border-color .25s ease, box-shadow .25s ease, backdrop-filter .25s ease !important;
}

.search-btn:hover,
.glass-search-btn:hover {
    transform: translateY(-1px) !important;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.08)) !important;
    border-color: rgba(219, 255, 234, 0.8) !important;
    backdrop-filter: blur(20px) saturate(190%) !important;
    -webkit-backdrop-filter: blur(20px) saturate(190%) !important;
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.16),
        0 0 20px rgba(151, 255, 202, 0.45),
        0 14px 28px rgba(0, 0, 0, 0.22),
        inset 0 1px 0 rgba(255, 255, 255, 0.55),
        inset 0 -1px 0 rgba(255, 255, 255, 0.18) !important;
}

.search-btn:active,
.glass-search-btn:active {
    transform: scale(0.96) !important;
}

.search-btn i,
.glass-search-btn i {
    font-size: 14px !important;
    line-height: 1 !important;
}

@media (max-width: 600px) {
    .search-wrap,
    .glass-search-wrap {
        margin-top: 8px !important;
        min-height: 44px !important;
        padding: 5px 7px 5px 11px !important;
    }

    .search-input,
    .glass-search-input {
        width: min(58vw, 220px) !important;
        font-size: 15px !important;
    }

    .search-btn,
    .glass-search-btn {
        width: 36px !important;
        height: 36px !important;
    }
}

/* ========== GLOBAL NAV BUTTONS ========== */
.back-home {
    display: none !important;
}

.footer-home-wrap {
    width: 100%;
    display: flex;
    justify-content: center;
    margin: 20px 0 8px;
}

.footer-home-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 9px 16px;
    border-radius: 12px;
    text-decoration: none;
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
    border: 1px solid rgba(255, 255, 255, 0.24);
    background: rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(14px) saturate(170%);
    -webkit-backdrop-filter: blur(14px) saturate(170%);
    box-shadow:
        0 10px 26px rgba(0, 0, 0, 0.28),
        inset 0 1px 0 rgba(255, 255, 255, 0.25);
    transition: transform .2s ease, background .25s ease, border-color .25s ease, box-shadow .25s ease, backdrop-filter .25s ease;
}

.footer-home-btn:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.08));
    border-color: rgba(255, 255, 255, 0.24);
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.16),
        0 0 16px rgba(151, 255, 202, 0.35),
        0 12px 28px rgba(0, 0, 0, 0.24);
}

.scroll-top-btn {
    position: fixed;
    right: 18px;
    bottom: 18px;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(14px) saturate(170%);
    -webkit-backdrop-filter: blur(14px) saturate(170%);
    box-shadow:
        0 10px 26px rgba(0, 0, 0, 0.28),
        inset 0 1px 0 rgba(255, 255, 255, 0.25);
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transform: translateY(8px);
    transition: opacity .2s ease, transform .2s ease, box-shadow .25s ease, background .25s ease;
    z-index: 999;
}

.scroll-top-btn.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.scroll-top-btn:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.08));
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.16),
        0 0 16px rgba(151, 255, 202, 0.35),
        0 12px 28px rgba(0, 0, 0, 0.24);
}

@media (max-width: 600px) {
    .footer-home-btn {
        font-size: 18px;
        padding: 9px 15px;
    }

    .scroll-top-btn {
        width: 40px;
        height: 40px;
        right: 12px;
        bottom: 12px;
        border-radius: 10px;
        font-size: 18px;
    }

}

/* ========== HOME SEARCH SUGGESTIONS ========== */
#searchWrap #searchResults {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    width: 100%;
    max-width: none;
    transform: none;
    box-sizing: border-box;
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 14px;
    backdrop-filter: blur(14px) saturate(170%);
    -webkit-backdrop-filter: blur(14px) saturate(170%);
    box-shadow:
        0 10px 26px rgba(0, 0, 0, 0.28),
        inset 0 1px 0 rgba(255, 255, 255, 0.25);
    overflow: hidden;
    z-index: 1200;
    display: none;
}

#searchWrap #searchResults a {
    display: block;
    padding: 11px 13px;
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

#searchWrap #searchResults a:last-child {
    border-bottom: 0;
}

#searchWrap #searchResults a:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.08));
}

/* ========== TOPIC HERO IMAGES ========== */
.topic-hero {
    width: min(920px, calc(100% - 32px));
    margin: 14px auto 24px;
}

.topic-hero img {
    width: 100%;
    max-height: 360px;
    object-fit: cover;
    display: block;
    border-radius: 22px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    box-shadow:
        0 18px 36px rgba(0, 0, 0, 0.18),
        inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.topic-hero figcaption {
    margin-top: 8px;
    font-size: 15px;
    line-height: 1.4;
    color: rgba(0, 0, 0, 0.72);
    text-align: center;
}

.topic-hero a {
    color: inherit;
}

/* ========== HOME CONTENT ========== */
.home-sections {
    width: min(1080px, 100%);
    margin: 18px auto 0;
    padding: 0 12px 28px;
}

.home-lead {
    max-width: 760px;
    margin: 0 auto 26px;
    text-align: center;
}

.home-lead h2 {
    margin: 0 0 8px;
    font-size: clamp(32px, 5vw, 46px);
    line-height: 0.95;
    color: #ffffff;
    text-shadow: 0 8px 20px rgba(0, 0, 0, 0.14);
}

.home-lead p {
    margin: 0;
    font-size: 19px;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.88);
}

.home-section {
    margin-top: 28px;
}

.home-section h3 {
    margin: 0 0 14px;
    font-size: 30px;
    color: #ffffff;
}

.home-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.home-card {
    display: block;
    text-decoration: none;
    color: #ffffff;
    padding: 18px 18px 16px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.13);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(16px) saturate(165%);
    -webkit-backdrop-filter: blur(16px) saturate(165%);
    box-shadow:
        0 14px 28px rgba(0, 0, 0, 0.16),
        inset 0 1px 0 rgba(255, 255, 255, 0.16);
    transition: transform .2s ease, box-shadow .25s ease, background .25s ease;
}

.home-card:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.17);
    box-shadow:
        0 18px 34px rgba(0, 0, 0, 0.18),
        0 0 18px rgba(189, 255, 212, 0.18);
}

.home-card strong {
    display: block;
    font-size: 24px;
    line-height: 1;
    margin-bottom: 8px;
}

.home-card span {
    display: block;
    font-size: 17px;
    line-height: 1.35;
    color: rgba(255, 255, 255, 0.84);
}

.quick-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.quick-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 8px 14px;
    border-radius: 999px;
    text-decoration: none;
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(14px) saturate(160%);
    -webkit-backdrop-filter: blur(14px) saturate(160%);
    transition: transform .18s ease, background .25s ease, box-shadow .25s ease;
}

.quick-tag:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.18);
    box-shadow:
        0 10px 22px rgba(0, 0, 0, 0.14),
        0 0 14px rgba(189, 255, 212, 0.16);
}

@media (max-width: 900px) {
    .home-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .topic-hero {
        width: min(100%, calc(100% - 20px));
        margin: 10px auto 18px;
    }

    .topic-hero img {
        max-height: 250px;
        border-radius: 18px;
    }

    .home-sections {
        padding: 0 8px 24px;
    }

    .home-grid {
        grid-template-columns: 1fr;
    }

    .home-card {
        padding: 16px;
        border-radius: 18px;
    }

    .home-card strong {
        font-size: 22px;
    }

    .home-card span {
        font-size: 16px;
    }
}
