/*
Theme Name: Get Info Base
Theme URI: https://www.getinfobase.com
Author: Get Info Base
Version: 1.8
*/

@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('https://www.getinfobase.com/wp-content/themes/info-theme/font/roboto-regular.woff2') format('woff2'),
       url('https://www.getinfobase.com/wp-content/themes/info-theme/font/roboto-regular.woff') format('woff');
}

@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('https://www.getinfobase.com/wp-content/themes/info-theme/font/roboto-700.woff2') format('woff2'),
       url('https://www.getinfobase.com/wp-content/themes/info-theme/font/roboto-700.woff') format('woff');
}

:root {
    --md-sys-font-family: 'Roboto', sans-serif;
    --md-sys-color-primary: #3C4043;
    --md-sys-color-on-primary: #FFFFFF;
    --md-sys-color-background: #F8F9FA;
    --md-sys-color-on-background: #202124;
    --md-sys-color-surface: #FFFFFF;
    --md-sys-color-on-surface: #3C4043;
    --md-sys-color-outline: #DADCE0;
    --transition-smooth: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

@media (prefers-color-scheme: dark) {
    :root {
        --md-sys-color-primary: #E8EAED;
        --md-sys-color-on-primary: #202124;
        --md-sys-color-background: #202124;
        --md-sys-color-on-background: #F1F3F4;
        --md-sys-color-surface: #303134;
        --md-sys-color-on-surface: #E8EAED;
        --md-sys-color-outline: #5F6368;
    }
}

[data-theme="dark"] {
    --md-sys-color-primary: #E8EAED;
    --md-sys-color-on-primary: #202124;
    --md-sys-color-background: #202124;
    --md-sys-color-on-background: #F1F3F4;
    --md-sys-color-surface: #303134;
    --md-sys-color-on-surface: #E8EAED;
    --md-sys-color-outline: #5F6368;
}

*, *::before, *::after {
    box-sizing: border-box;
    font-family: inherit;
}

html {
    font-family: var(--md-sys-font-family);
    -webkit-text-size-adjust: 100%;
    height: 100%;
}

body {
    height: 100%;
    margin: 0;
    padding: 0;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    color: var(--md-sys-color-on-background);
    background-color: var(--md-sys-color-background);
    font-family: var(--md-sys-font-family);
    max-width: 100vw;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    transition: background-color var(--transition-smooth), color var(--transition-smooth);
}

input, button, textarea, select {
    font-family: var(--md-sys-font-family);
}

body, p, h1, h2, h3, h4, h5, h6, a, div, span {
    overflow-wrap: break-word;
    word-wrap: break-word;
    word-break: normal;
}


h1 { font-size: 22px; font-weight: 700; }
h2 { font-size: 18px; font-weight: 700; }
h3 { font-size: 15px; font-weight: 700; }
h4, h5, h6 { font-size: 12px; font-weight: 700; }

@media (max-width: 768px) {
  h1 { font-size: 20px; }
  h2 { font-size: 16px; }
  h3 { font-size: 14px; }
}

p {
    font-size: 16px;
    margin-bottom: 10px;
    color: var(--md-sys-color-on-background);
}

a {
	color: var(--md-sys-color-on-background);
    text-decoration: none;
    font-weight: 700;
    transition: opacity 0.2s ease;
}

@media (max-width: 768px) {
    body {
        background-color: var(--md-sys-color-surface);
    }
}

b,
strong {
  font-weight: 700;
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="tel"],
input[type="number"],
textarea,
select {
    font-family: inherit;
    font-size: 14px;
    border: 1px solid var(--md-sys-color-outline);
    background-color: var(--md-sys-color-surface);
    color: var(--md-sys-color-on-surface);
    padding: 8px 12px;
    max-width: 100%;
    box-sizing: border-box;
}


input:focus,
textarea:focus {
    outline: none;
    border-color: var(--md-sys-color-primary);
    box-shadow: 0 0 0 2px rgba(204, 85, 0, 0.1);
}

input[type="submit"],
input[type="button"],
.button,
.wp-block-button__link {
    display: inline-block;
    padding: 10px 20px;
    background-color: var(--md-sys-color-primary);
    color: var(--md-sys-color-on-primary);
    border: none;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

hr {
  border: none;
  border-top: 1px solid var(--md-sys-color-outline);
  margin: 20px 0;
  width: 100%;
  background-color: transparent;
}

small {
  font-size: 80%;
  color: color-mix(in srgb, var(--md-sys-color-on-background) 70%, transparent);
}

label {
  display: inline-block;
  vertical-align: middle;
  margin-bottom: 8px;
  font-weight: 700;
  color: var(--md-sys-color-on-background);
}

button, input, select, textarea {
  margin: 0;
}

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--md-sys-color-surface);
}

::-webkit-scrollbar-thumb {
  background: var(--md-sys-color-outline);
}

::selection {
  background: var(--md-sys-color-primary);
  color: var(--md-sys-color-on-primary);
}

:target {
  scroll-margin-top: 70px;
}

br {
  display: block;
  margin-bottom: 10px;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  box-sizing: border-box;
}

.content-with-sidebar {
  display: flex;
  gap: 10px;
  width: 100%;
  padding: 10px 0;
  flex-wrap: nowrap;
}

.main-area {
  flex: 0 0 830px;
  border: 1px solid var(--border-color);
  box-sizing: border-box;
}

.sidebar-area {
  flex: 0 0 360px;
  border: 1px solid var(--border-color);
  background-color: var(--background-color);
  box-sizing: border-box;
}

@media (max-width: 768px) {
  .content-with-sidebar {
    flex-direction: column;
    gap: 0;
    padding: 0;
  }

  .main-area,
  .sidebar-area {
    flex: 1 1 100%;
    width: 100%;
    border: none;
  }
}

img, video, canvas, svg {
  max-width: 100%;
  height: auto;
}

#site-header {
  margin-bottom: 10px;
}

@media (min-width: 1024px) {
  #site-header {
    background-color: var(--md-sys-color-surface);
    padding: 15px 30px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease-in-out;
  }

  #site-header:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  }

  .main-area,
  .sidebar-area {
    background-color: var(--md-sys-color-surface);
    border: 1px solid #bfc7d1;
    background-clip: padding-box;
    box-shadow:
      0 0 0 1px rgba(0, 0, 0, 0.04),
      0 12px 30px rgba(0, 0, 0, 0.12),
      0 2px 6px rgba(0, 0, 0, 0.08),
      inset 0 1px 0 rgba(255, 255, 255, 0.9),
      inset 0 -1px 0 rgba(0, 0, 0, 0.04);
  }

  .content-with-sidebar {
    display: flex;
    gap: 10px;
    align-items: flex-start;
  }
}

article {
  padding: 10px;
  background-color: var(--md-sys-color-surface);
  font-family: var(--md-sys-font-family);
  color: var(--md-sys-color-on-background);
}

.full-width-content {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  background-color: var(--md-sys-color-surface);
  border: 1px solid var(--md-sys-color-outline);
}

.full-width-content img {
  max-width: 100%;
  height: auto;
  display: block;
  border-bottom: 1px solid var(--md-sys-color-outline);
}

.full-width-content h1 {
  font-family: var(--md-sys-font-family);
  text-align: center;
  margin: 0;
  padding: 20px 10px;
  border-bottom: 1px solid var(--md-sys-color-outline);
  letter-spacing: 1px;
}

#sidebar {
  display: flex;
  flex-direction: column;
  gap: 10px;
  background-color: var(--md-sys-color-surface);
  padding: 10px;
}

.site-footer {
  max-width: 1200px;
  margin: 10px auto 0;
  background-color: var(--md-sys-color-primary);
  color: var(--md-sys-color-surface);
  text-align: center;
  padding: 20px 10px;
  font-family: var(--md-sys-font-family);
  font-size: 13px;
  border: 1px solid #aaa;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1), inset 0 0 1px rgba(255, 255, 255, 0.2);
}

.tag-header h1,
.archive-header h1,
.ana-sayfa-baslik,
.search-header h1 {
  border: 1px solid var(--md-sys-color-outline);
  background-color: var(--md-sys-color-surface);
  padding: 10px;
  text-align: center;
  margin: 10px;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
  color: var(--md-sys-color-on-background);
  font-size: 14px;
  margin-bottom: 15px;
  text-align: center;
}

table th, table td {
  padding: 7px;
  vertical-align: middle;
  border: 1px solid rgba(128, 128, 128, 0.5);
  white-space: normal;
  word-break: normal;
  overflow-wrap: break-word;
  text-align: center;
}

table th {
  font-weight: 700;
  font-size: 14px;
}

table tbody > tr:nth-child(odd) > td,
table tbody > tr:nth-child(odd) > th {
  background-color: rgba(128, 128, 128, 0.07);
}

table td:nth-child(4) {
  max-width: 250px;
  text-align: center;
}

@media (max-width: 767px) {
  table {
    font-size: 13px;
  }

  table th,
  table td {
    padding: 7px;
  }

  table th {
    font-weight: 400;
  }
}

.tum-yorumlar-baslik {
  background-color: var(--md-sys-color-primary);
  color: var(--md-sys-color-surface);
  font-size: 15px;
  font-weight: 700;
  border: 1px solid var(--md-sys-color-outline);
  padding: 10px;
  text-align: center;
  margin: 10px;
}

.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-top: 10px;
  margin-bottom: 10px;
  max-width: 100%;
  height: auto;
}

.alignleft,
.alignright {
  max-width: 100%;
  height: auto;
  margin-top: 10px;
  margin-bottom: 10px;
}

.alignleft {
  float: left;
  margin-right: 10px;
}

.alignright {
  float: right;
  margin-left: 10px;
}

.alignnone {
  float: none;
  margin: 0;
  max-width: 100%;
  height: auto;
}

