* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:root {
  --primary-color: #6b21a8;
  --secondary-color: #7c3aed;
  --accent-color: #8b5cf6;
  --text-color: #202124;
  --text-secondary: #5f6368;
  --bg-color: #ffffff;
  --bg-secondary: #f3e8ff;
  --border-color: #ddd6fe;
  --shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
  --shadow-hover: 0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.23);
}
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
}
body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  color: var(--text-color);
  background-color: var(--bg-color);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
  /* Edge render optimizasyonu */
  contain: layout style paint;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
/* Header Styles */
header {
  background: var(--bg-color);
  box-shadow: var(--shadow);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: all 0.3s ease;
}
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  min-height: 80px;
  height: 100%;
}
.logo {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  height: 100%;
}
.logo img {
  height: auto;
  max-height: 70px;
  width: auto;
  object-fit: contain;
}
/* Logo header için tutarlı boyut - tüm sayfalarda aynı */
.logo-header img {
  height: 50px !important;
  max-height: 50px !important;
  width: auto;
  object-fit: contain;
}
.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
  margin: 0;
  padding: 0;
  height: 100%;
}
.nav-menu li {
  display: flex;
  align-items: center;
  height: 100%;
}
.nav-menu a {
  text-decoration: none;
  color: var(--text-color);
  font-weight: 500;
  transition: color 0.3s ease;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  display: flex;
  align-items: center;
  height: 100%;
}
.nav-menu a:hover {
  color: var(--primary-color);
  background: var(--bg-secondary);
  text-decoration: none;
}
/* Mobile Menu */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  height: 100%;
  z-index: 1002;
  position: relative;
}
/* iPhone ve diğer mobil cihazlar için genişletilmiş breakpoint */
@media screen and (max-width: 1024px) {
  .mobile-menu-btn {
    display: flex !important;
    color: var(--text-color);
    font-size: 2rem;
    padding: 0.75rem;
    transition: color 0.3s ease;
    min-width: 44px;
    min-height: 44px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    background: var(--bg-color);
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  }
  .mobile-menu-btn:hover,
  .mobile-menu-btn:active {
    color: var(--primary-color);
    border-color: var(--primary-color);
    background: var(--bg-secondary);
  }
  /* Desktop nav-menu'yu gizle */
  header .nav-menu:not(.active),
  .nav-menu:not(.active) {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  header {
    background: #ffffff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  }
  nav {
    padding: 0.75rem 0;
    min-height: 70px;
  }
  .mobile-menu-btn {
    display: flex !important;
    color: var(--text-color);
    font-size: 1.75rem;
    padding: 0.5rem;
    transition: color 0.3s ease;
    min-width: 44px;
    min-height: 44px;
  }
  .mobile-menu-btn:hover {
    color: var(--primary-color);
  }
  header .nav-menu,
  .nav-menu {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ffffff !important;
    background: #ffffff !important;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    padding: 1.5rem 1rem;
    z-index: 1001;
    width: 100%;
    opacity: 1 !important;
    overflow-y: auto;
    max-height: calc(100vh - 70px);
  }
  header .nav-menu.active,
  .nav-menu.active {
    display: flex;
    background-color: #ffffff !important;
    background: #ffffff !important;
    opacity: 1 !important;
    animation: slideDown 0.3s ease-out;
  }
  @keyframes slideDown {
    from {
      opacity: 0;
      transform: translateY(-10px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  .nav-menu li {
    width: 100%;
    padding: 0;
    margin: 0;
    background: transparent;
    border-bottom: 1px solid #f0f0f0;
  }
  .nav-menu li:last-child {
    border-bottom: none;
  }
  .nav-menu a {
    width: 100%;
    padding: 1rem 1.25rem;
    border-radius: 8px;
    background: transparent;
    color: var(--text-color);
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: flex-start;
  }
  .nav-menu a:hover,
  .nav-menu a:active {
    background: var(--bg-secondary);
    color: var(--primary-color);
    padding-left: 1.5rem;
  }
}
/* Main Layout */
.main-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 2rem;
  padding: 0 0 2rem 0;
  min-height: calc(100vh - 80px);
}
@media (max-width: 968px) {
  .main-layout {
    grid-template-columns: 1fr;
  }
}
/* Content Section */
.content-section {
  padding: 0 0 2rem 0;
}
.article-page {
  padding: 2rem 0 4rem;
  background: var(--bg-secondary);
}
.article-page .content-section {
  padding: 0;
}
.article-page article {
  background: var(--bg-color);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: var(--shadow);
}
@media screen and (max-width: 768px) {
  .article-page article {
    padding: 1.5rem;
  }
}
.content-section section {
  scroll-margin-top: 100px;
  padding-top: 20px;
}
.content-section h1 {
  font-size: 2.5rem;
  color: var(--text-color);
  margin-bottom: 1rem;
  line-height: 1.2;
  scroll-margin-top: 100px;
}
.content-section h2 {
  font-size: 2rem;
  color: var(--text-color);
  margin: 2rem 0 1rem;
  scroll-margin-top: 100px;
}
.content-section h3 {
  font-size: 1rem;
  color: var(--text-color);
  scroll-margin-top: 100px;
}
.content-section p {
  margin-bottom: 1rem;
  color: var(--text-secondary);
  font-size: 1rem;
}
/* Backlink Hero Section */
.backlink-hero-section {
  padding: 3rem 0;
  background: linear-gradient(135deg, #f3e8ff 0%, #ddd6fe 100%);
  margin-bottom: 2rem;
  scroll-margin-top: 100px;
  width: 100%;
  max-width: 100%;
  display: block;
}

/* Desktop Side Banners - Hidden by default */
.desktop-side-banner-left,
.desktop-side-banner-right {
  display: none;
}

.backlink-hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
  box-sizing: border-box;
}

/* Desktop: ≥1200px - Grid Layout */
@media (min-width: 1200px) {
  .backlink-hero-section {
    display: grid;
    grid-template-columns: 160px 1fr 160px;
    gap: 24px;
    align-items: start;
    padding: 3rem 24px;
    max-width: 1600px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .desktop-side-banner-left,
  .desktop-side-banner-right {
    display: block;
    grid-row: 1;
    align-self: stretch;
  }
  
  .desktop-side-banner-left {
    grid-column: 1;
  }
  
  .desktop-side-banner-right {
    grid-column: 3;
  }
  
  .backlink-hero-container {
    grid-column: 2;
    grid-row: 1;
    max-width: 100%;
    padding: 0;
    margin: 0;
  }
  
  .side-banner-content {
    background: var(--bg-color);
    border-radius: 12px;
    box-shadow: var(--shadow);
    border: 2px solid transparent;
    transition: all 0.3s ease;
    overflow: hidden;
    padding: 0;
    margin: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: stretch;
  }
  
  .desktop-side-banner-left .side-banner-content:hover,
  .desktop-side-banner-right .side-banner-content:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-4px);
    border-color: var(--primary-color);
  }
  
  .side-banner-image {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
  }
}

/* Tablet and Mobile: Hide banners */
@media (max-width: 1199px) {
  .desktop-side-banner-left,
  .desktop-side-banner-right {
    display: none !important;
  }
  
  .backlink-hero-section {
    display: block;
  }
  
  .backlink-hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }
}

/* Hero Main Card */
.hero-main-card {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  border-radius: 16px;
  padding: 2rem 2rem;
  text-align: center;
  margin-bottom: 3rem;
  /* Edge render optimizasyonu */
  contain: layout style paint;
  box-shadow: 0 8px 24px rgba(107, 33, 168, 0.15);
  border: 2px solid rgba(107, 33, 168, 0.1);
  transition: all 0.3s ease;
}
.hero-main-card:hover {
  box-shadow: 0 12px 32px rgba(107, 33, 168, 0.2);
  transform: translateY(-4px);
  border-color: rgba(107, 33, 168, 0.2);
}
.hero-main-title {
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  font-weight: 700;
  line-height: 1.3;
}
.hero-main-button {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  color: white !important;
  padding: 1rem 2rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.25rem;
  box-shadow: 0 6px 20px rgba(107, 33, 168, 0.4);
  transition: all 0.3s ease;
  border: none;
}
.hero-main-button:hover {
  background: linear-gradient(135deg, var(--secondary-color) 0%, var(--accent-color) 100%);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(107, 33, 168, 0.5);
  color: white !important;
  text-decoration: none;
}
.backlink-hero-title {
  text-align: center;
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 3rem;
  font-weight: 700;
}
.backlink-hero-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  width: 100%;
  margin: 0;
  /* Edge render optimizasyonu */
  contain: layout style paint;
  padding: 0;
}

@media (max-width: 1023px) {
  .backlink-hero-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.backlink-hero-card {
  background: var(--bg-color);
  border-radius: 12px;
  box-shadow: var(--shadow);
  overflow: visible;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 0;
  margin: 0;
  width: 100%;
}
.backlink-hero-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-6px);
  border-color: var(--primary-color);
}
.backlink-hero-link {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  height: 100%;
  padding: 0;
  margin: 0;
}
.backlink-hero-image {
  position: relative;
  width: 100%;
  min-height: 200px;
  overflow: hidden;
  background: transparent;
  display: block;
  margin: 0;
  padding: 0;
  border-radius: 12px 12px 0 0;
  line-height: 0;
  flex-shrink: 0;
}
.backlink-hero-image img {
  width: 100%;
  height: 100%;
  min-height: 200px;
  max-width: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  position: relative;
  z-index: 0;
  margin: 0;
  padding: 0;
  border: none;
  border-radius: 12px 12px 0 0;
}
.banner-animated-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: 200% 200%;
  animation: gradientShift 8s ease infinite;
  z-index: 0;
  border-radius: 12px 12px 0 0;
  will-change: background-position;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
