/* Blog ortak stil dosyası */

/* Blog ana sayfa */
.blog-container { 
  max-width: 1200px; 
  margin: 0 auto; 
  padding: 2rem; 
}

.blog-hero { 
  text-align: center; 
  margin-bottom: 2rem; 
}

.blog-hero h1 { 
  color: var(--accent-gold); 
  font-size: 2rem; 
}

.post-list { 
  display: grid; 
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); 
  gap: 1.5rem; 
}

.post-card { 
  background: var(--glass-bg); 
  border: 1px solid var(--glass-border); 
  border-radius: var(--radius-lg); 
  padding: 1.5rem; 
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.post-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.post-card h2 { 
  font-size: 1.25rem; 
  color: var(--accent-gold); 
  margin: 0 0 0.5rem; 
}

.post-card p { 
  color: var(--text-blue); 
  margin: 0 0 1rem; 
  font-size: 0.95rem; 
}

.post-card a { 
  color: var(--text-light); 
  text-decoration: none; 
  transition: color 0.2s ease;
}

.post-card a:hover {
  color: var(--accent-gold);
}

/* Makale sayfaları */
.article { 
  max-width: 900px; 
  margin: 0 auto; 
  padding: 2rem; 
}

.article h1 { 
  color: var(--accent-gold); 
  font-size: clamp(1.75rem, 4vw, 2.5rem); 
  margin-bottom: 1rem; 
  font-weight: 700;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.article p { 
  color: var(--text-light); 
  margin: 1rem 0; 
  line-height: 1.7; 
  font-size: 1.1rem;
}

.article h2 { 
  color: var(--text-blue); 
  margin-top: 2.5rem; 
  margin-bottom: 1rem; 
  font-size: 1.5rem;
  font-weight: 600;
}

.article h3 { 
  color: var(--accent-gold); 
  margin-top: 1.5rem; 
  margin-bottom: 0.5rem; 
  font-size: 1.25rem;
  font-weight: 600;
}

.article ul, .article ol { 
  color: var(--text-light); 
  margin: 1rem 0; 
  padding-left: 2rem; 
}

.article li { 
  margin: 0.5rem 0; 
  line-height: 1.6;
}

.article a { 
  color: var(--accent-gold); 
  text-decoration: none; 
  transition: color 0.2s ease;
}

.article a:hover { 
  color: var(--accent-gold-hover);
  text-decoration: underline; 
}

.breadcrumb { 
  margin-bottom: 2rem; 
  font-size: 0.9rem;
}

.breadcrumb a { 
  color: var(--text-light); 
  text-decoration: none; 
  transition: color 0.2s ease;
}

.breadcrumb a:hover { 
  color: var(--accent-gold); 
}

.author-info { 
  background: var(--glass-bg); 
  border: 1px solid var(--glass-border); 
  border-radius: var(--radius-md); 
  padding: 1.5rem; 
  margin: 2rem 0; 
  backdrop-filter: blur(10px);
}

/* Featured Image */
.featured-image {
  margin: 2rem 0;
  text-align: center;
}

.featured-image img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  transition: transform 0.3s ease;
}

.featured-image img:hover {
  transform: scale(1.02);
}

.image-caption {
  font-size: 0.9rem;
  color: #6b7280;
  font-style: italic;
  margin-top: 0.5rem;
  text-align: center;
}

/* Comparison Table */
.comparison-table {
  margin: 2rem 0;
  overflow-x: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.comparison-table table {
  width: 100%;
  border-collapse: collapse;
  background: var(--glass-bg);
  border-radius: var(--radius-lg);
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.comparison-table th,
.comparison-table td {
  padding: 1.2rem 1rem;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  vertical-align: top;
}

.comparison-table th {
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: white;
  font-weight: 600;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: sticky;
  top: 0;
  z-index: 10;
}

.comparison-table th:first-child {
  border-top-left-radius: var(--radius-lg);
}

.comparison-table th:last-child {
  border-top-right-radius: var(--radius-lg);
}

.comparison-table td {
  background: rgba(255, 255, 255, 0.02);
  color: #e5e7eb;
  font-size: 0.95rem;
  line-height: 1.5;
}

.comparison-table tr:nth-child(even) td {
  background: rgba(255, 255, 255, 0.05);
}

.comparison-table tr:hover td {
  background: rgba(245, 158, 11, 0.1);
  transition: background-color 0.3s ease;
}

.comparison-table td:first-child {
  font-weight: 600;
  color: #f59e0b;
  background: rgba(245, 158, 11, 0.05);
}

.comparison-table tr:hover td:first-child {
  background: rgba(245, 158, 11, 0.15);
}

/* Table responsive wrapper */
.comparison-table {
  position: relative;
}

.comparison-table::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.1), rgba(217, 119, 6, 0.1));
  border-radius: var(--radius-lg);
  pointer-events: none;
  z-index: -1;
}