@media screen and (max-width: 768px) {
  .alignleft,
  .alignright {
    float: none;
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
}

.wp-caption {
  width: 100% !important; 
  max-width: 100% !important;
  text-align: center;
  font-size: 14px;
  font-family: var(--md-sys-font-family);
  color: var(--md-sys-color-on-surface);

  padding: 14px;
  margin-bottom: 14px;
  box-sizing: border-box;

  background-color: var(--md-sys-color-surface);
  border: 1px solid var(--md-sys-color-outline);

  box-shadow: 0 1px 3px rgba(0,0,0,0.05),
              0 8px 18px rgba(0,0,0,0.06);
}

.wp-caption img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;

  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.wp-caption-text {
  font-size: 13px;
  margin-top: 12px;
  line-height: 1.6;

  color: var(--md-sys-color-on-surface);

  border-top: 1px solid var(--md-sys-color-outline);
  padding-top: 10px;
}

.get-info-base-featured-image {
  width: 100% !important;
  height: auto !important;
  max-width: 100%;
  display: block;
  object-fit: cover; /* Görselin sünmesini/basılmasını önler, oranını korur */
  
  /* Eğer sorun üst/alt boşlukların çok az olmasından kaynaklı daralma ise: */
  margin-top: 15px !important;  /* Üstten boşluk */
  margin-bottom: 15px !important; /* Alttan boşluk */
  
  border: 1px solid var(--md-sys-color-outline);
}

.gib-post-title {
    text-align: center;
    border: 1px solid var(--md-sys-color-outline);
    color: var(--md-sys-color-on-surface);
    margin: 10px 0;
    padding: 10px;
}

.gib-post-content {
    padding: 0 10px;
    font-size: 16px;
    margin-bottom: 10px;
    text-align: justify;
    border: 1px solid var(--md-sys-color-outline);
    color: var(--md-sys-color-on-surface);
    background-color: var(--md-sys-color-surface);
}

.gib-post-content a {
    color: var(--md-sys-color-primary);
}

.gib-post-content a:hover {
    color: var(--md-sys-color-on-surface);
}

.gib-post-content h2 {
    background-color: var(--md-sys-color-primary);
    color: var(--md-sys-color-on-primary);
    padding: 10px;
    text-align: center;
}

.list-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 10px auto;
  padding: 0 10px;
  max-width: 1000px;
  font-family: var(--md-sys-font-family);
}

.list-item {
  display: flex;
  flex-direction: row;
  background: var(--md-sys-color-surface);
  border: 1px solid var(--md-sys-color-outline);
  padding: 15px;
  gap: 20px;
  align-items: stretch;
  position: relative;
}

.tag.desktop-show {
  display: flex;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  padding: 12px 8px;
  background: var(--md-sys-color-primary);
  color: var(--md-sys-color-on-primary);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  justify-content: center;
  align-items: center;
  min-width: 40px;
}

.tag.desktop-show a,
.tag.mobile-show a {
  color: inherit;
  text-decoration: none;
}

.image-area {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
}

.image-link img {
  width: 270px;
  height: 180px;
  object-fit: cover;
  display: block;
  border: 1px solid var(--md-sys-color-outline);
}

.content-area {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.get-info-base-flexible-title {
  display: flex !important;
  justify-content: space-between;
  align-items: flex-start;
  gap: 15px;
  margin: 0 0 8px 0;
}

.post-title a {
  color: var(--md-sys-color-on-background);
  text-decoration: none;
  line-height: 1.3;
}

.get-info-base-rating-badge {
  flex-shrink: 0;
  white-space: nowrap !important;
  border-radius: 5px;
  background: var(--md-sys-color-accent, #ffd43b);
  color: var(--md-sys-color-on-accent, #000);
  font-size: 11px;
  padding: 2px 8px;
  margin-top: 3px;
}

.summary-area {
  font-size: 13px;
  text-align: justify;
  color: var(--md-sys-color-on-surface);
}

@media (max-width: 767px) {
  .summary-area .mobile-section {
    display: none !important;
  }
}

.meta-info {
  display: flex;
  align-items: center;
  margin-top: 10px;
  gap: 10px;
  font-size: 12px;
  color: var(--md-sys-color-on-surface);
}

.meta-info a {
  color: inherit;
  text-decoration: none;
}

.tag.mobile-show {
  display: none !important;
}

@media screen and (max-width: 768px) {

  .tag.desktop-show {
    display: none !important;
  }

  .tag.mobile-show {
    display: flex !important;
    width: 100%;
    padding: 3px 0;
    font-size: 9px;
    font-weight: 700;
    margin-bottom: 5px;
    background: var(--md-sys-color-primary);
    color: var(--md-sys-color-on-primary);
    justify-content: center;
    align-items: center;
  }

  .list-item {
    display: flex;
    padding: 10px;
    gap: 12px;
    align-items: center;
  }

  .image-area {
    width: 150px;
  }

  .image-link {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .image-link img {
    width: 100%;
    height: 100px;
  }
}

.get-info-base-slider-area {
  position: relative;
  overflow: clip;
  width: 100%;
  max-width: 1200px;
  margin: auto;
  background-color: var(--md-sys-color-background);
  border: 1px solid rgb(from var(--md-sys-color-outline) r g b / 40%);
  box-shadow: 
    0 10px 30px -10px rgba(0, 0, 0, 0.2),
    0 1px 3px rgba(0, 0, 0, 0.05);
  transition: box-shadow var(--transition-smooth);
}

.get-info-base-slider-area:hover {
  box-shadow: 
    0 20px 40px -15px rgba(0, 0, 0, 0.3),
    0 1px 5px rgba(0, 0, 0, 0.1);
}

.get-info-base-slider-content {
  display: flex;
  width: 100%;
  touch-action: pan-y;
  cursor: grab;
  will-change: transform;
}

.get-info-base-slider-content:active {
  cursor: grabbing;
}

.get-info-base-slider-item {
  flex: 0 0 100%;
  position: relative;
  text-decoration: none;
  color: inherit;
  user-select: none;
  box-sizing: border-box;
  overflow: hidden;
}

.get-info-base-slider-item img {
  width: 100%;
  height: 450px;
  object-fit: cover; 
  object-position: center;
  display: block;
  transition: transform 0.8s ease;
}

.get-info-base-slider-item:hover img {
  transform: scale(1.02);
}

.get-info-base-slider-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0) 30%,
    rgba(0, 0, 0, 0.4) 65%,
    rgba(0, 0, 0, 0.85) 100%
  );
  pointer-events: none;
  z-index: 1;
}

.get-info-base-slider-overlay {
  position: absolute;
  bottom: 55px; 
  left: 5%;
  width: 90%;
  z-index: 2;
  box-sizing: border-box;
}

.get-info-base-slider-overlay h2 {
  margin: 0;
  text-align: left;
  padding: 24px 32px;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.5px;
  color: #FFFFFF;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px) saturate(120%);
  -webkit-backdrop-filter: blur(16px) saturate(120%);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
  transition: transform var(--transition-smooth), border-color var(--transition-smooth);
}

.get-info-base-slider-item:hover .get-info-base-slider-overlay h2 {
  border-color: rgb(from var(--md-sys-color-primary) r g b / 50%);
  transform: translateY(-5px);
}

.get-info-base-slider-nav {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  padding: 0 24px;
  box-sizing: border-box;
  pointer-events: none;
  z-index: 3;
}

.get-info-base-slider-prev,
.get-info-base-slider-next {
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgb(from var(--md-sys-color-surface) r g b / 60%);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--md-sys-color-outline);
  color: var(--md-sys-color-on-surface);
  font-size: 24px;
  cursor: pointer;
  pointer-events: initial;
  opacity: 0;
  transform: scale(0.9);
  transition: 
    background var(--transition-smooth), 
    color var(--transition-smooth), 
    border-color var(--transition-smooth),
    transform var(--transition-smooth),
    opacity var(--transition-smooth);
}

.get-info-base-slider-area:hover .get-info-base-slider-prev,
.get-info-base-slider-area:hover .get-info-base-slider-next {
  opacity: 1;
  transform: scale(1);
}

.get-info-base-slider-prev:hover,
.get-info-base-slider-next:hover {
  background: var(--md-sys-color-primary);
  color: var(--md-sys-color-on-primary);
  border-color: var(--md-sys-color-primary);
  transform: scale(1.08);
}

.get-info-base-slider-dots {
  position: absolute;
  bottom: 24px;
  right: 5%;
  display: flex;
  gap: 12px;
  z-index: 3;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 10px 18px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.get-info-base-slider-dot {
  width: 24px;
  height: 8px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 100px;
  cursor: pointer;
  transition: width 0.4s cubic-bezier(0.25, 1, 0.5, 1), background-color 0.3s, box-shadow 0.3s;
  border: none;
}

.get-info-base-slider-dot:hover {
  background: rgba(255, 255, 255, 0.9);
}

.get-info-base-slider-dot.active {
  width: 55px;
  background: var(--md-sys-color-on-primary);
  box-shadow: 0 0 12px var(--md-sys-color-primary);
}

.get-info-base-slider-dots .active,
.get-info-base-slider-dots .aktif,
.get-info-base-slider-dot.active,
.get-info-base-slider-dot.aktif,
.webevrensel-manset-nokta.active,
.webevrensel-manset-nokta.aktif {
  width: 55px;
  background: #ffffff;
  background-color: #ffffff;
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.9);
  opacity: 1;
}

@media (max-width: 768px) {
  .get-info-base-slider-dots .active,
  .get-info-base-slider-dots .aktif,
  .get-info-base-slider-dot.active,
  .get-info-base-slider-dot.aktif,
  .webevrensel-manset-nokta.active,
  .webevrensel-manset-nokta.aktif {
    flex-grow: 2;
    width: auto;
    background: #ffffff;
    background-color: #ffffff;
    box-shadow: 0 0 12px rgba(255, 255, 255, 0.9);
    opacity: 1;
  }
}

@media (max-width: 992px) {
  .get-info-base-slider-item img {
    height: 380px;
  }
  .get-info-base-slider-overlay h2 {
    font-size: 22px;
    padding: 16px 24px;
  }
}