/* Banner 1 - Mor ve Pembe */
.banner-1 .banner-animated-bg {
  background: linear-gradient(135deg, #6b21a8 0%, #7c3aed 25%, #8b5cf6 50%, #a78bfa 75%, #6b21a8 100%);
}
/* Banner 2 - Mor Tonları */
.banner-2 .banner-animated-bg {
  background: linear-gradient(135deg, #6b21a8 0%, #7c3aed 25%, #8b5cf6 50%, #a78bfa 75%, #6b21a8 100%);
}
/* Banner 3 - Turuncu ve Kırmızı */
.banner-3 .banner-animated-bg {
  background: linear-gradient(135deg, #fd79a8 0%, #fdcb6e 25%, #e17055 50%, #d63031 75%, #fd79a8 100%);
}
/* Banner 4 - Mor ve Yeşil */
.banner-4 .banner-animated-bg {
  background: linear-gradient(135deg, #6b21a8 0%, #7c3aed 25%, #34d399 50%, #6ee7b7 75%, #6b21a8 100%);
}
/* Banner 5 - Sarı ve Turuncu */
.banner-5 .banner-animated-bg {
  background: linear-gradient(135deg, #fdcb6e 0%, #e17055 25%, #f39c12 50%, #e67e22 75%, #fdcb6e 100%);
}
/* Banner 6 - Pembe ve Mor */
.banner-6 .banner-animated-bg {
  background: linear-gradient(135deg, #ec4899 0%, #7c3aed 25%, #6b21a8 50%, #8b5cf6 75%, #ec4899 100%);
}
@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
.backlink-hero-image img,
.backlink-hero-image > span > img {
  filter: none;
  mix-blend-mode: normal;
}
.backlink-hero-image::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: transparent;
  z-index: 1;
  pointer-events: none;
  border-radius: 12px 12px 0 0;
}
.backlink-hero-info {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  align-items: flex-start;
  border-radius: 0 0 12px 12px;
  overflow: hidden;
  background: var(--bg-color);
}
.backlink-hero-card-title {
  margin: 0 0 0.75rem 0;
  font-size: 1.25rem;
  color: var(--text-color);
  font-weight: 600;
}
.backlink-hero-info p {
  margin: 0 0 1rem 0;
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.5;
}
.backlink-hero-cta {
  display: inline-block;
  background: transparent;
  color: var(--text-secondary);
  padding: 0.5rem 1rem;
  border-radius: 4px;
  font-weight: 500;
  transition: all 0.3s ease;
  font-size: 0.9rem;
  margin-top: auto;
  align-self: flex-end;
  border: 1px solid rgba(0, 0, 0, 0.1);
}
.backlink-hero-card:hover .backlink-hero-cta {
  color: var(--primary-color);
  border-color: var(--primary-color);
  background: rgba(107, 33, 168, 0.05);
}
/* Mobile First: 768px ve altı için kritik stiller */
@media screen and (max-width: 768px) {
  .hero-main-title {
    font-size: 1.8rem !important;
  }
  .hero-main-button {
    font-size: 1.1rem !important;
    padding: 1rem 2rem !important;
  }
  .hero-main-card {
    padding: 2rem 1rem !important;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
    margin-bottom: 1rem !important;
    padding-left: max(1rem, env(safe-area-inset-left, 0)) !important;
    padding-right: max(1rem, env(safe-area-inset-right, 0)) !important;
  }
  .backlink-hero-title {
    font-size: 1.8rem !important;
  }
  .backlink-hero-grid {
    grid-template-columns: 1fr !important;
    gap: 1rem !important;
    padding: 0 !important;
    margin: 0 !important;
  }
  .backlink-hero-container {
    padding: 0 !important;
    max-width: 100% !important;
    width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .backlink-hero-card {
    margin: 0 1rem !important;
    border-radius: 12px !important;
    width: calc(100% - 2rem) !important;
    max-width: calc(100% - 2rem) !important;
    overflow: visible !important;
  }
  .backlink-hero-section {
    padding: 2rem 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    overflow-x: hidden !important;
  }
  .backlink-hero-image {
    border-radius: 12px 12px 0 0 !important;
    min-height: 200px !important;
    margin: 0 !important;
    padding: 0 !important;
    width: 100% !important;
    overflow: visible !important;
    flex-shrink: 0 !important;
  }
  .backlink-hero-image img {
    width: 100% !important;
    height: auto !important;
    min-height: 200px !important;
    max-width: 100% !important;
    object-fit: cover !important;
    object-position: center top !important;
    margin: 0 !important;
    padding: 0 !important;
    display: block !important;
    border-radius: 12px 12px 0 0 !important;
  }
}
/* Sidebar */
.sidebar {
  position: sticky;
  top: 100px;
  height: fit-content;
}
.news-box {
  background: var(--bg-secondary);
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow);
}
.sidebar-title {
  font-size: 1.2rem;
  margin: 0 0 1rem 0;
  color: var(--primary-color);
  border-bottom: 2px solid var(--primary-color);
  padding-bottom: 0.5rem;
  font-weight: 700;
}
.sidebar-title a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
  display: block;
}
.sidebar-title a:hover {
  color: var(--accent-color);
  text-decoration: none;
}
.news-item {
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border-color);
}
.news-item:last-child {
  border-bottom: none;
}
.sidebar-item-title {
  font-size: 1rem;
  margin-bottom: 0.25rem;
  color: var(--text-color);
  font-weight: 700;
  cursor: default;
}
.news-item p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin: 0;
}
/* CTA Button */
.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  justify-content: center;
  background: var(--primary-color);
  color: white !important;
  padding: 1rem 2rem;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  margin-top: 1rem;
}
.cta-button:hover {
  background: var(--secondary-color);
  color: white !important;
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
  text-decoration: none;
}
.cta-button.outline {
  background: transparent;
  color: var(--primary-color) !important;
  border: 2px solid var(--primary-color);
  margin-top: 1.5rem;
}
.cta-button.outline:hover {
  background: var(--primary-color);
  color: white !important;
}
.notice-box {
  background: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  padding: 1rem 1.25rem;
  border-radius: 6px;
  font-weight: 400;
  color: var(--text-color);
  margin: 1.5rem 0;
  line-height: 1.7;
}
.notice-box p {
  margin: 0.5rem 0;
}
.notice-box p:first-child {
  margin-top: 0;
}
.notice-box p:last-child {
  margin-bottom: 0;
}
.notice-box strong {
  font-weight: 600;
  color: var(--primary-color);
}
/* FAQ Section */
.faq-section {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 2px solid var(--border-color);
}
.faq-item {
  margin-bottom: 0.5rem;
  background: var(--bg-color);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
}
.faq-item:hover {
  box-shadow: var(--shadow);
  border-color: var(--primary-color);
}
.faq-question {
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--primary-color);
  padding: 0.5rem 1rem;
  margin: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: color 0.3s ease;
  user-select: none;
}
.faq-question::after {
  content: '+';
  font-size: 1rem;
  font-weight: 300;
  color: var(--primary-color);
  transition: transform 0.3s ease;
}
.faq-item.active .faq-question::after {
  transform: rotate(45deg);
}
.faq-question:hover {
  color: var(--secondary-color);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 1.5rem;
}
.faq-item.active .faq-answer {
  max-height: 1000px;
  padding: 0 1.5rem 1.5rem 1.5rem;
}
.faq-answer p {
  color: var(--text-secondary);
  line-height: 1.7;
  margin: 0;
  padding-top: 0.5rem;
}
@media screen and (max-width: 768px) {
  .faq-question {
    font-size: 1rem;
    padding: 1rem;
  }
  .faq-answer {
    padding: 0 1rem;
  }
  .faq-item.active .faq-answer {
    padding: 0 1rem 1rem 1rem;
  }
}
.cta-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  color: var(--primary-color);
  text-decoration: none;
  margin-top: 1rem;
}
.cta-link:hover {
  color: var(--secondary-color);
  text-decoration: underline;
}
/* Footer */
footer {
  background: var(--text-color);
  color: white;
  text-align: center;
  padding: 2rem;
  margin-top: 0;
  position: relative;
  z-index: 1;
}
.detailed-page + footer {
  margin-top: 0;
  position: relative;
}
.detailed-page::after {
  content: '';
  display: block;
  height: 3rem;
  background: #f8f9fa;
}
footer a {
  color: rgba(255, 255, 255, 0.9) !important;
  text-decoration: underline;
}
footer a:hover {
  color: var(--primary-color) !important;
  text-decoration: none;
}
/* Links */
a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}
a:hover {
  color: var(--secondary-color);
  text-decoration: underline;
}
.content-section a {
  color: var(--primary-color);
  font-weight: 500;
}
.content-section a:hover {
  color: var(--secondary-color);
}
/* Link colors for different backgrounds */
.backlink-hero-link {
  color: var(--text-color);
}
.backlink-hero-link:hover {
  color: var(--text-color);
  text-decoration: none;
}
.backlink-hero-card-title {
  color: var(--text-color);
}
.backlink-hero-info p {
  color: var(--text-secondary);
}
/* Lists */
ul {
  margin-left: 2rem;
  margin-bottom: 1rem;
}
li {
  margin-bottom: 0.5rem;
  color: var(--text-secondary);
}
/* Utility Classes */
.highlight {
  background: linear-gradient(180deg, transparent 60%, var(--secondary-color) 60%);
  font-weight: 600;
  padding: 0 4px;
}
.text-center {
  text-align: center;
}
/* Loading & Accessibility */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border-width: 0;
}
/* Performance Optimization - iOS uyumlu */
@media (hover: hover) and (pointer: fine) {
  /* Sadece desktop'ta kullan */
  img:not([src$=".gif"]) {
  content-visibility: auto;
}
}
/* Mobil ve GIF'ler için */
img[src$=".gif"],
img[src*="/banner"] {
  content-visibility: visible;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}