/* Role Breakdown */
.role-breakdown {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  margin: 2rem 0;
  backdrop-filter: blur(10px);
}

.role-breakdown h4 {
  color: var(--color-primary);
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

/* Game Phases */
.game-phases {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin: 2rem 0;
}

.game-phases h4 {
  color: var(--color-primary);
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.game-phases ol {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  backdrop-filter: blur(10px);
}

.game-phases li {
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
  .game-phases {
    grid-template-columns: 1fr;
  }
  
  .comparison-table {
    font-size: 0.9rem;
    margin: 1.5rem 0;
  }
  
  .comparison-table th,
  .comparison-table td {
    padding: 0.8rem 0.6rem;
  }
  
  .comparison-table th {
    font-size: 0.9rem;
    letter-spacing: 0.3px;
  }
  
  .comparison-table td {
    font-size: 0.85rem;
  }
  
  .featured-image img {
    width: 100%;
    height: auto;
  }
  
  .image-caption {
    font-size: 0.8rem;
  }
  
  .role-breakdown {
    padding: 1rem;
  }
  
  .role-breakdown h4 {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .comparison-table {
    font-size: 0.8rem;
    margin: 1rem 0;
    border-radius: var(--radius-md);
  }
  
  .comparison-table th,
  .comparison-table td {
    padding: 0.6rem 0.4rem;
  }
  
  .comparison-table th {
    font-size: 0.8rem;
    letter-spacing: 0.2px;
  }
  
  .comparison-table td {
    font-size: 0.75rem;
    line-height: 1.4;
  }
  
  .comparison-table table {
    border-radius: var(--radius-md);
  }
  
  .featured-image {
    margin: 1rem 0;
  }
  
  .role-breakdown {
    padding: 0.75rem;
  }
}

.cta-section { 
  background: var(--gradient-gold); 
  color: white; 
  padding: 2rem; 
  border-radius: var(--radius-lg); 
  text-align: center; 
  margin: 2rem 0; 
  box-shadow: var(--shadow-lg);
}

.cta-section h3 { 
  color: white; 
  margin-bottom: 1rem; 
  font-size: 1.5rem;
}

.cta-section a { 
  color: white; 
  font-weight: bold; 
  text-decoration: none; 
  padding: 0.75rem 1.5rem; 
  background: rgba(255,255,255,0.2); 
  border-radius: var(--radius-md); 
  display: inline-block; 
  margin-top: 1rem; 
  transition: background 0.2s ease;
}

.cta-section a:hover { 
  background: rgba(255,255,255,0.3); 
}

.faq-section { 
  margin-top: 3rem; 
}

.faq-item { 
  margin: 1rem 0; 
  padding: 1rem;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
}

.faq-question { 
  font-weight: bold; 
  color: var(--accent-gold); 
  margin-bottom: 0.5rem; 
  font-size: 1.1rem;
}

.faq-answer { 
  color: var(--text-light); 
  line-height: 1.6;
}

/* Tablolar */
.comparison-table, .entropy-table { 
  width: 100%; 
  border-collapse: collapse; 
  margin: 1rem 0; 
  background: var(--glass-bg);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.comparison-table th, .comparison-table td, .entropy-table th, .entropy-table td { 
  border: 1px solid var(--glass-border); 
  padding: 0.75rem; 
  text-align: left; 
}

.comparison-table th, .entropy-table th { 
  background: var(--gradient-secondary); 
  color: var(--accent-gold); 
  font-weight: 600;
}

.comparison-table td, .entropy-table td { 
  color: var(--text-light); 
}

/* Kutular */
.tip { 
  background: var(--glass-bg); 
  border: 1px solid var(--glass-border); 
  border-radius: var(--radius-md); 
  padding: 1rem; 
  margin: 1rem 0; 
  backdrop-filter: blur(10px);
}

.warning { 
  background: rgba(239, 68, 68, 0.1); 
  border: 1px solid rgba(239, 68, 68, 0.3); 
  border-radius: var(--radius-md); 
  padding: 1rem; 
  margin: 1rem 0; 
  backdrop-filter: blur(10px);
}

.warning h4 { 
  color: #ef4444; 
  margin-bottom: 0.5rem; 
}

/* Responsive */
@media (max-width: 768px) {
  .article { 
    padding: 1.25rem; 
  }
  
  .blog-container { 
    padding: 1.25rem; 
  }
  
  .post-list {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .article h1 {
    font-size: 1.75rem;
  }
  
  .article h2 {
    font-size: 1.25rem;
  }
  
  .article h3 {
    font-size: 1.1rem;
  }
}