@media (max-width: 768px) {
  .get-info-base-slider-area {
    margin: 10px auto;
    padding: 0 !important;
    width: calc(100% - 20px) !important;
    max-width: 100vw !important;
    overflow: hidden !important;
  }

  .get-info-base-slider-area .get-info-base-slider-content {
    display: flex !important;
    gap: 12px !important;
    padding: 0 !important;
    box-sizing: border-box !important;
    width: 100% !important;
  }

  .get-info-base-slider-item {
    flex: 0 0 82%;
    max-width: 82%;
  }

  .get-info-base-slider-item img {
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    aspect-ratio: 16 / 10 !important; 
    object-fit: cover !important;
  }

  .get-info-base-slider-overlay {
    bottom: 58px !important; 
    left: 5% !important;
    width: 90% !important;
  }

  .get-info-base-slider-overlay h2 {
    font-size: 15px;
    padding: 12px 16px;
    border-radius: 10px !important;
  }

  .get-info-base-slider-nav {
    display: none !important;
  }

  .get-info-base-slider-dots {
    position: absolute;
    bottom: 10px;
    left: 20px;
    right: 20px;
    transform: none;
    padding: 10px;
    background: rgba(0, 0, 0, 0.85);
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 5px;
    width: calc(100% - 40px);
    max-height: 40px;
    overflow: hidden;
    box-sizing: border-box;
    border-radius: 10px;
    z-index: 10;
  }
    
  .get-info-base-slider-dot {
    flex: 1 1 auto;
    min-width: 15px;
    max-width: 100%;
    height: 10px;
    min-height: 10px;
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1);
    opacity: 1;
    display: block;
    border-radius: 5px;
    box-sizing: border-box;
    transition: background-color 0.3s ease, flex-grow 0.4s ease;
  }
  
  .get-info-base-slider-dot.active {
    flex-grow: 2;
    box-shadow: 0 0 8px var(--md-sys-color-primary);
  }
}

body.admin-bar .top-menu.sticky {
  top: 32px;
}

#hamburgerMenu {
  display: none;
}

.mobile-menu,
.mobile-top-bar,
.top-menu {
  box-sizing: border-box;
}

.menu-on {
  overflow: hidden !important;
  height: 100vh !important;
  width: 100vw !important;
  position: fixed !important;
  top: 0;
  left: 0;
  z-index: 9998;
}

.mobile-menu {
  top: 0;
  left: 0;
  width: 85%;
  max-width: 350px;
  height: 100vh;
  overflow-y: auto;
  position: fixed !important;
  background: var(--md-sys-color-surface);
  color: var(--md-sys-color-on-background);
  box-shadow: 4px 0 20px rgba(0,0,0,0.25);
  z-index: 100000;
  transform: translateX(-110%);
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1), opacity 0.35s;
  display: flex;
  flex-direction: column;
  outline: 0;
  font-weight: 400;
  font-size: 14px;
}

.mobile-menu.aktif,
.mobile-menu.active {
  transform: translateX(0);
  opacity: 1;
}

.mobile-top-bar {
  display: none !important;
  background: var(--md-sys-color-primary);
  padding: 6px 8px;
  justify-content: space-between;
  align-items: center;
}

.mobile-top-bar button {
  background: none;
  border: none;
  font-size: 22px;
  color: var(--md-sys-color-on-primary);
  cursor: pointer;
  padding: 0 8px;
}

.mobile-top-bar img {
  height: auto;
  max-width: 100%;
  display: block;
}

@media (max-width: 768px) {
  #hamburgerMenu {
    display: block !important;
  }

  .mobile-top-bar {
    display: flex !important;
  }

  .menu-logo,
  .custom-menu-area {
    display: none !important;
  }

  .mobile-menu {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 100vw !important;
    background: var(--md-sys-color-surface);
    box-shadow: none;
    transform: translateX(-100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.35s;
    overflow-y: auto;
    z-index: 100000;
  }

  .mobile-menu.aktif,
  .mobile-menu.active {
    transform: translateX(0);
    background: color-mix(in srgb, var(--md-sys-color-primary), transparent 90%);
    opacity: 1;  
    display: flex !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  }

  .menu-background {
    display: none !important;
  }

  .menu-on {
    overflow: hidden !important;
    width: 100vw !important;
    height: 100vh !important;
    position: fixed !important;
    top: 0;
    left: 0;
  }

  .top-menu.sticky {
    display: block !important;
  }

  .top-menu.sticky .custom-menu-area,
  .top-menu.sticky .menu-logo {
    display: none !important;
  }
}

.custom-menu-area {
  font-size: 13px;
  max-width: 100%;
  background: var(--md-sys-color-primary);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 0 auto;
  padding: 10px;
  color: var(--md-sys-color-on-primary);
}

.menu-logo,
.mobile-logo {
  width: auto;
  max-width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.diger-kategoriler.acik {
    display: block; /* Veya temanıza göre görünürlük sağlayan CSS kodunuz */
    opacity: 1;
    visibility: visible;
}

.menu-list {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 10px;
  align-items: center;
  position: relative;
  box-sizing: border-box;
}

.menu-list li,
.diger-kategoriler li {
  position: relative;
  list-style: none;
  margin: 0;
}

.diger-kategoriler li {
  margin: 10px;
}

.menu-list li a,
.diger-kategoriler li a {
  display: inline-flex;
  align-items: center;
  background: var(--md-sys-color-surface);
  padding: 2px 8px;
  border-radius: 5px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 400;
  white-space: nowrap;
  box-sizing: border-box;
}

/* Hover ile açılan gizli menü alanı */
.diger-kategoriler {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 10000;
  margin-top: 10px;
  background: var(--md-sys-color-surface);
  padding: 10px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
  display: none;
  flex-direction: column;
}

/* Masaüstünde "Üç Nokta" üzerine gelince alt menüyü aç */
.nokta-wrapper:hover .diger-kategoriler {
  display: flex;
}

.nokta-wrapper,
.random-wrapper {
  position: relative;
  display: inline-block;
}

.nokta-wrapper .hover-kutu,
.random-wrapper .hover-kutu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--md-sys-color-primary);
  color: var(--md-sys-color-on-primary);
  font-size: 10px;
  padding: 4px 8px;
  font-weight: 700;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s, visibility .3s;
  z-index: 99999;
  margin-top: 10px;
}

.hover-kutu.gizle {
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

.mobile-menu-top {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 10px;
  justify-content: space-between;
}

.mobile-search-area form {
  display: flex;
  gap: 10px;
  flex: 1;
  align-items: center;
}

.mobile-search-area form input[type=search] {
  flex: 1;
  padding: 6px 8px;
  font-size: 14px;
  border: 1px solid var(--md-sys-color-outline);
  height: 28px;
  color: var(--md-sys-color-on-surface);
  background-color: var(--md-sys-color-surface);
}

.mobile-search-area form button {
  padding: 4px 12px;
  background: var(--md-sys-color-primary);
  color: var(--md-sys-color-on-primary);
  font-size: 14px;
  border: none;
  cursor: pointer;
  font-weight: 700;
}

.mobile-menu-list {
  list-style: none;
  padding: 10px;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 10px;
  overflow-y: auto;
  max-height: 70vh;
}

.mobile-menu-list a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 6px 0;
  background: var(--md-sys-color-surface);
  font-size: 13px;
  border: 1px solid var(--md-sys-color-outline);
  text-align: center;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}

.menu-background {
  width: 100vw;
  height: 100vh;
  background: rgba(0,0,0,0.45);
  visibility: hidden;
  opacity: 0;
  position: fixed;
  top: 0;
  left: 0;
  transition: opacity 0.35s;
  z-index: 99999;
}

.random-content-link {
  font-size: 24px;
  display: inline-flex;
  align-items: center;
  margin: 0 2px;
  color: var(--md-sys-color-on-background);
  text-decoration: none;
}

.menu-background.aktif,
.menu-background.active,
.nokta-wrapper:hover .hover-kutu,
.random-wrapper:hover .hover-kutu {
  opacity: 1;
  visibility: visible;
}

.top-menu.sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--md-sys-color-primary);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

#closeMenu, #kapatMenu {
  color: #ffffff !important;
  border: 1px solid var(--md-sys-color-outline);
  width: 25px;
  height: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
  background: none;
}

.pc-dark-mode-li {
  display: flex !important;
  align-items: center;
  justify-content: center;
  height: 100%;
  margin-left: 10px;
}

.mobile-right-area {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.theme-switch {
  display: inline-flex;
  align-items: center;
  vertical-align: middle;
}

.get-info-base-featured-image {
  width: 100%;
  height: auto;
  display: block;
  border: 1px solid var(--md-sys-color-outline);
}

.gib-analysis-area { 
  display: flex; 
  gap: 10px; 
  width: 100%;
}

.gib-analysis-box { 
  flex: 1; 
  padding: 12px 5px; 
  text-align: center; 
  background: var(--md-sys-color-surface); 
  border: 1px solid var(--md-sys-color-outline);
}

.gib-analysis-number { 
  display: block; 
  font-size: 19px; 
  font-weight: 800; 
  line-height: 1.2; 
  font-family: var(--md-sys-font-family);
}

.gib-analysis-label { 
  display: block; 
  font-size: 10px; 
  font-weight: 700; 
  margin-top: 3px; 
  color: var(--md-sys-color-on-background);
  opacity: 0.8;
}

/* Vibrant and Clear Colors */
.gib-positive .gib-analysis-number { color: #00c853; }
.gib-score-center .gib-analysis-number { color: #3d5afe; }
.gib-negative .gib-analysis-number { color: #ff1744; }

@media (max-width: 480px) {
  .gib-analysis-area { gap: 5px; }
  .gib-analysis-number { font-size: 15px; }
  .gib-analysis-label { font-size: 8px; }
}

#comments.comment-area {
    font-family: var(--md-sys-font-family);
    background-color: var(--md-sys-color-background);
    color: var(--md-sys-color-on-background);
    margin: 10px auto;
    transition: background-color var(--transition-smooth), color var(--transition-smooth);
}

.comment-title {
    background-color: var(--md-sys-color-primary);
    color: var(--md-sys-color-surface);
    font-size: 15px;
    font-weight: 700;
    border: 1px solid var(--md-sys-color-outline);
    padding: 10px;
    text-align: center;
    margin: 10px 0;
}

.comment-list {
    list-style: none;
    padding: 0;
    margin: 10px 0;
}

.comment-list .comment {
    background-color: var(--md-sys-color-surface);
    border-bottom: 1px solid var(--md-sys-color-outline);
    margin-bottom: 5px;
    transition: background-color var(--transition-smooth);
}

.comment-list .children {
    list-style: none;
    padding-left: 0 !important;
    margin-left: 0 !important;
    margin-top: 0;
    border-left: none !important;
}

.comment-list .children .comment {
    border-bottom: 1px solid var(--md-sys-color-outline);
    padding-left: 0;
}

.load-more-comments-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin-top: 10px;
}

.load-more-comments-wrapper .button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--md-sys-color-primary);
    color: var(--md-sys-color-on-primary);
    padding: 10px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease, opacity var(--transition-smooth);
    width: 100%;
    box-sizing: border-box;
}