/* Detailed Article Pages */
.detailed-page {
  padding: 3rem 0 3rem;
  background: #f8f9fa;
  width: 100%;
  margin: 0;
  margin-bottom: 0;
}
.detailed-page .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
@media (min-width: 769px) {
  .detailed-page .container {
    padding: 0 40px;
  }
}
.detail-breadcrumb {
  font-size: 0.9rem;
  margin-bottom: 2rem;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
@media (min-width: 769px) {
  .detail-breadcrumb {
    padding-left: 3rem;
  }
}
.detail-breadcrumb a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}
.detail-breadcrumb a:hover {
  color: var(--secondary-color);
}
.detail-breadcrumb span {
  color: var(--text-secondary);
}
.detailed-page article {
  background: white;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  border: 1px solid #e9ecef;
  margin-top: 0;
  margin-bottom: 0;
  position: relative;
  z-index: 0;
}
.detail-header {
  padding: 3rem 3rem 2rem;
  background: white;
  border-bottom: 1px solid #e9ecef;
  position: relative;
  z-index: 1;
}
.detail-kicker {
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--primary-color);
  margin-bottom: 1rem;
  display: block;
}
.detail-header h1 {
  font-size: 2.5rem;
  line-height: 1.3;
  margin-bottom: 1.5rem;
  color: var(--text-color);
  font-weight: 700;
}
.detail-intro {
  font-size: 1.15rem;
  color: var(--text-secondary);
  line-height: 1.7;
  font-weight: 400;
  padding: 1.5rem;
  background: #f8f9fa;
  border-left: 3px solid var(--primary-color);
  border-radius: 6px;
  margin-top: 1rem;
}
.detail-section {
  padding: 2.5rem 3rem;
  border-bottom: 1px solid #e9ecef;
}
.detail-section:last-child {
  border-bottom: none;
}
.detail-section h2 {
  font-size: 2rem;
  line-height: 1.3;
  margin-bottom: 1.25rem;
  margin-top: 0;
  color: var(--text-color);
  font-weight: 700;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid #e9ecef;
}
.detail-section h3 {
  font-size: 1.5rem;
  line-height: 1.4;
  margin-bottom: 1rem;
  margin-top: 2rem;
  color: var(--text-color);
  font-weight: 600;
  padding-left: 1rem;
  border-left: 3px solid var(--accent-color);
}
.detail-section p {
  margin-bottom: 1.25rem;
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.8;
  text-align: justify;
}
.detail-section p:last-child {
  margin-bottom: 0;
}
.detail-section ul {
  margin: 1.5rem 0 1.5rem 2rem;
  padding: 0;
  list-style: none;
}
.detail-section ul li {
  margin-bottom: 0.875rem;
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.7;
  padding-left: 1.75rem;
  position: relative;
}
.detail-section ul li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: 700;
  font-size: 1.25rem;
}
.detail-section strong {
  color: var(--text-color);
  font-weight: 600;
}
.detail-section a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 500;
  border-bottom: 1px solid transparent;
  transition: all 0.2s ease;
}
.detail-section a:hover {
  color: var(--secondary-color);
  border-bottom-color: var(--secondary-color);
}
.detail-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}
/* Professional Card Styles */
.detail-card {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(155, 126, 222, 0.15);
  transition: all 0.3s ease;
}
.detail-card:hover {
  box-shadow: 0 4px 20px rgba(155, 126, 222, 0.15);
  transform: translateY(-2px);
}
.detail-card h3 {
  margin-top: 0;
  padding-left: 0;
  border-left: none;
  border-bottom: 2px solid rgba(155, 126, 222, 0.2);
  padding-bottom: 0.75rem;
  margin-bottom: 1rem;
}
/* Highlight Box */
.detail-highlight {
  background: linear-gradient(135deg, rgba(155, 126, 222, 0.08) 0%, rgba(177, 156, 217, 0.05) 100%);
  border-left: 4px solid var(--primary-color);
  padding: 1.5rem 2rem;
  border-radius: 8px;
  margin: 2rem 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}
