/* Sözcük Atlası - Yazım Kuralları Ortak Stil Dosyası */

* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    /* Colors */
    --primary-color: #6366f1;
    --secondary-color: #8b5cf6;
    --success-color: #10b981;
    --warning-color: #f59e0b;
    --error-color: #ef4444;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --white: #ffffff;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;

    /* Common gradients */
    --gradient-main: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-warning: linear-gradient(135deg, #fef3c7, #fde68a);
    --gradient-info: linear-gradient(135deg, #e0e7ff, #c7d2fe);
    --gradient-success: linear-gradient(135deg, #d1fae5, #a7f3d0);
    --gradient-round: linear-gradient(135deg, #fecaca, #fca5a5);
    --gradient-straight: linear-gradient(135deg, #bfdbfe, #93c5fd);

    /* Shadows */
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

/* Common typography */
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--gray-50);
}

/* Common layout components */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.flex { display: flex; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.gap-sm { gap: 0.5rem; }
.gap-md { gap: 1rem; }
.gap-lg { gap: 1.5rem; }
.gap-xl { gap: 2rem; }
.text-center { text-align: center; }

/* Common spacing */
.mb-sm { margin-bottom: 0.5rem; }
.mb-md { margin-bottom: 1rem; }
.mb-lg { margin-bottom: 1.5rem; }
.mb-xl { margin-bottom: 2rem; }
.mb-2xl { margin-bottom: 3rem; }

/* Common text styles */
.text-success { color: var(--success-color); font-weight: 600; }
.text-warning { color: var(--warning-color); font-weight: 600; }
.text-error { color: var(--error-color); font-weight: 600; }

/* Header */
header {
    background: var(--white);
    box-shadow: var(--shadow-lg);
    position: sticky;
    top: 0;
    z-index: 1000;
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-color);
    text-decoration: none;
}

.logo-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    object-fit: cover;
}

/* Nav Download Link */
.nav-download-btn {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-download-btn:hover {
    color: var(--primary-color);
}

.nav-download-btn::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-download-btn:hover::after {
    width: 100%;
}


/* Hero Placeholder - CLS önleme */
sa-hero {
    display: block;
    min-height: 280px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

@media (max-width: 768px) {
    sa-hero {
        min-height: 320px;
    }
}

/* Main Content Layout */
.main-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 2rem;
}

.content {
    background: var(--white);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: var(--shadow-lg);
}

.sidebar,
sa-sidebar.sidebar {
    position: sticky;
    top: 120px;
    height: fit-content;
    display: block;
}

/* Content Sections */
.section {
    margin-bottom: 3rem;
}

.section h2 {
    color: var(--text-dark);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 3px solid var(--primary-color);
}

.section h3 {
    color: var(--primary-color);
    font-size: 1.3rem;
    font-weight: 600;
    margin: 2rem 0 1rem 0;
}

/* Common content blocks */
.intro-text,
.rule-box {
     margin: 1.5rem 0;
}

.rule-box {
    padding: 1.5rem;
    border: 1px solid var(--gray-200);
    border-radius: 10px;
}

.rule-box .rule-title {
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.rule-box .rule-subtitle {
    font-weight: 600;
    color: var(--text-dark);
    margin: 1rem 0 0.5rem 0;
}

.rule-box .rule-examples {
    color: #b45309;
    font-weight: 600;
    margin-top: 0.75rem;
}

/* Grid layouts */
.examples-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.vowel-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

.mistakes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin: 1.5rem 0;
}

/* Card components */
.example-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 10px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

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

.example-card h4 {
    color: var(--text-dark);
    font-size: 1.1rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.vowel-card {
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.vowel-card.thick {
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    border-color: var(--warning-color);
}

.vowel-card.thin {
    background: var(--gradient-info);
    border-color: var(--primary-color);
}

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

.vowel-card h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.vowel-letters {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin: 1rem 0;
    flex-wrap: wrap;
}

.vowel-letter {
    width: 45px;
    height: 45px;
    background: var(--white);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 700;
    box-shadow: var(--shadow-lg);
}

/* List styles */
.examples-list {
    list-style: none;
}

.examples-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--gray-100);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.examples-list li:last-child {
    border-bottom: none;
}

/* Tag components */
.correct-writing {
    color: var(--success-color);
    font-weight: 600;
    background: rgba(16,185,129,0.1);
    padding: 0.25rem 0.5rem;
    border-radius: 5px;
}

.wrong-writing {
    color: var(--error-color);
    text-decoration: line-through;
    opacity: 0.7;
    background: rgba(239,68,68,0.1);
    padding: 0.25rem 0.5rem;
    border-radius: 5px;
}

.thick-vowel {
    color: #92400e;
    font-weight: 600;
    background: rgba(245,158,11,0.1);
    padding: 0.25rem 0.5rem;
    border-radius: 5px;
}

.thin-vowel {
    color: var(--primary-color);
    font-weight: 600;
    background: rgba(99,102,241,0.1);
    padding: 0.25rem 0.5rem;
    border-radius: 5px;
}

/* Kucuk unlu uyumu - Duz/Yuvarlak unlu tag'leri */
.straight-vowel {
    color: var(--primary-color);
    font-weight: 600;
    background: rgba(99,102,241,0.1);
    padding: 0.25rem 0.5rem;
    border-radius: 5px;
}

.round-vowel {
    color: #dc2626;
    font-weight: 600;
    background: rgba(239,68,68,0.1);
    padding: 0.25rem 0.5rem;
    border-radius: 5px;
}

/* Kucuk unlu uyumu - Vowel card varyantlari */
.vowel-card.round {
    background: var(--gradient-round);
    border-color: #ef4444;
}

.vowel-card.straight {
    background: var(--gradient-straight);
    border-color: var(--primary-color);
}

/* Warning box - Uyari kutulari */
.warning-box {
    background: var(--gradient-warning);
    border: 2px solid var(--warning-color);
    border-radius: 15px;
    padding: 1.5rem;
    margin: 1.5rem 0;
}

.warning-box .warning-title {
    color: #92400e;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.warning-box p {
    color: #78350f;
    margin-bottom: 0.75rem;
}

.warning-box p:last-child {
    margin-bottom: 0;
}

/* Info box - Bilgi kutulari */
.info-box {
    background: var(--gradient-info);
    border: 2px solid var(--primary-color);
    border-radius: 15px;
    padding: 1.5rem;
    margin: 1.5rem 0;
}

.info-box .info-title {
    color: #3730a3;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.info-box p {
    color: #312e81;
    margin-bottom: 0.5rem;
}

.info-box p:last-child {
    margin-bottom: 0;
}

/* Word tags - Kelime etiketleri */
.word-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 1rem 0;
}

.word-tag {
    background: linear-gradient(135deg, #e0e7ff, #c7d2fe);
    color: #3730a3;
    padding: 0.4rem 0.8rem;
    border-radius: 8px;
    font-weight: 500;
    font-size: 0.95rem;
}

.word-tag.exception {
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    color: #92400e;
}

.word-tag.latin {
    background: linear-gradient(135deg, #d1fae5, #a7f3d0);
    color: #065f46;
    font-style: italic;
}

/* Example sentence - Ornek cumle */
.example-sentence {
    font-style: italic;
    color: var(--text-dark);
    margin: 0.5rem 0;
    padding: 0.75rem;
    background: var(--gray-50);
    border-radius: 8px;
}

/* Highlight - Vurgulama */
.highlight {
    color: var(--primary-color);
    font-weight: 600;
}

/* Rule number - Kural numarasi */
.rule-box .rule-number {
    font-weight: 700;
    color: var(--text-dark);
    margin-right: 0.5rem;
}

/* Word and explanation in lists */
.examples-list .word {
    font-weight: 600;
    color: var(--primary-color);
}

.examples-list .explanation {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Syllable examples - Hece ornekleri */
.syllable-example {
    font-family: monospace;
    font-size: 1.1rem;
    background: var(--gray-50);
    padding: 0.5rem 1rem;
    border-radius: 6px;
    display: inline-block;
    margin: 0.25rem;
}

.syllable-highlight {
    color: var(--primary-color);
    font-weight: 700;
}

/* Deyim grid - Deyim ornekleri */
.deyim-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 0.75rem;
    margin: 1.5rem 0;
}

.deyim-item {
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: 8px;
    padding: 0.75rem 1rem;
    font-weight: 500;
    color: var(--text-dark);
    transition: all 0.2s ease;
}

.deyim-item:hover {
    background: var(--white);
    border-color: var(--primary-color);
    transform: translateY(-1px);
}

/* Accordion Styles - Noktalama isaretleri vb. icin */
.accordion-container {
    margin: 2rem 0;
}

.accordion-item {
    border: 1px solid var(--gray-200);
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.accordion-item:hover {
    box-shadow: var(--shadow-lg);
}

.accordion-header {
    background: var(--white);
    padding: 1.25rem 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
    border: none;
    width: 100%;
    text-align: left;
    font-family: inherit;
}

.accordion-header:hover {
    background: var(--gray-50);
}

.accordion-header.active {
    background: var(--gradient-info);
    border-bottom: 1px solid var(--gray-200);
}

.accordion-title {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.accordion-symbol {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    min-width: 50px;
    text-align: center;
}

.accordion-name {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
}

.accordion-icon {
    font-size: 1.5rem;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.accordion-content {
    display: none;
    padding: 1.5rem;
    background: var(--white);
}

.accordion-content.show {
    display: block;
}

/* Rule item - Kural maddeleri */
.rule-item {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 10px;
    padding: 1.25rem;
    margin: 1rem 0;
    transition: all 0.3s ease;
}

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

.rule-text {
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.example-text {
    color: var(--text-light);
    font-size: 0.95rem;
}

.example-text strong {
    color: var(--success-color);
}

/* Category box */
.category-box {
    background: var(--gradient-info);
    border: 2px solid var(--primary-color);
    border-radius: 15px;
    padding: 1.5rem;
    margin: 1.5rem 0;
}

.category-box h3 {
    color: #4338ca;
    margin-top: 0;
}

/* Word item - Kelime ogeleri */
.word-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--gray-100);
}

.word-item:last-child {
    border-bottom: none;
}

/* Special sections */
.quiz-section {
    background: var(--gradient-warning);
    border: 2px solid var(--warning-color);
    border-radius: 15px;
    padding: 0rem 2rem 2rem;
    margin: 2rem 0;
}

.quiz-section h3 {
    color: #92400e;
    margin-bottom: 1rem;
    text-align: center;
}

.quiz-questions {
    list-style: decimal;
    margin-left: 1.5rem;
}

.quiz-questions li {
    margin: 1rem 0;
    font-weight: 500;
}

.quiz-answers {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 10px;
    margin-top: 1.5rem;
}

.quiz-answers h4 {
    color: var(--success-color);
    margin-bottom: 1rem;
}

.summary-box {
    background: var(--gradient-success);
    border: 2px solid var(--success-color);
    border-radius: 15px;
    padding: 0rem 2rem 2rem;
    margin: 2rem 0;
}

.summary-box h3 {
    color: var(--success-color);
    margin-bottom: 1rem;
    text-align: center;
}

.summary-list {
    list-style: none;
}

.summary-list li {
    margin: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.summary-list li::before {
    content: '\2713';
    color: var(--success-color);
    font-weight: bold;
    font-size: 1.2rem;
}

/* Mistake correction components */
.mistake-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    background: #fef2f2;
    border: 1px solid #fecaca;
    border-radius: 10px;
}

.mistake-wrong {
    color: var(--error-color);
    font-weight: 600;
    text-decoration: line-through;
}

.mistake-correct {
    color: var(--success-color);
    font-weight: 600;
}

.mistake-arrow {
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.2rem;
}

/* Button components */
.toggle-answers-btn {
    display: inline-block;
    margin-top: 1rem;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 10px;
    padding: 0.75rem 1.25rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.toggle-answers-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

.toggle-answers-btn:active {
    transform: translateY(0);
}

.toggle-answers-btn:focus-visible {
    outline: 2px solid var(--white);
    outline-offset: 2px;
}

.cta-button {
    background: var(--white);
    color: var(--primary-color);
    padding: 1rem 2rem;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Utility classes */
.hidden {
    display: none !important;
}

.correct-icon {
    color: var(--success-color);
    font-weight: bold;
}

.wrong-icon {
    color: var(--error-color);
    font-weight: bold;
}

/* App CTA */
.app-cta {
    background: var(--gradient-main);
    color: var(--white);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    margin: 2rem 0;
}

.app-cta h3 {
    margin-bottom: 1rem;
}

.app-cta p {
    opacity: 0.9;
    margin-bottom: 1.5rem;
}

/* Sidebar */
.sidebar-card {
    background: var(--white);
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: var(--shadow-lg);
    margin-bottom: 1.5rem;
}

.sidebar-card h3 {
    color: var(--text-dark);
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.sidebar-list {
    list-style: none;
}

.sidebar-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--gray-100);
}

.sidebar-list li:last-child {
    border-bottom: none;
}

.sidebar-list a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.sidebar-list a:hover {
    color: var(--primary-color);
}

.sidebar-info {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Quote box - Alinti kutulari */
.quote-box {
    background: linear-gradient(135deg, #d1fae5, #a7f3d0);
    border-left: 4px solid var(--success-color);
    border-radius: 0 15px 15px 0;
    padding: 1.5rem;
    margin: 1.5rem 0;
}

.quote-box p {
    color: #065f46;
    font-size: 1.05rem;
    margin-bottom: 0.5rem;
}

.quote-box .quote-translation {
    color: #047857;
    font-style: italic;
    font-size: 0.95rem;
}

/* Harmony card - Kucuk unlu uyumu */
.harmony-card {
    background: var(--white);
    border: 2px solid var(--primary-color);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

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

.harmony-from {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.harmony-arrow {
    font-size: 1.5rem;
    margin: 0.5rem 0;
    color: var(--text-light);
}

.harmony-to {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.harmony-examples {
    font-size: 0.9rem;
    color: var(--text-light);
    font-style: italic;
}

/* Line row - Satir sonu bölme ornekleri */
.line-row {
    display: flex;
    align-items: baseline;
}

.line-row .dots {
    flex: 1;
    border-bottom: 1px dotted var(--text-light);
    margin-right: 0.5rem;
    height: 0.8em;
}

.line-row .line-end {
    white-space: nowrap;
}

.line-row .line-start {
    display: block;
}

.line-row .wrong-text {
    color: var(--error-color);
}

.line-row .correct-text {
    color: var(--success-color);
}

/* Suffix tag - Ek etiketleri */
.suffix-tag {
    color: var(--primary-color);
    font-weight: 600;
    background: rgba(99,102,241,0.1);
    padding: 0.25rem 0.5rem;
    border-radius: 5px;
}

/* Highlight box - Vurgulu kutu */
.highlight-box {
    background: var(--gradient-info);
    border: 2px solid var(--primary-color);
    border-radius: 15px;
    padding: 1.5rem;
    margin: 1.5rem 0;
}

.highlight-box .highlight-title {
    color: #3730a3;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
}

.highlight-box p {
    color: #312e81;
}

/* Pekistirme harf - Pekistirme sozcukleri */
.pekistirme-harf {
    color: #f59e0b;
    font-weight: 700;
}

.pekistirme-list {
    list-style: none;
    margin-top: 1rem;
}

.pekistirme-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--gray-100);
}

.pekistirme-list li:last-child {
    border-bottom: none;
}

/* Sapka - Duzeltme isareti */
.sapka {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.1em;
}

/* Vowel char - Unlu karakteri */
.vowel-char {
    font-size: 1.2rem;
    font-weight: 700;
    color: #b45309;
}

.vowel-table .vowel-char {
    font-size: 1.2rem;
    font-weight: 700;
    color: #b45309;
}

/* Pronunciation - Telaffuz */
.pronunciation {
    color: #b45309;
    font-weight: 500;
    font-style: italic;
}

.examples-list li .pronunciation {
    color: #b45309;
    font-weight: 500;
    font-style: italic;
}

/* Note box - Not kutusu */
.note-box {
    background: var(--gradient-info);
    border: 2px solid var(--primary-color);
    border-radius: 15px;
    padding: 1.5rem;
    margin: 1.5rem 0;
}

.note-box .note-title {
    color: #3730a3;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.note-box p {
    color: #312e81;
    margin-bottom: 0.5rem;
}

.note-box p:last-child {
    margin-bottom: 0;
}

/* Vowel table - Unlu tablosu */
.vowel-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
}

.vowel-table th,
.vowel-table td {
    padding: 0.75rem;
    text-align: center;
    border: 1px solid var(--gray-200);
}

.vowel-table th {
    background: var(--gradient-info);
    color: #3730a3;
    font-weight: 600;
}

.vowel-table tr:nth-child(even) {
    background: var(--gray-50);
}

/* Words grid - Kelime ızgarası */
.words-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 0.75rem;
    margin: 1rem 0;
}

/* Comparison table - Karşılaştırma tablosu */
.comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
}

.comparison-table th,
.comparison-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid var(--gray-200);
}

.comparison-table th {
    background: var(--gray-50);
    font-weight: 600;
    color: var(--text-dark);
}

.comparison-table tr:hover {
    background: var(--gray-50);
}

/* Examples text */
.examples-text {
    color: var(--text-light);
    line-height: 1.8;
    margin-top: 0.75rem;
}

.examples-text strong {
    color: var(--text-dark);
}

/* Sub-rule - Alt kural */
.sub-rule {
    margin-left: 1.5rem;
    padding: 1rem;
    background: var(--gray-50);
    border-radius: 10px;
    margin-top: 0.75rem;
}

.sub-rule .rule-title {
    font-size: 1rem;
}

/* Category header - Kategori başlığı */
.category-header {
    background: var(--gradient-info);
    padding: 1rem 1.5rem;
    border-radius: 10px;
    margin: 1.5rem 0 0.75rem 0;
}

.category-header .rule-title {
    color: #4338ca;
    margin-bottom: 0;
}

/* Rule note */
.rule-note {
    color: var(--text-light);
    font-style: italic;
    font-size: 0.95rem;
    margin-top: 0.5rem;
}

/* Line simulation - Satir sonu bölme simulasyonu */
.line-simulation {
    margin: 1.5rem 0;
    font-size: 1rem;
    line-height: 2;
}

/* Line break example - Satir sonu bölme ornegi */
.line-break-example {
    background: var(--gray-50);
    padding: 1rem 1.5rem;
    border-radius: 8px;
    margin: 1rem 0;
    font-family: monospace;
    font-size: 0.95rem;
    line-height: 1.8;
}

.line-break-example .line {
    display: block;
    margin: 0.25rem 0;
}

.line-break-example .hyphen {
    color: var(--error-color);
    font-weight: 700;
}

/* Quote author - Alinti yazari */
.quote-box .author,
.author {
    display: block;
    margin-top: 0.5rem;
    font-style: normal;
    font-weight: 600;
    color: var(--primary-color);
}

/* Quote author alternative */
.quote-author {
    display: block;
    margin-top: 0.5rem;
    font-style: normal;
    font-weight: 600;
    color: var(--primary-color);
}

/* Example list - Ornek listesi */
.example-list {
    list-style: none;
    margin: 1rem 0;
}

.example-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--gray-100);
}

.example-list li:last-child {
    border-bottom: none;
}

/* Harmony grid - Unlu uyumu ızgarası */
.harmony-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

/* Fixed words card - Kalıplaşmış kelimeler kartı */
.fixed-words-card {
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    border: 2px solid var(--warning-color);
    border-radius: 15px;
    padding: 1.5rem;
    margin: 1.5rem 0;
}

.fixed-words-card h4 {
    color: #92400e;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.fixed-words-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    list-style: none;
}

.fixed-words-list li {
    background: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-weight: 600;
    color: #92400e;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* Quote text - Alinti metni */
.quote-box .quote-text {
    font-size: 1.2rem;
    font-weight: 600;
    color: #92400e;
    margin-bottom: 0.5rem;
}

/* Diger Icerikler - Responsive */
.other-content-mobile {
    display: none;
}

.other-content-desktop {
    display: block;
}

/* Responsive */
@media (max-width: 768px) {
    .main-content {
        grid-template-columns: 1fr;
        padding: 1rem;
    }


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

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

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

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

    .word-tags {
        justify-content: center;
    }

    .sidebar,
    sa-sidebar.sidebar,
    sa-sidebar {
        display: none !important;
    }

    .other-content-mobile {
        display: block;
    }

    .section-title {
        font-size: 2rem;
    }

    .accordion-symbol {
        min-width: 40px;
        font-size: 1.2rem;
    }

    .accordion-name {
        font-size: 1rem;
    }

    .words-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .comparison-table {
        font-size: 0.9rem;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 0.75rem 0.5rem;
    }

    .sub-rule {
        margin-left: 0.5rem;
    }

    .line-simulation {
        font-size: 0.9rem;
    }

    .harmony-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .fixed-words-list {
        justify-content: center;
    }
}