.load-more-comments-wrapper small {
    color: var(--md-sys-color-on-surface);
    font-size: 13px;
    margin-bottom: 10px;
}

.no-comments {
    text-align: center;
    padding: 10px;
    color: var(--md-sys-color-on-surface);
    opacity: 0.6;
    font-size: 14px;
    border: 1px dashed var(--md-sys-color-outline);
    border-radius: 8px;
}

#commentform {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 10px !important;
    width: 100%;
}

.comment-form-comment {
    flex: 0 0 100% !important;
    width: 100% !important;
}

#comment {
    width: 100% !important;
    padding: 12px;
    margin-bottom: 0 !important;
    border: 1px solid var(--md-sys-color-outline, #ccc);
    box-sizing: border-box;
}

.comment-form-author {
    flex: 1 !important;
    margin: 0 !important;
}

.comment-form-author input {
    width: 100% !important;
    padding: 10px;
    box-sizing: border-box;
}

.form-submit {
    flex: 0 0 auto !important;
    margin: 0 !important;
}

.form-submit input[type="submit"] {
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
}

.comment-body {
    margin: 10px 0;
    padding: 10px;
    border: 1px solid var(--md-sys-color-outline);
    background-color: rgba(27, 14, 193, 0.04);
}

.comment-body p {
    text-align: justify;
    font-size: 13px;
}

.comment-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin-bottom: 4px;
}

.commenter-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.comment-avatar {
    width: 32px;
    height: 32px;
    object-fit: cover;
    border-radius: 50%;
}

.commenter-name {
    font-size: 15px;
    font-weight: 700;
}

.latest-comment,
.comment-id-date,
.comment-separator,
.comment-date {
    font-size: 12px;
    color: #333;
    white-space: nowrap;
}

#respond {
    background-color: rgba(27, 14, 193, 0.04);
    border: 1px solid var(--md-sys-color-outline);
    padding: 10px;
    margin: 10px 0;
}

.comment-form-comment label,
.comment-form-author label {
    display: block;
    font-size: 16px;
    font-weight: 700;
    color: #333;
    margin-bottom: 5px;
}

@media (max-width: 768px) {
    .commenter-name {
        font-size: 13px;
    }
}

.return-to-content-wrapper {
    display: flex;
    justify-content: center;
    margin: 10px 0;
    width: 100%;
}

.return-to-content-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--md-sys-color-primary);
    color: var(--md-sys-color-on-primary);
    font-family: var(--md-sys-font-family);
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    padding: 6px 0;
    width: 100%;
    border: 1px solid var(--md-sys-color-outline);
    box-sizing: border-box;
    transition: opacity var(--transition-smooth);
}

.return-to-content-button::before {
    content: "\2190";
    margin-right: 8px;
    font-weight: 700;
}

.return-to-content-button:hover {
    opacity: 0.9;
}

.gib-comments-footer {
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
    gap: 15px;
    padding: 12px 0;
    border-top: 1px solid var(--md-sys-color-outline);
    width: 100%;
    font-family: var(--md-sys-font-family);
    transition: border-color var(--transition-smooth);
}

.gib-comments-voting-area {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 1;
}

.gib-comments-question {
    font-size: 13px;
    font-weight: 600;
    color: var(--md-sys-color-on-background);
    white-space: nowrap;
    opacity: 0.85;
    margin-right: -5px;
}

.gib-comments-buttons {
    display: flex;
    gap: 6px;
}

.gib-comments-btn {
    display: inline-flex;
    align-items: center;
    background-color: rgba(27, 14, 193, 0.01);
    color: var(--md-sys-color-on-surface);
    border: 1px solid var(--md-sys-color-outline);
    border-radius: 6px;
    padding: 5px 10px;
    font-size: 12px;
    font-family: var(--md-sys-font-family);
    cursor: pointer;
    transition: background-color var(--transition-smooth), 
                color var(--transition-smooth), 
                border-color var(--transition-smooth);
    white-space: nowrap;
}

.comment-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    margin-left: auto;
}

.comment-reply a, 
.comment-edit-link a {
    display: inline-block;
    background-color: var(--md-sys-color-surface);
    color: var(--md-sys-color-on-surface);
    border: 1px solid var(--md-sys-color-outline);
    text-decoration: none;
    font-size: 12px;
    font-weight: 700;
    font-family: var(--md-sys-font-family);
    padding: 5px 12px;
    border-radius: 6px;
    transition: background-color var(--transition-smooth), 
                color var(--transition-smooth), 
                border-color var(--transition-smooth);
    white-space: nowrap;
}

@media screen and (max-width: 480px) {
    .gib-comments-footer {
        gap: 8px;
        overflow-x: auto;
        padding-bottom: 6px;
        scrollbar-width: thin; 
    }
    
    .gib-comments-question {
        font-size: 12px;
        margin-right: 2px;
    }
    
    .gib-comments-btn,
    .comment-reply a,
    .comment-edit-link a {
        padding: 4px 8px;
        font-size: 11px;
    }

    .comment-actions {
        margin-left: auto;
    }
}

.comment-reply-indicator {
    font-size: 12px;
    margin-left: 3px;
    color: var(--md-sys-color-on-surface);
    transition: color var(--transition-smooth);
}

.main-rating-box { 
    background: var(--md-sys-color-surface); 
    color: var(--md-sys-color-on-background); 
    padding: 10px; 
    margin: 10px 0; 
    border: 1px solid var(--md-sys-color-outline); 
    font-family: var(--md-sys-font-family);
    transition: background-color var(--transition-smooth), color var(--transition-smooth), border-color var(--transition-smooth);
}

.info-top-panel { 
    display: flex; 
    align-items: center; 
    gap: 25px; 
    margin-bottom: 25px; 
    border-bottom: 1px solid var(--md-sys-color-outline); 
    padding-bottom: 20px; 
}

.rating-center { 
    flex: 0 0 160px;
    text-align: center; 
    border-right: 1px solid var(--md-sys-color-outline); 
    padding-right: 10px;
}

.average-score { 
    font-size: 54px; 
    font-weight: 700; 
    line-height: 1; 
    display: block; 
    color: var(--md-sys-color-on-background);
}

.star-group { 
    font-size: 28px;
    color: var(--md-sys-color-outline);
    margin: 8px 0; 
    cursor: pointer; 
    letter-spacing: 2px;
}

.detailed-bars { flex: 1; }

.bar-row { 
    display: flex; 
    align-items: center; 
    gap: 10px; 
    margin-bottom: 5px; 
}

.bar-background { 
    flex: 1; 
    height: 8px;
    background: var(--md-sys-color-outline);
    overflow: hidden; 
}

.bar-fill { 
    height: 100%; 
    width: 0%;
    transition: width 0.6s ease-out;
}

.bar-percentage-value { 
    font-size: 11px; 
    color: var(--md-sys-color-on-background);
    min-width: 35px; 
    text-align: right; 
}