.detail-highlight p {
  margin-bottom: 0.75rem;
}
.detail-highlight p:last-child {
  margin-bottom: 0;
}
/* Responsive Design */
@media screen and (max-width: 768px) {
  .detailed-page {
    padding: 1.5rem 0 2rem;
  }
  .detailed-page::after {
    height: 2rem;
  }
  .detailed-page .container {
    padding: 0 1rem;
  }
  .detailed-page article {
    margin-bottom: 2rem;
  }
  .detail-breadcrumb {
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
  }
  .detail-header {
    padding: 2rem 1.5rem 1.5rem;
  }
  .detail-header h1 {
    font-size: 2rem;
  }
  .detail-intro {
    font-size: 1.05rem;
    padding: 1.25rem;
  }
  .detail-section {
    padding: 2rem 1.5rem;
  }
  .detail-section h2 {
    font-size: 1.75rem;
  }
  .detail-section h3 {
    font-size: 1.35rem;
  }
  .detail-section p {
    font-size: 1rem;
    text-align: left;
  }
}
/* Mobile First: 480px ve altı için kritik stiller */
@media screen and (max-width: 480px) {
  .hero-main-card {
    padding: 1.5rem 0.75rem !important;
    margin-left: 0.75rem !important;
    margin-right: 0.75rem !important;
    margin-bottom: 0.75rem !important;
    padding-left: max(0.75rem, env(safe-area-inset-left, 0)) !important;
    padding-right: max(0.75rem, env(safe-area-inset-right, 0)) !important;
  }
  .backlink-hero-card {
    border-radius: 12px !important;
    margin: 0.5rem 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    display: flex !important;
    flex-direction: column !important;
  }
  .backlink-hero-grid {
    gap: 0.75rem !important;
    padding: 0 !important;
    margin: 0 !important;
  }
  .backlink-hero-container {
    padding: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .backlink-hero-card {
    margin: 0 0.75rem !important;
    border-radius: 12px !important;
    width: calc(100% - 1.5rem) !important;
    max-width: calc(100% - 1.5rem) !important;
    display: flex !important;
    flex-direction: column !important;
  }
  .backlink-hero-image {
    border-radius: 12px 12px 0 0 !important;
    width: 100% !important;
    min-height: 200px !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: visible !important;
    flex-shrink: 0 !important;
  }
  .backlink-hero-image img {
    border-radius: 12px 12px 0 0 !important;
    width: 100% !important;
    height: auto !important;
    min-height: 200px !important;
    max-width: 100% !important;
    object-fit: cover !important;
    object-position: center top !important;
    margin: 0 !important;
    padding: 0 !important;
    display: block !important;
  }
  .backlink-hero-link {
    width: 100% !important;
    display: flex !important;
    flex-direction: column !important;
  }
  .backlink-hero-info {
    padding: 1rem !important;
  }
}
/* Logo Footer Styles */
.logo-footer {
  height: 50px;
  width: auto;
  object-fit: contain;
}
/* SSS Reminder Box */
.sss-reminder-box {
  margin-top: 2rem;
  padding: 1.25rem;
  background: rgba(255,255,255,0.95);
  border-left: 4px solid #6b21a8;
  border-radius: 6px;
}
.sss-reminder-text {
  font-size: 0.9rem;
  color: #1a1a1a;
  margin: 0;
  line-height: 1.6;
  font-weight: 400;
}
/* Sidebar Link Styles */
.sidebar-title a {
  text-decoration: none;
  color: inherit;
}
/* Footer Styles */
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1rem;
}
.footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  margin-bottom: 1.5rem;
}
.footer-logo-wrapper {
  flex: 0 0 auto;
}
.footer-logo-link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: rgba(255,255,255,0.9);
  font-weight: 600;
}
.footer-nav {
  flex: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  align-items: center;
  min-width: 200px;
}
.footer-nav-link {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}
.footer-nav-link:hover {
  color: rgba(255,255,255,1);
}
.footer-separator {
  color: rgba(255,255,255,0.5);
}
.footer-social {
  flex: 0 0 auto;
  display: flex;
  justify-content: flex-end;
  gap: 1rem;
}
.footer-social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
}
.footer-social-icon svg {
  color: rgba(255,255,255,0.9);
}
.footer-contact-minimal {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.6);
  margin: 0.5rem 0 0 0;
  text-align: center;
}
.footer-contact-minimal a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
}
.footer-contact-minimal a:hover {
  color: rgba(255,255,255,0.9);
  text-decoration: underline;
}
.footer-bottom {
  text-align: center;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.footer-copyright {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.8);
  margin: 0.5rem 0;
}
.footer-warning-box {
  margin-top: 1.5rem;
  padding: 1rem;
  background: transparent;
  border-radius: 8px;
  border: none;
}
.footer-warning-text {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.9);
  margin: 0;
  font-weight: 400;
  line-height: 1.6;
}
/* Footer Mobile Styles */
@media screen and (max-width: 768px) {
  .footer-top {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
  }
  .footer-logo-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
  }
  .footer-logo-link {
    justify-content: center;
  }
  .footer-nav {
    width: 100%;
    justify-content: center;
    flex-direction: column;
    gap: 0.75rem;
  }
  .footer-separator {
    display: none;
  }
  .footer-social {
    width: 100%;
    justify-content: center;
  }
  .footer-bottom {
    text-align: center;
  }
  .footer-warning-box {
    text-align: center;
  }
}
/* CTA Button Styles */
.cta-center {
  text-align: center;
  margin-top: 2rem;
  margin-bottom: 2rem;
}
.cta-button.inline {
  display: inline-block;
}

