/* ===== TEMEL STILLER ===== */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Open Sans', sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f9f9f9;
}

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

a {
  color: #2575fc;
  text-decoration: none;
  transition: color 0.3s;
}

a:hover {
  color: #1a5ddb;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}


/* ===== HEADER STILLER ===== */
.site-header {
  background: #fff;
  padding: 20px 0;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.site-header .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.logo {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem 0;
}

.logo img, .logo-svg {
  max-width: 100%;
  height: auto;
  width: 200px;
  transition: width 0.3s ease;
}

.site-title {
  font-size: 2.5rem;
  margin: 10px 0;
  color: #2575fc;
  text-align: center;
}

.site-description {
  font-size: 1rem;
  color: #666;
  max-width: 800px;
  text-align: center;
  margin-bottom: 20px;
}

/* ===== NAVİGASYON STILLER ===== */
.main-navigation {
  width: 100%;
  margin: 15px 0;
}

.menu-list {
  display: flex;
  justify-content: center;
  list-style: none;
  flex-wrap: wrap;
  gap: 15px;
}

.menu-list a {
  display: block;
  padding: 8px 15px;
  color: #444;
  font-weight: 600;
  border-radius: 4px;
  transition: all 0.3s;
}

.menu-list a:hover {
  background: #f0f4ff;
  color: #2575fc;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.25rem;
  cursor: pointer;
  color: #444;
}

/* ===== BUTON STILLER ===== */
.auth-buttons {
  display: flex;
  gap: 15px;
  margin: 15px 0;
}

.btn {
  padding: 10px 25px;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  border-radius: 50px;
  cursor: pointer;
  text-align: center;
  display: inline-block;
  transition: all 0.3s;
}

.btn-login {
  color: #2575fc;
  border: 2px solid #2575fc;
  background: transparent;
}

.btn-login:hover {
  background: #2575fc;
  color: #fff;
  transform: translateY(-2px);
}

.btn-register {
  background: #2575fc;
  color: #fff;
  border: 2px solid #2575fc;
}

.btn-register:hover {
  background: #1a5ddb;
  border-color: #1a5ddb;
  transform: translateY(-2px);
}

.btn-primary {
  background: #2575fc;
  color: #fff;
  border: 2px solid #2575fc;
}

.btn-primary:hover {
  background: #1a5ddb;
  border-color: #1a5ddb;
  transform: translateY(-2px);
}

.btn-access, .btn-telegram, .btn-twitter {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 700;
  padding: 12px 30px;
  margin: 10px 0;
}

.btn-access svg, .btn-telegram svg, .btn-twitter svg {
  width: 20px;
  height: 20px;
}

.btn-telegram {
  background: #0088cc;
  border-color: #0088cc;
}

.btn-telegram:hover {
  background: #0077b3;
  border-color: #0077b3;
}

.btn-twitter {
  background: #1DA1F2;
  border-color: #1DA1F2;
}

.btn-twitter:hover {
  background: #0d8ecf;
  border-color: #0d8ecf;
}

/* ===== DİL SEÇİCİ STILLER ===== */
.lang-switcher {
  position: relative;
  margin: 15px 0;
}

.current-lang {
  background: #fff;
  border: 1px solid #ddd;
  padding: 8px 15px;
  font-size: 0.9rem;
  color: #333;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  border-radius: 4px;
  transition: all 0.3s;
}

.current-lang:hover {
  background: #f7f7f7;
  border-color: #ccc;
}

.lang-emoji {
  font-size: 1.2rem;
  line-height: 1;
}

.lang-menu {
  position: absolute;
  top: 100%;
  left: 0;
  list-style: none;
  margin-top: 5px;
  padding: 5px 0;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 4px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  display: none;
  min-width: 150px;
  z-index: 100;
}

.lang-menu a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 15px;
  color: #333;
  transition: background 0.3s;
}

.lang-menu a:hover {
  background: #f0f4ff;
}

.lang-switcher.open .lang-menu {
  display: block;
}

/* ===== BREADCRUMBS STILLER ===== */
.breadcrumbs {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 15px;
  font-size: 0.9rem;
  color: #666;
}

.breadcrumbs a {
  color: #666;
  margin-right: 5px;
}

.breadcrumbs a:hover {
  color: #2575fc;
  text-decoration: underline;
}

.breadcrumbs span {
  margin-left: 5px;
  color: #333;
}

/* ===== SAYFA BAŞLIĞI STILLER ===== */
.page-header {
  background: #fff;
  padding: 30px 20px;
  margin-bottom: 30px;
  text-align: center;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.page-title {
  font-size: 2.2rem;
  color: #2575fc;
  margin-bottom: 10px;
}

/* ===== MAKALE STILLER ===== */
.makale-section {
  background: #eef2f5;
  padding: 40px 20px;
  margin-bottom: 40px;
}

.makale-section__wrapper {
  max-width: 900px;
  margin: 0 auto;
}

.makale-section__bg {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  position: relative;
  overflow: hidden;
}

.makale-section__bg::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 6px; height: 100%;
  background: #2575fc;
}

.makale-section__inner {
  padding: 30px;
}

.makale-section__title {
  font-size: 1.8rem;
  color: #222;
  margin-bottom: 20px;
  line-height: 1.3;
}

.makale-section__article {
  font-size: 1rem;
  line-height: 1.8;
  color: #444;
}

.makale-section__article p {
  margin-bottom: 15px;
}

.makale-section__list {
  margin: 15px 0 20px 20px;
}

.makale-section__list li {
  margin-bottom: 10px;
}

.makale-section__subtitle {
  font-size: 1.4rem;
  color: #2575fc;
  margin: 25px 0 15px;
}

.makale-section__conclusion {
  margin-top: 30px;
  padding: 20px;
  background: #f8f9ff;
  border-left: 4px solid #2575fc;
  font-weight: 600;
  color: #333;
}

/* ===== ÖZELLİKLER STILLER ===== */
.features-section {
  padding: 40px 20px;
  margin-bottom: 40px;
}

.section-title {
  text-align: center;
  font-size: 2rem;
  color: #2575fc;
  margin-bottom: 30px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.feature-item {
  background: #fff;
  border-radius: 8px;
  padding: 30px 20px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: transform 0.3s;
}

.feature-item:hover {
  transform: translateY(-5px);
}

.feature-item svg {
  margin-bottom: 15px;
}

.feature-item h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: #333;
}

.feature-item p {
  color: #666;
  font-size: 0.95rem;
}

/* ===== FOOTER STILLER ===== */
.site-footer {
  background: linear-gradient(135deg, #111, #1a1a1a);
  color: #ddd;
  padding: 40px 0 20px;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: center;
}

.footer-credit {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-credit__item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 15px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 6px;
  transition: background 0.3s;
}

.footer-credit__item:hover {
  background: rgba(255,255,255,0.05);
}

.footer-credit__item::before {
  content: attr(data-icon);
  font-size: 18px;
}

.footer-credit__item a {
  color: #ffd600;
  font-weight: 500;
}

.footer-credit__item a:hover {
  text-decoration: underline;
}

.site-footer__credit-wrapper {
  margin-top: 40px;
  text-align: center;
}

.site-footer__credit-author {
  font-size: 1.1rem;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.site-footer__sponsors-title {
  font-size: 1rem;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #999;
}

.site-footer__logos {
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.site-footer__logos svg {
  opacity: 0.6;
  transition: opacity 0.3s, transform 0.3s;
}

.site-footer__logos svg:hover {
  opacity: 0.9;
  transform: scale(1.05);
}

/* ===== HERO BÖLÜM STILLER ===== */
.hero-section {
  margin: 30px 0 50px;
}

.entry-banner {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  text-align: center;
}

.entry-banner__image {
  width: 100%;
  display: block;
}

.entry-banner__caption {
  position: relative;
  display: inline-block;
  margin-top: -30px;
  padding: 12px 25px;
  background: rgba(0, 0, 0, 0.7);
  border-radius: 30px;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 500;
  overflow: hidden;
  z-index: 1;
}

.entry-banner__caption-decor {
  content: "";
  position: absolute;
  left: -100%;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, rgba(255,255,255,0.2), rgba(255,255,255,0.05), rgba(255,255,255,0.2));
  animation: slide 4s infinite;
  filter: blur(8px);
}

.entry-banner__caption strong {
  color: #00d4ff;
  font-weight: 700;
}

@keyframes slide {
  0%   { left: -100%; }
  50%  { left: 100%; }
  100% { left: -100%; }
}

/* ===== DURUM KUTUSU STILLER ===== */
.status-section {
  margin-bottom: 40px;
}

.status-box {
  background: #fff;
  border-radius: 8px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.status-indicator {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  border-radius: 50px;
  font-weight: 600;
  margin-bottom: 20px;
}

.status-indicator.active {
  background: #e6ffed;
  color: #1aaa55;
}

.status-indicator.inactive {
  background: #fff1f0;
  color: #ff4d4f;
}

.status-text h2 {
  font-size: 1.6rem;
  margin-bottom: 15px;
  color: #333;
}

.status-text p {
  color: #666;
  max-width: 600px;
  margin-bottom: 20px;
}

.status-action {
  margin-top: 20px;
}

.status-update {
  display: block;
  font-size: 0.85rem;
  color: #999;
  margin-top: 10px;
}

/* ===== TELEGRAM & TWITTER KUTUSU STILLER ===== */
.telegram-box, .twitter-box {
  display: flex;
  align-items: center;
  gap: 30px;
  background: #f8f9ff;
  border-radius: 10px;
  padding: 30px;
  margin: 30px 0;
}

.telegram-info, .twitter-info {
  flex: 1;
}

.telegram-info h3, .twitter-info h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: #333;
}

.telegram-info p, .twitter-info p {
  color: #666;
  margin-bottom: 20px;
}

/* ===== GÜNCEL LİNK KUTUSU STILLER ===== */
.current-link-box {
  background: #f8f9ff;
  border-radius: 10px;
  padding: 25px;
  margin: 25px 0;
  border: 1px solid #e6edff;
}

.current-link-title {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
  font-size: 1.2rem;
  font-weight: 600;
  color: #2575fc;
}

.current-link-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.update-time {
  font-size: 0.85rem;
  color: #999;
  margin-top: 10px;
}

/* ===== BİLGİ UYARISI STILLER ===== */
.info-alert {
  display: flex;
  gap: 15px;
  padding: 20px;
  background: #f0f7ff;
  border-left: 4px solid #2575fc;
  border-radius: 4px;
  margin: 25px 0;
}

.info-alert svg {
  flex-shrink: 0;
  color: #2575fc;
}

.info-alert strong {
  display: block;
  margin-bottom: 5px;
  color: #2575fc;
}

/* ===== ADIMLAR KILAVUZU STILLER ===== */
.steps-guide {
  background: #f8f9ff;
  border-radius: 8px;
  padding: 25px;
  margin: 25px 0;
}

.steps-guide h4 {
  margin-bottom: 20px;
  font-size: 1.2rem;
  color: #2575fc;
}

.steps-guide ol {
  padding-left: 20px;
}

.steps-guide li {
  margin-bottom: 15px;
}

.steps-guide li strong {
  color: #333;
}

.steps-guide li p {
  margin-top: 5px;
}

/* ===== TWITTER AVANTAJLARI STILLER ===== */
.twitter-advantages {
  margin: 25px 0;
}

.twitter-advantage-item {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
  padding: 15px;
  background: #f8f9ff;
  border-radius: 8px;
}

.twitter-advantage-item svg {
  flex-shrink: 0;
}

.advantage-content h4 {
  font-size: 1.1rem;
  margin-bottom: 5px;
  color: #333;
}

.advantage-content p {
  color: #666;
  font-size: 0.95rem;
}

/* ===== SSS STILLER ===== */
.faq-section {
  padding: 40px 20px;
  margin-bottom: 40px;
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 15px;
  border: 1px solid #eee;
  border-radius: 8px;
  overflow: hidden;
}

.faq-question {
  background: #fff;
  padding: 15px 20px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question h3 {
  font-size: 1.1rem;
  color: #333;
  margin: 0;
}

.faq-arrow {
  transition: transform 0.3s;
}

.faq-item.active .faq-arrow {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
  padding: 20px;
  max-height: 500px;
}

.faq-item-inline {
  margin-bottom: 20px;
  background: #f8f9ff;
  border-radius: 8px;
  padding: 15px 20px;
}

.faq-question-inline {
  font-weight: 700;
  color: #2575fc;
  margin-bottom: 5px;
}

.faq-answer-inline {
  color: #666;
}

/* ===== HATA SAYFASI STILLER ===== */
.error-page {
  background: #f0f4ff;
}

.error-section {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 70vh;
  padding: 40px 20px;
}

.error-container {
  max-width: 600px;
  text-align: center;
  background: #fff;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.error-code {
  font-size: 6rem;
  font-weight: 700;
  color: #2575fc;
  line-height: 1;
  margin-bottom: 20px;
  opacity: 0.7;
}

.error-title {
  font-size: 2rem;
  margin-bottom: 15px;
  color: #333;
}

.error-description {
  color: #666;
  margin-bottom: 30px;
}

.error-illustration {
  margin: 30px 0;
}

.error-help {
  font-weight: 600;
  margin-bottom: 10px;
  color: #333;
}

.error-options {
  list-style-position: inside;
  text-align: left;
  max-width: 350px;
  margin: 0 auto 30px;
}

.error-options li {
  margin-bottom: 8px;
  color: #666;
}

/* ===== JAVASCRIPT BAĞLANTILI STILLER ===== */
#play-welcome {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg,#00b4db 0%,#0083b0 100%);
  color: #fff;
  padding: 12px 25px;
  border-radius: 50px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  font-size: 1rem;
  cursor: pointer;
  z-index: 999;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.3s, transform 0.3s;
}

#play-welcome.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE STILLER ===== */
@media (max-width: 992px) {
  .site-title {
    font-size: 2.2rem;
  }
  
  .makale-section__inner {
    padding: 25px;
  }
  
  .telegram-box, .twitter-box {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .site-title {
    font-size: 2rem;
  }
  
  .menu-toggle {
    display: block;
  }
  
  .menu-list {
    display: none;
    flex-direction: column;
    width: 100%;
  }
  
  .menu-list.active {
    display: flex;
  }
  
  .menu-list a {
    padding: 12px;
    text-align: center;
  }
  
  .page-title {
    font-size: 1.8rem;
  }
  
  .makale-section__title {
    font-size: 1.6rem;
  }
  
  .makale-section__subtitle {
    font-size: 1.3rem;
  }
  
  .status-box {
    padding: 20px;
  }
}

@media (max-width: 576px) {
  .site-title {
    font-size: 1.8rem;
  }
  
  .site-description {
    font-size: 0.9rem;
  }
  
  .logo img, .logo-svg {
    width: 150px;
  }
  
  .auth-buttons {
    flex-direction: column;
  }
  
  .btn {
    width: 100%;
  }
  
  .page-title {
    font-size: 1.6rem;
  }
  
  .makale-section__inner {
    padding: 20px 15px;
  }
  
  .makale-section__title {
    font-size: 1.4rem;
  }
  
  .feature-item {
    padding: 20px 15px;
  }
  
  .footer-credit {
    flex-direction: column;
    gap: 15px;
  }
  
  .error-code {
    font-size: 5rem;
  }
  
  .error-title {
    font-size: 1.6rem;
  }
  
  #play-welcome {
    font-size: 0.9rem;
    padding: 10px 20px;
    right: 10px;
    bottom: 10px;
  }
}