.bar-row[data-v="5"] .bar-fill, 
.bar-row[data-v="4"] .bar-fill { background: #2ecc71; }
.bar-row[data-v="3"] .bar-fill { background: #f1c40f; }
.bar-row[data-v="2"] .bar-fill, 
.bar-row[data-v="1"] .bar-fill { background: #e74c3c; }

.pro-stats-area { 
    display: flex; 
    justify-content: space-around; 
    background: var(--md-sys-color-background);
    padding: 15px 0; 
    margin-bottom: 10px; 
    border: 1px solid var(--md-sys-color-outline);
    transition: background-color var(--transition-smooth);
}

.stat-box { text-align: center; flex: 1; }
.stat-value { font-size: 18px; font-weight: 700; color: var(--md-sys-color-on-background); }
.stat-label { 
    font-size: 9px; 
    color: var(--md-sys-color-on-background);
    opacity: 0.7;
    margin-top: 3px; 
    font-weight: 700; 
}

.reaction-button-grid { 
    display: flex; 
    flex-wrap: wrap; 
    gap: 10px; 
    padding: 2px;
}

.reaction-button {
    flex: 1 1 calc(25% - 10px);
    min-width: 120px;
    background: var(--md-sys-color-surface);
    border: 1px solid var(--md-sys-color-outline);
    color: var(--md-sys-color-on-background);
    padding: 7px 10px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    font-weight: 700;
    position: relative;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    transform: translateZ(0);
    will-change: transform;
    transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1), background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.reaction-content {
    display: flex;
    font-size: 12px;
    align-items: center;
    gap: 5px;
}

.reaction-button.active {
    background: var(--md-sys-color-primary);
    color: var(--md-sys-color-on-primary);
    border-color: var(--md-sys-color-primary);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
}

.reaction-button.active .button-counter {
    color: var(--md-sys-color-on-primary);
    background: rgba(255, 255, 255, 0.2);
}

@keyframes orange-flash {
    0%, 100% { outline: 2px solid transparent; box-shadow: none; }
    25%, 75% { 
        outline: 2px solid var(--md-sys-color-primary); 
        box-shadow: 0 0 15px rgba(204, 85, 0, 0.4); 
    }
    50% { outline: 2px solid transparent; box-shadow: none; }
}

@keyframes elegant-lift {
    0% { transform: scale(1); }
    100% { transform: scale(1.04); border-color: #ff4444; box-shadow: 0 6px 18px rgba(255, 68, 68, 0.2); }
}

@keyframes elegant-drop {
    0% { transform: scale(1.04); }
    50% { transform: scale(1.08); border-color: #2ecc71; box-shadow: 0 0 14px rgba(46, 204, 113, 0.3); }
    100% { transform: scale(1); }
}

.reaction-button.pop { 
    animation: elegant-lift 0.45s cubic-bezier(0.22, 1, 0.36, 1) forwards; 
    z-index: 100; 
}

.reaction-button.target-highlight { 
    animation: orange-flash 1s ease-in-out forwards;
    z-index: 101;
}

.reaction-button.on-the-way { 
    z-index: 999; 
    border-color: var(--md-sys-color-primary) !important; 
    transition: transform 0.9s cubic-bezier(0.22, 1, 0.36, 1) !important;
}

.reaction-button.settled { 
    animation: elegant-drop 0.55s cubic-bezier(0.22, 1, 0.36, 1) forwards; 
}

.button-counter {
    padding: 2px 8px;
    font-size: 12px;
    font-weight: 700;
}

.warning-message { 
    color: #f51b05; 
    font-size: 12px; 
    margin-top: 10px; 
    text-align: center; 
}

.reaction-button.popular-reaction {
    position: relative;
    font-weight: 700;
    border: 2px solid var(--md-sys-color-outline);
}

.reaction-button.popular-reaction::after {
    content: "";
    position: absolute;
    top: -5px;
    right: -5px;
    width: 8px;
    height: 8px;
    background-color: #ef4444;
    border-radius: 50%;
    box-shadow: 0 0 0 2px var(--md-sys-color-surface);
    animation: blink 1.2s infinite ease-in-out;
}

@keyframes blink {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(0.8); }
}

.star-item {
    display: inline-block;
    background: linear-gradient(90deg, #FFD700 var(--fill-level, 0%), var(--md-sys-color-outline) var(--fill-level, 0%));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    --fill-level: 0%;
}

.star-item.user-score {
    transform: scale(1.6) !important;
    -webkit-text-fill-color: #FFD700 !important;
    filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.6));
    z-index: 99;
    position: relative;
}

.bottom-label {
    font-size: 13px;
    font-weight: 700;
    color: var(--md-sys-color-on-background);
}

@media (max-width: 768px) {
    .main-rating-box { padding: 15px; margin: 10px 0; }
    .info-top-panel { flex-direction: row; align-items: center; gap: 15px; padding-bottom: 15px; margin-bottom: 15px; }
    .rating-center { flex: 0 0 110px; padding-right: 15px; border-right: 1px solid var(--md-sys-color-outline); text-align: center; }
    .average-score { font-size: 38px; margin-bottom: 5px; }
    .star-group { font-size: 26px; margin: 5px 0; letter-spacing: 1px; white-space: nowrap; }
    .reaction-button { flex: 1 1 calc(50% - 10px); padding: 8px; font-size: 11px; }
}

/* --- Minimalist Premium Author Card --- */
.get-info-base-card {
    font-family: var(--md-sys-font-family), sans-serif;
    background: var(--md-sys-color-surface);
    color: var(--md-sys-color-on-surface);
    border: 1px solid var(--md-sys-color-outline);
    padding: 10px;
    margin: 10px 0;
    transition: border-color var(--transition-smooth), box-shadow var(--transition-smooth);
}

.get-info-base-category {
    background: var(--md-sys-color-surface);
    margin: 0 10px;
    transition: border-color var(--transition-smooth), box-shadow var(--transition-smooth);
}

/* Vertically Centers Left and Right Content */
.get-info-base-upper {
    display: flex;
    align-items: center; /* Magical touch to vertically center the avatar */
    gap: 16px;
}

.get-info-base-media {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.get-info-base-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid var(--md-sys-color-outline);
    padding: 2px;
}

.get-info-base-count {
    font-size: 12px;
    font-weight: 700;
    background: rgba(0, 51, 102, 0.06);
    color: var(--md-sys-color-primary);
    padding: 3px 8px;
    border-radius: 5px;
    white-space: nowrap;
}

.get-info-base-main-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex-grow: 1;
}

.get-info-base-header {
    display: flex;
    align-items: center;
    gap: 8px;
}

.get-info-base-name {
    font-size: 16px;
    font-weight: 700;
}

.get-info-base-name-link {
    color: var(--md-sys-color-on-surface);
    text-decoration: none;
    transition: color var(--transition-smooth);
}

.get-info-base-name-link:hover {
    color: var(--md-sys-color-primary);
}

.get-info-base-badge {
    font-size: 10px;
    font-weight: 700;
    background: rgba(0, 51, 102, 0.04);
    border: 1px solid var(--md-sys-color-outline);
    padding: 1px 6px;
    border-radius: 4px;
    opacity: 0.8;
}

/* Administrator Badge Style */
.get-info-base-admin {
    border-color: var(--md-sys-color-primary) !important;
}

.get-info-base-bio-text {
    font-size: 13px;
    line-height: 1.5;
    color: var(--md-sys-color-on-surface);
    opacity: 0.8;
}

/* --- Simplified Multi-Column Grid/Box Layout --- */
.get-info-base-premium-boxes {
    display: flex;
    gap: 8px;
    width: 100%;
    margin-top: 2px;
}

.get-info-base-box {
    flex: 1;
    background: rgba(0, 0, 0, 0.01);
    border: 1px solid var(--md-sys-color-outline);
    padding: 6px 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 2px;
}

.get-info-base-box-email {
    font-size: 11px;
    word-break: break-all;
}

/* Right Box Typography */
.get-info-base-box-time-label {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.3px;
}

.get-info-base-box-time-value {
    font-size: 12px;
    font-weight: 700;
}

/* --- Dark Mode Preferences Synchronization --- */
@media (prefers-color-scheme: dark) {
    .get-info-base-card {
        background: var(--md-sys-color-surface);
        border-color: var(--md-sys-color-outline);
    }
    .get-info-base-card:hover {
        border-color: rgba(255, 255, 255, 0.15);
    }
    .get-info-base-count {
        background: rgba(255, 255, 255, 0.06);
        color: var(--md-sys-color-primary);
    }
    .get-info-base-badge {
        background: rgba(255, 255, 255, 0.03);
    }
    .get-info-base-box {
        background: rgba(255, 255, 255, 0.01);
        border-color: var(--md-sys-color-outline);
    }
}

/* Complete integration for onsite data-theme selectors */
[data-theme="dark"] .get-info-base-card { background: var(--md-sys-color-surface); border-color: var(--md-sys-color-outline); }
[data-theme="dark"] .get-info-base-card:hover { border-color: rgba(255, 255, 255, 0.15); }
[data-theme="dark"] .get-info-base-count { background: rgba(255, 255, 255, 0.06); color: var(--md-sys-color-primary); }
[data-theme="dark"] .get-info-base-badge { background: rgba(255, 255, 255, 0.03); }
[data-theme="dark"] .get-info-base-box { background: rgba(255, 255, 255, 0.01); border-color: var(--md-sys-color-outline); }

/* --- Mobile Responsiveness Scaling --- */
@media (max-width: 480px) {
    .get-info-base-card { padding: 12px; }
    .get-info-base-upper { gap: 12px; }
    .get-info-base-avatar { width: 60px; height: 60px; }
    .get-info-base-name { font-size: 15px; }
    .get-info-base-bio-text { font-size: 12.5px; }
    .get-info-base-box { padding: 5px 8px; }
    .get-info-base-box-email { font-size: 9.5px; }
}

.theme-switch {
    position: relative;
    width: 70px;
    height: 27px;
    display: inline-block;
    transform: translateY(4px);
}

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

.theme-switch .slider {
    position: absolute;
    cursor: pointer;
    inset: 0;
    background-color: #f2f2f2;
    border: 1px solid #d1d5db;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    border-radius: 5px;
}

.theme-switch .slider:before {
    content: "☀️";
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 20px;
    width: 23px;
    left: 4px;
    top: 2px;
    background: #ffffff;
    border: 1px solid #d2d2d7;
    font-size: 12px;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    z-index: 5;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
    border-radius: 3px;
}

.theme-switch input:checked + .slider {
    background-color: #2c2c2e;
    border-color: #3a3a3c;
}

.theme-switch input:checked + .slider:before {
    content: "🌙";
    transform: translateX(39px);
    background: #1c1c1e;
    border-color: #48484a;
}

/* --- TEXT TRANSLATIONS (DESKTOP) --- */
.theme-switch .slider::after {
    content: "NIGHT";
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 8px;
    font-weight: 700;
    color: #8e8e93;
    opacity: 0.8;
    letter-spacing: 0.5px;
}

.theme-switch input:checked + .slider::after {
    content: "DAY";
    left: 10px;
    right: auto;
    color: #aeaeb2;
}

/* --- PREMIUM WIDTH FOR MENU SWITCHES --- */
.theme-switch-desktop,
.theme-switch-menu,
.theme-switch-mobile {
    width: 80px;
    min-width: 80px;
    flex-shrink: 0;
}

/* --- MOBILE OPTIMIZATION --- */
@media (max-width: 768px) {
    .premium-header {
        height: 60px;
    }
    
    .theme-switch {
        width: 60px;
        height: 24px;
        transform: translateY(2px);
    }

    .theme-switch-desktop,
    .theme-switch-menu,
    .theme-switch-mobile {
        width: 68px;
        min-width: 68px;
    }
    
    .theme-switch .slider:before {
        height: 18px;
        width: 20px;
        top: 2px;
        left: 3px;
        font-size: 10px;
    }
    
    .theme-switch input:checked + .slider:before {
        transform: translateX(32px);
    }
    
    /* --- TEXT TRANSLATIONS (MOBILE) --- */
    .theme-switch .slider::after {
        content: "NIGHT";
        font-size: 7px;
        right: 6px;
    }
    
    .theme-switch input:checked + .slider::after {
        content: "DAY";
        left: 8px;
        right: auto;
    }
    
    /* Other mobile settings */
    .ust-bilgi-paneli {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .puan-merkezi {
        border-right: none;
        border-bottom: 1px solid var(--md-sys-color-outline);
        padding-right: 0;
        padding-bottom: 15px;
        width: 100%;
    }

    .tepki-buton-izgarasi {
        grid-template-columns: 1fr 1fr;
    }

    .stat-value { 
        font-size: 16px; 
    }
}

/* Ana Footer Yapısı */
.site-footer {
  background-color: var(--md-sys-color-primary);
  padding: 10px 0;
  font-size: 14px;
  color: var(--md-sys-color-surface);
}

/* Navigasyon Yerleşimi (Masaüstü) */
.footer-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

/* Telif Hakkı Bloğu */
.site-info {
  color: var(--md-sys-color-surface); /* Renk değişkenle eşitlendi */
  white-space: nowrap;
}

.site-info a {
  color: var(--md-sys-color-surface); /* Renk değişkenle eşitlendi */
  text-decoration: none;
  font-weight: 700;
  margin: 0 4px;
  transition: color 0.3s ease;
}

.site-info a:hover {
  opacity: 0.8; /* Hover durumunda küçük bir görsel geri bildirim */
}

/* Footer Linkleri (Masaüstü) */
.footer-links {
  display: flex;
  gap: 20px;
}

.footer-links a {
  color: var(--md-sys-color-surface);
  text-decoration: none;
  white-space: nowrap;
  font-weight: 700;
  transition: opacity 0.3s ease;
}

.footer-links a:hover {
  opacity: 0.8;
}

/* Linklerin Arasındaki Dikey Çizgi " | " */
.footer-links a:not(:last-child)::after {
  content: " | ";
  color: var(--md-sys-color-surface);
  padding-left: 20px; /* Gap kullanıldığı için sadece sola padding yeterli */
  pointer-events: none; /* Çizginin tıklanabilir olmasını engeller */
}

/* --- Mobil Uyum (Responsive) --- */
@media screen and (max-width: 768px) {
  .footer-nav {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  .site-info {
    white-space: normal;
    text-align: center;
  }

  .footer-links {
    font-size: 13px;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
  }

  /* Mobilde dikey çizgileri kaldırıp flex-gap ile temiz bir görünüm sağlıyoruz */
  .footer-links a:not(:last-child)::after {
    content: "";
    padding: 0;
  }
}

.error-404 h1,
.message-404,
.return-to-homepage-404 {
  padding: 10px;
  margin: 10px;
  text-align: center;
}

/* ==========================================================================
   Get-Info-Base İçerik Grid Düzeni (CSS)
   ========================================================================== */

/* Ana Başlık Kapsayıcı Kutusu (Yeni Eklenen Başlık Kısa Kodları İçin) */
.get_info_base_title_box {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    position: relative;
    width: 100%;
}

.get_info_base_title_icon {
    display: block;
    object-fit: contain;
    flex-shrink: 0;
}

.get_info_base_title_text {
    font-size: 18px;
    font-weight: 700;
    margin: 0;
    white-space: nowrap;
    color: var(--md-sys-color-on-surface, #222);
}

.get_info_base_horizontal_line {
    flex-grow: 1;
    height: 2px;
    background: var(--md-sys-color-outline-variant, #e0e0e0);
    margin-left: 10px;
}



/* ==========================================================================
   1. GENERAL CONTRIBUTORS LIST GRID STRUCTURE ([infobase-contributors])
   ========================================================================== */
.author-title h1 {
  border: 1px solid var(--md-sys-color-outline);
  padding: 10px;
  text-align: center;
  color: var(--md-sys-color-on-background);
  background: var(--md-sys-color-surface);
}

.infobase-contributors-grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px;
    margin-top: 10px;
    margin-bottom: 10px;
    box-sizing: border-box;
    text-align: center;
    border: 1px solid var(--md-sys-color-outline);
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.contributor-profile-card {
    background-color: var(--md-sys-color-surface);
    border: 1px solid var(--md-sys-color-outline);
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    transition: transform 0.2s ease;
    color: var(--md-sys-color-on-background);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.contributor-avatar-image {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
    border: 3px solid #ddd;
    display: block;
}

.contributor-display-name {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    text-align: center;
}

.contributor-display-name a {
    color: var(--md-sys-color-on-background);
    text-decoration: none;
}

.contributor-display-name a:hover {
    color: var(--md-sys-color-primary);
}

.contributor-rank-badge {
    text-align: center;
    font-size: 15px;
    margin-bottom: 10px;
}

.contributor-total-articles {
    font-size: 14px;
    text-align: center;
    font-weight: 700;
    margin-bottom: 10px;
}

.contributor-last-active {
    font-size: 13px;
    text-align: center;
}

.contributor-card-divider {
    border: 0;
    border-top: 1px solid var(--md-sys-color-outline);
    margin: 15px 0;
    width: 100%;
}

.contributor-short-bio {
    font-size: 14px;
    margin-bottom: 10px;
}

/* ==========================================================================
   3. PREMIUM CONTRIBUTOR BIOGRAPHY BOX ([infobase_contributor_bio])
   ========================================================================== */
.ib-profile-card {
    font-family: var(--md-sys-font-family), sans-serif;
    background: var(--md-sys-color-surface);
    color: var(--md-sys-color-on-surface);
    border: 1px solid var(--md-sys-color-outline);
    padding: 10px;
    margin: 10px 0;
    transition: border-color var(--transition-smooth), box-shadow var(--transition-smooth);
}

.contributor-category {
    background: var(--md-sys-color-surface);
    margin: 0 10px;
    transition: border-color var(--transition-smooth), box-shadow var(--transition-smooth);
}

.ib-profile-upper {
    display: flex;
    align-items: center;
    gap: 16px;
}

.ib-profile-media {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.ib-profile-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid var(--md-sys-color-outline);
    padding: 2px;
}

.ib-profile-count {
    font-size: 12px;
    font-weight: 700;
    background: rgba(0, 51, 102, 0.06);
    color: var(--md-sys-color-primary);
    padding: 3px 8px;
    border-radius: 5px;
    white-space: nowrap;
}

.ib-profile-main-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex-grow: 1;
}

.ib-profile-header {
    display: flex;
    align-items: center;
    gap: 8px;
}

.ib-profile-name {
    font-size: 16px;
    font-weight: 700;
}

.ib-author-profile-link {
    color: var(--md-sys-color-on-surface);
    text-decoration: none;
    transition: color var(--transition-smooth);
}

.ib-author-profile-link:hover {
    color: var(--md-sys-color-primary);
}

.ib-profile-badge {
    font-size: 10px;
    font-weight: 700;
    background: rgba(0, 51, 102, 0.04);
    border: 1px solid var(--md-sys-color-outline);
    padding: 1px 6px;
    border-radius: 4px;
    opacity: 0.8;
}

.ib-profile-badge.site-administrator {
    /* Premium box admin styles */
}

.ib-profile-bio-text {
    font-size: 13px;
    line-height: 1.5;
    color: var(--md-sys-color-on-surface);
    opacity: 0.8;
}

.ib-profile-stat-boxes {
    display: flex;
    gap: 8px;
    width: 100%;
    margin-top: 2px;
}

.ib-stat-box {
    flex: 1;
    background: rgba(0, 0, 0, 0.01);
    border: 1px solid var(--md-sys-color-outline);
    padding: 6px 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 2px;
}

.ib-stat-email {
    font-size: 11px;
    word-break: break-all;
}

.ib-stat-time-label {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.3px;
}

.ib-stat-time-value {
    font-size: 12px;
    font-weight: 700;
}

/* ==========================================================================
   4. DARK MODE & MOBILE RESPONSIVENESS
   ========================================================================== */
@media (prefers-color-scheme: dark) {
    .ib-profile-card {
        background: var(--md-sys-color-surface);
        border-color: var(--md-sys-color-outline);
    }
    .ib-profile-card:hover {
        border-color: rgba(255, 255, 255, 0.15);
    }
    .ib-profile-count {
        background: rgba(255, 255, 255, 0.06);
        color: var(--md-sys-color-primary);
    }
    .ib-profile-badge {
        background: rgba(255, 255, 255, 0.03);
    }
    .ib-stat-box {
        background: rgba(255, 255, 255, 0.01);
        border-color: var(--md-sys-color-outline);
    }
}

[data-theme="dark"] .ib-profile-card { background: var(--md-sys-color-surface); border-color: var(--md-sys-color-outline); }
[data-theme="dark"] .ib-profile-card:hover { border-color: rgba(255, 255, 255, 0.15); }
[data-theme="dark"] .ib-profile-count { background: rgba(255, 255, 255, 0.06); color: var(--md-sys-color-primary); }
[data-theme="dark"] .ib-profile-badge { background: rgba(255, 255, 255, 0.03); }
[data-theme="dark"] .ib-stat-box { background: rgba(255, 255, 255, 0.01); border-color: var(--md-sys-color-outline); }

@media (max-width: 480px) {
    .ib-profile-card { padding: 12px; }
    .ib-profile-upper { gap: 12px; }
    .ib-profile-avatar { width: 60px; height: 60px; }
    .ib-profile-name { font-size: 15px; }
    .ib-profile-bio-text { font-size: 12.5px; }
    .ib-stat-box { padding: 5px 8px; }
    .ib-stat-email { font-size: 9.5px; }
}

/* ==========================================================================
   GetInfoBase 16:9 (300x169) Minimal Encyclopedic CSS
   ========================================================================= */

/* Elegant Index-Style Main Heading */
.gib-main-h {
    font-family: var(--md-sys-font-family);
    font-size: 13px;
    font-weight: 700;
    color: var(--md-sys-color-on-background);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 25px 0 12px 0;
    padding-bottom: 4px;
    border-bottom: 1px solid var(--md-sys-color-primary);
    display: block;
    opacity: 0.8;
}

/* 
   Default Layout: Mobile-First
   Forces EXACTLY 2 CARDS SIDE-BY-SIDE on mobile screen sizes.
*/
.gib-grid-wrap { 
    display: grid; 
    grid-template-columns: repeat(2, 1fr); 
    gap: 8px; /* Tighter gap for small screens */
    margin-bottom: 30px;
    width: 100%;
    box-sizing: border-box;
}

/* 
   Desktop (PC) Layout: Activated at 768px and wider.
   Forces EXACTLY 3 CARDS SIDE-BY-SIDE.
*/
@media (min-width: 768px) {
    .gib-grid-wrap {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px; /* Perfect breathing room for desktop */
    }
}

/* Micro Card Structure (Crisp corners, clean look) */
.gib-card { 
    background: var(--md-sys-color-surface); 
    border: 1px solid var(--md-sys-color-outline); 
    position: relative; 
    display: flex;
    flex-direction: column;
    transition: border-color var(--transition-smooth);
    box-sizing: border-box;
}

/* Border color change on hover instead of generic heavy shadows */
.gib-card:hover {
    border-color: var(--md-sys-color-primary);
}

/* Perfect 16:9 Cinematic Image Container */
.gib-img-area { 
    position: relative; 
    width: 100%;
    aspect-ratio: 16 / 9; 
    max-height: 169px; 
    background-size: cover; 
    background-position: center;
    background-repeat: no-repeat;
    background-color: var(--md-sys-color-outline);
    overflow: hidden; /* Prevents inside contents from stretching the card */
}

/* Invisible overlay link that makes the entire card clickable */
.gib-full-link { 
    position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 3; 
}

nav.get-info-base-page-numbers.get-info-base-full-width {
  width: 100%;
  text-align: center;
  padding: 10px;
  box-sizing: border-box;
}

@media (max-width: 768px) {
  nav.get-info-base-page-numbers.get-info-base-full-width {
    padding: 0 10px;
  }
}

nav.get-info-base-page-numbers.get-info-base-full-width ul.get-info-base-page-numbers {
  display: flex;
  justify-content: center;
  list-style: none;
  padding: 10px;
  margin: 0;
  max-width: 100%;
  border: 1px solid var(--md-sys-color-outline);
  background-color: var(--md-sys-color-surface);
  box-shadow: inset 0 1px 3px #eee;
  flex-wrap: wrap;
  gap: 5px;
}

nav.get-info-base-page-numbers.get-info-base-full-width ul.get-info-base-page-numbers li {
  flex-grow: 1;
  min-width: 24px;
  margin: 0;
  list-style: none;
}

nav.get-info-base-page-numbers.get-info-base-full-width ul.get-info-base-page-numbers li:has(.get-info-base-active) {
  flex-grow: 3;
}

nav.get-info-base-page-numbers.get-info-base-full-width ul.get-info-base-page-numbers li:has(.dots) {
  flex-grow: 0;
}

nav.get-info-base-page-numbers.get-info-base-full-width ul.get-info-base-page-numbers li a,
nav.get-info-base-page-numbers.get-info-base-full-width ul.get-info-base-page-numbers li span {
  display: block;
  border: 1px solid var(--md-sys-color-outline);
  padding: 4px 8px;
  font-size: 13px;
  color: var(--md-sys-color-on-background);
  min-height: 24px;
  text-align: center;
  text-decoration: none;
  transition: color 0.3s ease, background-color 0.3s ease;
  box-sizing: border-box;
  width: 100%;
  white-space: nowrap;
}

nav.get-info-base-page-numbers.get-info-base-full-width ul.get-info-base-page-numbers li span.get-info-base-active,
nav.get-info-base-page-numbers.get-info-base-full-width ul.get-info-base-page-numbers li a.get-info-base-active {
  background-color: var(--md-sys-color-primary);
  color: var(--md-sys-color-surface);
  font-weight: 700;
  cursor: default;
  pointer-events: none;
}

nav.get-info-base-page-numbers.get-info-base-full-width ul.get-info-base-page-numbers li a:hover {
  color: var(--md-sys-color-primary);
}


body.sticky-padding { padding-top: 60px; }

.top-menu {
    width: 100%;
    background-color: var(--md-sys-color-surface);
    border-bottom: 1px solid var(--md-sys-color-outline);
    z-index: 100;
    transition: background-color var(--transition-smooth), border-color var(--transition-smooth);
}

.top-menu.sticky {
    position: fixed;
    top: 0;
    left: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.mobile-top-bar {
    display: none;
    padding: 10px 15px;
}

#hamburgerMenu {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
}

.custom-menu-area {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px 20px;
}

.menu-logo img, .mobile-logo img, .mobile-menu-logo img {
    display: block;
    width: auto;
}

.menu-list {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 10px;
}

.menu-list li a {
    color: var(--md-sys-color-on-background);
    text-decoration: none;
    font-weight: 700;
    transition: color var(--transition-smooth);
}

.menu-list li a:hover {
    color: var(--md-sys-color-primary);
}

.more-menu-li { position: relative; }
.dots-wrapper { display: inline-block; }
.dots-link { font-size: 20px; padding: 5px; display: block; text-decoration: none; color: var(--md-sys-color-on-background); }

.tooltip-box {
    position: absolute;
    bottom: -35px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--md-sys-color-primary);
    color: var(--md-sys-color-on-primary);
    padding: 4px 10px;
    font-size: 12px;
    border-radius: 4px;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition-smooth), visibility var(--transition-smooth);
}

.dots-wrapper:hover .tooltip-box {
    opacity: 1;
    visibility: visible;
}

.tooltip-box.hide {
    display: none !important;
}

.dropdown-categories {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    background-color: var(--md-sys-color-surface);
    border: 1px solid var(--md-sys-color-outline);
    border-radius: 8px;
    list-style: none;
    margin: 10px 0 0;
    padding: 8px 0;
    min-width: 180px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
    z-index: 110;
}

.dropdown-categories.open { display: block !important; }

.dropdown-categories li a {
    display: block;
    padding: 10px 20px;
    white-space: nowrap;
    color: var(--md-sys-color-on-background) !important;
}

.dropdown-categories li a:hover { 
    background-color: var(--md-sys-color-background);
    color: var(--md-sys-color-primary) !important;
}

.desktop-search form, .mobile-search-area form { display: flex; gap: 6px; }

.desktop-search input, .mobile-search-area input {
    background-color: var(--md-sys-color-background);
    color: var(--md-sys-color-on-background);
    border: 1px solid var(--md-sys-color-outline);
    padding: 8px 14px;
    border-radius: 6px;
    font-family: var(--md-sys-font-family);
    outline: none;
}

.desktop-search button, .mobile-search-area button {
    background-color: var(--md-sys-color-primary);
    color: var(--md-sys-color-on-primary);
    border: 1px solid var(--md-sys-color-outline);
    padding: 8px 14px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 500;
}

.theme-switch {
    display: inline-block;
    width: 46px;
    height: 24px;
    position: relative;
}

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

.slider {
    position: absolute;
    cursor: pointer;
    top: 0; left: 0; right: 0; bottom: 0;
    background-color: var(--md-sys-color-outline);
    transition: background-color var(--transition-smooth);
    border-radius: 24px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 16px; width: 16px;
    left: 4px; bottom: 4px;
    background-color: var(--md-sys-color-surface);
    transition: transform var(--transition-smooth);
    border-radius: 50%;
}

input:checked + .slider { background-color: var(--md-sys-color-primary); }
input:checked + .slider:before { 
    transform: translateX(22px); 
    background-color: var(--md-sys-color-on-primary);
}

.mobile-menu {
    position: fixed;
    top: 0; left: -280px;
    width: 280px; height: 100%;
    background-color: var(--md-sys-color-surface);
    border-right: 1px solid var(--md-sys-color-outline);
    z-index: 200;
    transition: left var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

.mobile-menu.active { left: 0; }

.mobile-menu-list {
    list-style: none;
    padding: 15px;
    margin: 0;
    overflow-y: auto;
    flex: 1;
}

.mobile-menu-list li { margin-bottom: 12px; }
.mobile-menu-list li a { color: var(--md-sys-color-on-background); text-decoration: none; display: block; padding: 6px 0; }
.close-menu-btn { background: none; border: none; cursor: pointer; color: var(--md-sys-color-on-background); }

.menu-background {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background-color: var(--overlay-bg);
    z-index: 150;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition-smooth), visibility var(--transition-smooth);
}

.menu-background.active { opacity: 1; visibility: visible; }

@media (max-width: 991px) {
    .custom-menu-area { display: none; }
    .mobile-top-bar { display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid var(--md-sys-color-outline); }
}

/* Widget Structure */
.content-body {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    width: 100%;
    box-sizing: border-box;
}

.content-box {
    background: var(--md-sys-color-surface, #fff);
    border: 1px solid var(--md-sys-color-outline, #e0e0e0);
    overflow: hidden;
    min-width: 0;
    transition: border-color .25s ease, transform .25s ease, box-shadow .25s ease;
}

.content-box:hover {
    border-color: var(--md-sys-color-primary, #003366);
    box-shadow: 0 4px 12px rgba(0, 51, 102, 0.08);
}

.content-body > .content-box:nth-child(3n+1) {
    grid-column: span 2;
}

.image-row {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.content-image {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.content-image img {
    display: block;
    width: 100%;
    max-width: 100%;
    aspect-ratio: 16/9;
    height: auto;
    object-fit: cover;
}

.category-badge {
    position: absolute;
    left: 8px;
    top: 8px;
    padding: 4px 8px;
    background: rgba(255, 255, 255, .92);
    color: var(--md-sys-color-primary, #003366);
    font-size: 11px;
    font-weight: 700;
    text-decoration: none;
    z-index: 2;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

[data-theme="dark"] .category-badge {
    background: rgba(20, 20, 20, .92);
}

.content-details {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 12px;
    min-width: 0;
    flex-grow: 1;
    justify-content: space-between;
}

.content-title {
    text-align: center;
    margin: 0;
    font-size: 16px;
    line-height: 22px;
    font-weight: 700;
    word-wrap: break-word;
}

.content-title a {
    color: var(--md-sys-color-on-surface, #333);
    text-decoration: none;
}

.content-title a:hover {
    color: var(--md-sys-color-primary, #003366);
}

.side-content-display {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    color: #777;
    margin-top: auto;
}

[data-theme="dark"] .side-content-display {
    color: #bbb;
}

.newest-badge {
    padding: 2px 6px;
    background: rgba(0, 51, 102, .08);
    color: var(--md-sys-color-primary, #003366);
    font-size: 11px;
    font-weight: 700;
}

.widget-title-box {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 24px 0 16px 0;
    width: 100%;
}

.widget-title-icon {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.widget-title-text {
    margin: 0;
    font-size: 13px;
    font-weight: 700;
    color: var(--md-sys-color-on-surface, #222);
    white-space: nowrap;
}

.widget-horizontal-line {
    flex: 1;
    height: 1px;
    background: var(--md-sys-color-outline, #e0e0e0);
}

/* ==========================================================================
   Get Info Base 16:9 (300x169) Compliant Standard Encyclopedic CSS
   ========================================================================== */

.gib-main-h {
    font-family: var(--md-sys-font-family);
    font-size: 13px;
    font-weight: 700;
    color: var(--md-sys-color-on-background);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 25px 0 12px 0;
    padding-bottom: 4px;
    border-bottom: 1px solid var(--md-sys-color-primary);
    display: block;
    opacity: 0.8;
}

.gib-grid-wrap { 
    display: grid; 
    grid-template-columns: repeat(2, 1fr); 
    gap: 6px;
    margin-bottom: 30px;
    width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

@media (min-width: 420px) {
    .gib-grid-wrap {
        gap: 8px;
    }
}

@media (min-width: 768px) {
    .gib-grid-wrap {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px; 
    }
}

.gib-card { 
    background: var(--md-sys-color-surface); 
    border: 1px solid var(--md-sys-color-outline); 
    position: relative; 
    display: flex;
    flex-direction: column;
    transition: border-color var(--transition-smooth);
    box-sizing: border-box;
}

.gib-card:hover {
    border-color: var(--md-sys-color-primary);
}

.gib-img-area { 
    position: relative; 
    width: 100%;
    aspect-ratio: 16 / 9; 
    height: auto;
    max-height: 169px; 
    background-size: cover; 
    background-position: center;
    background-repeat: no-repeat;
    background-color: var(--md-sys-color-outline);
    overflow: hidden; 
    box-sizing: border-box;
}

.gib-full-link { 
    position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 3; 
}

.gib-card .gib-img-area a.gib-cat-tag { 
    position: absolute; 
    bottom: 6px; 
    left: 6px; 
    display: inline-flex; 
    align-items: center;
    justify-content: center;
    width: max-content; 
    max-width: 80%;
    height: auto; 
    min-height: auto;
    max-height: none;
    background: var(--md-sys-color-primary); 
    color: var(--md-sys-color-on-primary); 
    font-family: var(--md-sys-font-family);
    font-size: 10px; 
    font-weight: 700;
    letter-spacing: 0.5px;
    padding: 2px 5px; 
    margin: 0; 
    line-height: 1.2; 
    z-index: 2; 
    text-decoration: none;
    box-shadow: none;
    box-sizing: border-box;
}

.gib-card .gib-img-area .gib-badge { 
    position: absolute; 
    top: 6px; 
    right: 6px; 
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: max-content;
    height: auto;
    min-height: auto;
    max-height: none;
    font-family: var(--md-sys-font-family);
    font-size: 8px; 
    font-weight: 700; 
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 2px 5px; 
    margin: 0;
    line-height: 1.2;
    z-index: 2; 
    border-radius: 0px;
    box-shadow: none;
    box-sizing: border-box;
}

.gib-info { 
    padding: 8px; 
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.gib-title-text { 
    font-family: var(--md-sys-font-family); 
    font-size: 14px; 
    line-height: 1.35;
    margin: 0 0 6px 0; 
    font-weight: 600; 
    color: var(--md-sys-color-on-surface);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;  
    overflow: hidden;
}

.gib-title-text a { 
    color: inherit; 
    text-decoration: none;
    z-index: 4;
}

.gib-meta-box { 
    margin-top: auto;
    padding-top: 2px;
}

@media (max-width: 420px) {
    .gib-title-text {
        font-size: 11px;
        line-height: 1.3;
        margin-bottom: 4px;
    }

    .gib-card .gib-img-area a.gib-cat-tag { 
        width: max-content !important;
        max-width: 80% !important;
        font-size: 7px !important;
        padding: 1px 4px !important;
        bottom: 4px !important;
        left: 4px !important;
    }

    .gib-card .gib-img-area .gib-badge { 
        width: max-content !important;
        font-size: 7px !important;
        padding: 1px 4px !important;
        top: 4px !important;
        right: 4px !important;
    }
    
    .gib-info {
        padding: 6px; 
    }
}

.rank-math-breadcrumb {
    border: 1px solid var(--md-sys-color-outline);
    padding: 10px;
}

.rank-math-breadcrumb p {
    margin: 0;
    padding: 0;
    font-size: 13px;
	line-height: 1.6;
}

.rank-math-breadcrumb a {
    color: var(--md-sys-color-on-background);
    text-decoration: none;
    font-weight: 700;
    transition: 0.3s;
}

.rank-math-breadcrumb a:hover {
    color: var(--md-sys-color-primary);
}

.rank-math-breadcrumb .separator {
    margin: 0 10px;
    color: #555;
}

.rank-math-breadcrumb .last {
    color: var(--md-sys-color-primary);
    font-weight: 700;
}

@media (max-width: 768px) {
    .rank-math-breadcrumb {
        font-size: 12px;
    }
}

/* ==========================================================================
   GET INFO BASE - PREMIUM SUMMARY BOX & QUIZ CSS (MAX 10PX SPACING)
   ========================================================================== */

.get-info-base-summary-box {
    position: relative;
    background-color: var(--md-sys-color-surface);
    color: var(--md-sys-color-on-surface);
    border: 1px solid var(--md-sys-color-outline);
    padding: 14px 18px;
    margin: 10px 0;
    text-align: justify;
    line-height: 1.7;
    font-style: italic;
    box-sizing: border-box;
}

@media (max-width: 768px) {
    .get-info-base-summary-box {
        padding: 14px 18px 14px 20px;
        margin-left: 0;
        margin-right: 0;
    }
}

.gib-summary-content {
    position: relative;
    font-family: var(--md-sys-font-family);
    font-size: 15px;
    line-height: 22px;
    font-style: italic;
    color: var(--md-sys-color-on-surface);
    opacity: 0.85;
    letter-spacing: -0.2px;
    padding-top: 10px;
    padding-bottom: 10px;
}

.gib-quote-left,
.gib-quote-right {
    position: absolute;
    font-size: 34px;
    line-height: 1;
    opacity: 0.2;
}

.gib-quote-left {
    top: 10px;
    left: 4px;
}

.gib-quote-right {
    bottom: 10px;
    right: 10px;
}

.gib-quiz-main-title {
    font-family: var(--md-sys-font-family);
    color: var(--md-sys-color-on-background);
    font-size: 18px;
    margin-top: 10px;
    margin-bottom: 10px;
    font-weight: 700;
    letter-spacing: -0.3px;
}

.gib-quiz-main-title strong {
    color: var(--md-sys-color-primary);
}

.get-info-base-quiz-box {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 10px;
}

.gib-quiz-container {
    background-color: var(--md-sys-color-surface);
    border: 1px solid var(--md-sys-color-outline);
    border-radius: 6px;
    padding: 10px;
}

.gib-quiz-question {
    font-family: var(--md-sys-font-family);
    font-weight: 600;
    font-size: 15px;
    color: var(--md-sys-color-on-surface);
    margin-bottom: 10px;
    line-height: 20px;
    letter-spacing: -0.1px;
}

.gib-quiz-options {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.gib-option-btn {
    font-family: var(--md-sys-font-family);
    font-size: 14px;
    color: var(--md-sys-color-on-surface);
    background-color: var(--md-sys-color-background);
    border: 1px solid var(--md-sys-color-outline);
    padding: 10px;
    border-radius: 4px;
    text-align: left;
    cursor: pointer;
    transition: all var(--transition-smooth);
    width: 100%;
    letter-spacing: -0.1px;
}

.gib-option-btn strong {
    color: var(--md-sys-color-primary);
    margin-right: 6px;
    font-weight: 700;
}

.gib-option-btn:hover:not(:disabled) {
    background-color: var(--md-sys-color-surface);
    border-color: var(--md-sys-color-primary);
    box-shadow: inset 0 0 0 1px var(--md-sys-color-primary), 0 2px 4px rgba(0, 0, 0, 0.04);
}

/* ==========================================================================
   QUIZ STATE CLASSES: Full JS Integration (gib-correct & gib-incorrect)
   ========================================================================== */

/* Light Theme - Correct Answer (Green) */
.gib-option-btn.gib-correct {
    background-color: rgba(46, 125, 50, 0.12) !important;
    border-color: #2E7D32 !important;
    color: #1B5E20 !important;
    font-weight: 600 !important;
}

/* Light Theme - Incorrect Answer (Red) */
.gib-option-btn.gib-incorrect {
    background-color: rgba(198, 40, 40, 0.1) !important;
    border-color: #C62828 !important;
    color: #B71C1C !important;
}

/* Dark Mode Support */
[data-theme="dark"] .gib-option-btn.gib-correct,
@media (prefers-color-scheme: dark) {
    .gib-option-btn.gib-correct {
        background-color: rgba(76, 175, 80, 0.2) !important;
        border-color: #4CAF50 !important;
        color: #E8F5E9 !important;
    }
    .gib-option-btn.gib-incorrect {
        background-color: rgba(239, 83, 80, 0.2) !important;
        border-color: #EF5350 !important;
        color: #FFEBEE !important;
    }
}

.gib-quiz-result {
    font-family: var(--md-sys-font-family);
    font-size: 13px;
    font-weight: 600;
    margin-top: 10px;
    letter-spacing: -0.1px;
}

/* Easy Table of Contents madde aralıklarını azalt */
#ez-toc-container ul li {
    margin-bottom: 3px !important;
    padding-bottom: 0 !important;
}