/* Bet Categories List */
.bet-categories-list {
  columns: 2;
  column-gap: 2rem;
  list-style-position: inside;
}

@media screen and (max-width: 768px) {
  .bet-categories-list {
    columns: 1;
  }
}

/* Info Grid - Social Media Cards */
.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.info-card {
  padding: 1.5rem;
  border-radius: 12px;
}

.info-card-twitter {
  background: linear-gradient(135deg, #1a5490 0%, #2d7ac7 100%);
}

.info-card-telegram {
  background: linear-gradient(135deg, #0088cc 0%, #00a8e8 100%);
}

.info-card-complaint {
  background: linear-gradient(135deg, #dc3545 0%, #e85d6a 100%);
}

.info-card h4 {
  color: #fff;
  margin-top: 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.info-card-link {
  text-decoration: none;
  color: #fff !important;
  transition: opacity 0.2s ease;
}

.info-card-link:hover {
  opacity: 0.9;
  color: #fff !important;
}

.info-card h4 a {
  color: #fff !important;
  text-decoration: none;
}

.info-card h4 a:hover {
  color: #fff !important;
  opacity: 0.9;
}

.info-card p {
  color: #e0e0e0;
  margin: 0;
}

.info-card p a {
  color: #fff !important;
  text-decoration: underline;
  font-weight: 500;
}

.info-card p a:hover {
  opacity: 0.8;
  color: #fff !important;
}

/* Editor Info Section (E-E-A-T) */
.editor-info-section {
  margin-top: 3rem;
  padding: 2rem;
  background: #f8f9fa;
  border-radius: 8px;
  border-left: 4px solid #007bff;
}
.editor-info-section h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #333;
}
.editor-info-section p {
  line-height: 1.8;
  color: #555;
  margin-bottom: 1rem;
}
.editor-info-section p:last-child {
  margin-bottom: 0;
}
.editor-info-section strong {
  color: #333;
  font-weight: 600;
}
