:root {
    /* Ana turkuaz tonları */
    --primary: #26bcc2;          /* Normal - ana renk */
    --primary-hover: #0C3A3C;    /* Koyu turkuaz */
    --primary-light: #a6e6e9;    /* Açık turkuaz */
    --primary-pale: #e6f7f8;     /* Çok açık turkuaz */
    --primary-medium: #4fd1d7;   /* Orta-açık turkuaz */
    --primary-dark: #1e9ca6;     /* Orta-koyu turkuaz */
    --primary-deep: #0C3A3C;     /* En koyu turkuaz */
    
    /* Temel renkler */
    --bg-body: #f8fafc;
    --surface: #fff;
    --text-main: #0f172a;
    --text-muted: #475569;
    --border: #64748b;
    
    /* Google renkleri */
    --google-blue: #1a0dab;
    --google-gray: #4d5156;
    
    /* Semantik renkler - turkuaz temalı */
    --success: #0ea5e9;          /* Turkuaz mavi - başarı */
    --success-light: #bae6fd;    /* Açık turkuaz mavi */
    --warning: #f59e0b;          /* Turuncu - uyarı */
    --warning-light: #fef3c7;    /* Açık turuncu */
    --danger: #ef4444;           /* Kırmızı - hata */
    --danger-light: #fee2e2;     /* Açık kırmızı */
    
    /* Boşluk değişkenleri */
    --space-1: 4px;
    --space-2: 8px;
    --space-3: 12px;
    --space-4: 16px;
    --space-5: 20px;
    --space-6: 24px;
    --space-8: 32px;
    --space-10: 40px;
    --space-12: 48px;
    --space-16: 64px;
    
    /* Köşe yarıçapı */
    --radius: 12px;
    --radius-lg: 16px;
    
    /* Geçiş efekti */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Gradient'ler */
    --gradient-primary: linear-gradient(135deg, #26bcc2 0%, #0C3A3C 100%);
    --gradient-light: linear-gradient(135deg, #a6e6e9 0%, #4fd1d7 100%);
    
    /* Emoji değişkenleri */
    --emoji-index: "🔍";
    --emoji-site-analiz: "⚡";
    --emoji-arama-motoru-sira-bulucu: "📊";
    --emoji-resim-optimizasyonu: "🖼️";
    --emoji-resim-donusturme: "🔄";
    --emoji-minify: "⚙️";
    --emoji-robots: "🤖";
    --emoji-iletisim: "📧";
    --emoji-gizlilik-politikasi: "🔒";
    --emoji-kullanim-sartlari: "📜";
    }
@media (prefers-color-scheme: dark) {
    :root {
        --bg-body: #0f172a;
        --surface: #1e293b;
        --text-main: #f8fafc;
        --text-muted: #cbd5e1;
        --border: #475569;
        --google-blue: #60a5fa;
        --google-gray: #e2e8f0;
        /* Turkuaz temalı karanlık mod renkleri - daha koyu */
        --primary: #26bcc2;          /* Normal turkuaz */
        --primary-hover: #1e9ca6;    /* Orta-koyu turkuaz */
        --primary-light: #4fd1d7;    /* Orta-açık turkuaz */
        --primary-pale: #0C3A3C;     /* Koyu turkuaz (arka plan) */
        --primary-medium: #26bcc2;   /* Normal turkuaz */
        --primary-dark: #1e9ca6;     /* Orta-koyu turkuaz */
        --primary-deep: #0C3A3C;     /* En koyu turkuaz */
        --success: #0ea5e9;          /* Turkuaz mavi - başarı */
        --success-light: #0C3A3C;    /* Koyu turkuaz arka plan */
        --warning: #f59e0b;          /* Turuncu - uyarı */
        --warning-light: #92400e;    /* Koyu turuncu arka plan */
        --danger: #ef4444;           /* Kırmızı - hata */
        --danger-light: #7f1d1d;     /* Koyu kırmızı arka plan */
        }
    body .result-card, body .editor-card, body .google-preview-box, body .alternatives-container, body .report-summary-card, body .glass-card {
        background: var(--surface);
        border-color: var(--border);
        color: var(--text-main);
        box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.25)
        }
    body .primary-btn, body .clear-btn {
        background: linear-gradient(90deg, var(--primary-dark) 0%, var(--primary-deep) 100%);
        color: var(--text-main);
        border: none;
        box-shadow: 0 2px 8px 0 rgba(38, 188, 194, 0.15)
        }
    body .primary-btn:hover, body .clear-btn:hover {
        background: linear-gradient(90deg, var(--primary-deep) 0%, var(--primary-dark) 100%);
        color: var(--text-main)
        }
    body .tag {
        background: var(--primary-pale);
        color: var(--primary);
        border-color: var(--primary-medium)
        }
    body .tag:hover {
        background: var(--primary-dark);
        color: var(--text-main);
        border-color: var(--primary-dark)
        }
    body .focus-keyword-display {
        color: var(--primary)
        }
    body .focus-sentence-box {
        background: var(--primary-pale);
        color: var(--text-main);
        border-color: var(--primary-medium)
        }
    body .focus-sentence-box:hover {
        border-style: solid;
        border-color: var(--primary-dark);
        background: var(--primary-deep);
        }
    body .input-wrapper input {
        background: var(--primary-pale);
        color: var(--text-main);
        border-color: var(--border)
        }
    body .input-wrapper input:focus {
        background: var(--surface);
        color: var(--text-main);
        border-color: var(--primary)
        }
    body .input-wrapper .icon-btn:hover {
        color: var(--primary);
        background: var(--primary-light)
        }
    body textarea {
        background: var(--surface);
        color: var(--text-main)
        }
    body .nav-btn, body .nav-btn.active, body .nav-btn:hover {
        background: var(--bg-body);
        color: var(--text-muted);
        border-color: var(--border)
        }
    body .nav-btn.active {
        background: var(--primary-dark);
        color: var(--text-main);
        border-color: var(--primary-dark);
        font-weight: 600
        }
    body .nav-btn:hover {
        background-color: var(--primary-light);
        color: var(--text-main);
        border-color: var(--primary)
        }
    body .minify-tab-btn.active {
        background: var(--primary-light);
        color: var(--text-main);
        border-color: var(--primary)
        }
    body .google-preview-box .g-title {
        color: var(--primary)
        }
    body .google-preview-box .g-desc {
        color: var(--text-muted)
        }
    body .google-preview-box .g-url {
        color: var(--primary-medium)
        }
    body .hero-score-status.excellent, body .hero-score-status.good {
        background: var(--success-light);
        color: var(--success)
        }
    body .hero-score-status.warning {
        background: var(--warning-light);
        color: var(--warning)
        }
    body .hero-score-status.danger {
        background: var(--danger-light);
        color: var(--danger)
        }
    body .toast-notification {
        background-color: var(--surface);
        color: var(--text-main);
        white-space: normal;
        word-wrap: break-word;
        overflow-wrap: break-word;
        max-width: 90vw;
        min-width: 200px;
        text-align: center
        }
    body .content-stats-bar {
        background: linear-gradient(135deg, var(--surface) 0%, var(--bg-body) 100%)
        }
    body .feature-card {
        background: var(--surface);
        border-color: var(--border);
        color: var(--text-main);
        border: 1px solid var(--border);
        border-radius: 16px;
        padding: 30px
        }
    body .feature-card p {
        color: var(--text-muted)
        }
    body .feature-card h1, body .feature-card h2, body .feature-card h3 {
        color: var(--primary);
        font-weight: 700;
        letter-spacing: 0.01em
        }
    body .feature-card code {
        background: var(--primary-pale);
        color: var(--primary)
        }
    body .features-list-container {
        background: var(--surface);
        border-color: var(--border);
        color: var(--text-muted);
    }
    body .robots-editor-card {
        background: var(--surface);
        border-color: var(--border);
    }
    body .robots-editor-card:hover {
        border-color: rgba(38, 188, 194, 0.15);
    }
    }
* {
    box-sizing: border-box
    }
*:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px
    }
/* IBM Plex Sans - Latin Extended */
@font-face {
    font-display: swap;
    font-family: "IBM Plex Sans";
    font-style: normal;
    font-weight: 300;
    }
@font-face {
    font-display: swap;
    font-family: "IBM Plex Sans";
    font-style: normal;
    font-weight: 400;
    }
@font-face {
    font-display: swap;
    font-family: "IBM Plex Sans";
    font-style: normal;
    font-weight: 500;
    }
@font-face {
    font-display: swap;
    font-family: "IBM Plex Sans";
    font-style: normal;
    font-weight: 600;
    }
@font-face {
    font-display: swap;
    font-family: "IBM Plex Sans";
    font-style: normal;
    font-weight: 700;
    }
/* Font Awesome 6 Free - Brands */
@font-face {
    font-display: swap;
    font-family: "Font Awesome 6 Brands";
    font-style: normal;
    font-weight: 400;
    }
/* Font Awesome 6 Free - Regular */
@font-face {
    font-display: swap;
    font-family: "Font Awesome 6 Free";
    font-style: normal;
    font-weight: 400;
    }
/* Font Awesome 6 Free - Solid */
@font-face {
    font-display: swap;
    font-family: "Font Awesome 6 Free";
    font-style: normal;
    font-weight: 900;
    }
body {
    font-family: "IBM Plex Sans", "IBM Plex Sans Fallback", "Segoe UI", Tahoma, Geneva, Verdana, Arial, sans-serif;
    background-color: var(--bg-body);
    color: var(--text-main);
    margin: 0;
    padding-bottom: 0;
    line-height: 1.6;
    font-feature-settings: "kern" 1, "liga" 1, "calt" 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale
    }
/* Tipografi hiyerarşisi */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    color: var(--text-main);
    margin-top: 0;
    margin-bottom: 0.5em;
    line-height: 1.3
    }
h1 {
    font-size: 2rem;
    font-weight: 700
    }
@media (max-width: 768px) {
    h1 {
        font-size: 1.6rem;
        }
    }
h2 {
    font-size: 1.4rem
    }
@media (max-width: 768px) {
    h2 {
        font-size: 1.2rem;
        }
    }
h3 {
    font-size: 1.25rem
    }
h4 {
    font-size: 1rem
    }
h5 {
    font-size: 0.875rem
    }
h6 {
    font-size: 0.75rem
    }
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px
    }
.top-bar {
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    padding: 0;
    margin-bottom: 16px;
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: box-shadow 0.3s;
    will-change: transform;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    }
.site-logo-container {
    padding-top: 10px;
}

.site-logo {
    height: auto;
    width: auto;
    max-width: 326px;
    max-height: 100px;
    display: block;
    object-fit: contain;
    aspect-ratio: 326/100
    }
@media (prefers-color-scheme: dark) {
    .site-logo {
        filter: brightness(0.8) contrast(1.2)
        }
    }
.main-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap
    }
.nav-btn {
    text-decoration: none;
    color: var(--text-muted);
    font-weight: 500;
    font-size: 0.9rem;
    padding: 8px 16px;
    border-radius: 8px;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    border: 1px solid transparent
    }
.nav-btn:hover {
    background-color: #a6e6e9;
    color: #00445e;
    border-color: transparent
    }
.nav-btn.active {
    background-color: #a6e6e9;
    color: #00445e;
    font-weight: 500;
    border: 1px solid #26bcc2
    }
.circular-chart {
    display: block;
    margin: 0 auto;
    width: 100%;
    height: 100%
    }
.circle-bg {
    fill: none;
    stroke: #f1f5f9;
    stroke-width: 3
    }
.circle {
    fill: none;
    stroke-width: 3;
    stroke-linecap: round;
    transition: stroke-dasharray 0.8s cubic-bezier(0.4, 0, 0.2, 1), stroke 0.3s;
    stroke: var(--primary)
    }
.score-text {
    font-family: "IBM Plex Sans", sans-serif;
    fill: var(--text-main);
    font-weight: 700;
    font-size: 0.65em;
    text-anchor: middle
    }
.score-green .circle {
    stroke: var(--success)
    }
.score-yellow .circle {
    stroke: var(--warning)
    }
.score-red .circle {
    stroke: var(--danger)
    }
@media (max-width: 768px) {
    .main-nav {
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
        gap: 10px
        }
    .nav-btn {
        width: auto;
        justify-content: center;
        flex-grow: 1;
        max-width: 200px;
        font-size: 0.85rem;
        min-height: 44px;
        padding: 12px 16px
        }
    .primary-btn {
        min-height: 48px;
        padding: 16px;
        border-radius: 10px;
        font-size: 1rem
        }
    .secondary-btn {
        min-height: 44px;
        padding: 14px 18px;
        font-size: 0.95rem
        }
    .icon-btn {
        min-height: 44px;
        min-width: 44px
        }
    .clear-btn {
        min-height: 40px;
        padding: 8px 14px;
        font-size: 0.85rem
        }
    .container {
        padding: 0 16px
        }
    .card-header {
        padding: 20px 20px
        }
    .editor-footer {
        padding: 20px 20px
        }
    .input-wrapper input {
        min-height: 48px;
        padding: 12px 44px 12px 16px;
        font-size: 1rem
        }
    .input-wrapper .icon-btn {
        right: 8px
        }
    .tag {
        min-height: 36px;
        padding: 8px 14px;
        font-size: 0.85rem
        }
    .text-btn {
        min-height: 36px;
        padding: 8px 12px;
        font-size: 0.8rem
        }
    }
.header-logo-wrapper {
    padding: 0
    }
.header-logo-wrapper h1 {
    margin: 0;
    font-size: 1.5rem;
    line-height: 1.2
    }
.header-logo-link {
    display: inline-flex;
    align-items: center;
    text-decoration: none
    }
.main-nav {
    padding-bottom: 12px
    }
.site-footer {
    text-align: center;
    margin-top: 50px;
    margin-bottom: 60px;
    border-top: 1px solid var(--border);
    padding: 30px 20px 20px;
    font-size: 0.9rem;
    color: var(--text-muted)
    }
.site-footer p {
    margin-bottom: 10px;
    font-weight: 500
    }
.site-footer-links {
    font-size: 0.85rem;
    opacity: 0.8
    }
.site-footer-links a {
    color: inherit;
    text-decoration: none;
    margin: 0 10px
    }
.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translatex(-50%);
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border: 1px solid var(--border);
    z-index: 9999;
    width: 90%;
    max-width: 600px;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    font-family: "IBM Plex Sans", sans-serif
    }
.cookie-banner h4 {
    margin: 0 0 5px 0;
    font-size: 1rem;
    color: var(--text-main);
    font-weight: 700;
    font-family: "IBM Plex Sans", sans-serif
    }
.cookie-banner p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
    font-family: "IBM Plex Sans", sans-serif
    }
.cookie-banner a {
    color: var(--primary);
    text-decoration: underline
    }
.cookie-banner > div:first-child {
    flex: 1
    }
.cookie-actions {
    display: flex;
    gap: 10px
    }
.cookie-accept-btn {
    background: #26bcc2;
    color: #00445e;
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    transition: opacity 0.2s
    }
.cookie-accept-btn:hover {
    opacity: 0.9
    }
.main-layout {
    display: flex;
    gap: 32px;
    align-items: stretch;
    min-height: 600px
    }
@media (max-width: 992px) {
    .main-layout {
        flex-direction: column;
        gap: 24px
        }
    .editor-column, .results-column {
        width: 100%
        }
    .results-column {
        position: static
        }
    .editor-card {
        min-height: auto;
        height: fit-content
        }
    }
.editor-column {
    flex: 1.4;
    display: flex;
    flex-direction: column;
    width: auto
    }
.results-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: sticky;
    top: 16px;
    align-self: flex-start;
    width: auto
    }
.editor-card {
    background: var(--surface);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    min-height: 400px;
    width: 100%;
    transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
    will-change: transform;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    }
.editor-card:hover {
    transform: translatey(-2px) translateZ(0);
    box-shadow: var(--shadow-lg);
    border-color: #a6e6e9
    }
.editor-card:focus-within {
    border-color: var(--primary)
    }
.card-header {
    padding: 16px 24px;
    border-bottom: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff
    }
.card-header h1 {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-main)
    }
.clear-btn {
    background: #f1f5f9;
    border: none;
    color: var(--text-muted);
    padding: 6px 12px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.8rem;
    font-weight: 600;
    transition: 0.2s
    }
.clear-btn:hover {
    background: #f1f5f9;
    color: var(--text-muted)
    }
textarea {
    flex: 1;
    border: none;
    padding: 24px;
    resize: none;
    font-family: inherit;
    font-size: 1rem;
    color: var(--text-main);
    line-height: 1.7;
    background: transparent;
    min-height: 300px
    }
textarea:focus {
    outline: none
    }
textarea::placeholder {
    color: #94a3b8
    }
.editor-footer {
    padding: 16px 24px;
    border-top: 1px solid var(--border);
    background: #f8fafc
    }
.primary-btn {
    width: 100%;
    background: #a6e6e9;
    color: #00445e;
    border: none;
    padding: 14px;
    border-radius: 8px;
    font-weight: 500;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 4px 6px -1px rgba(38, 188, 194, 0.2);
    position: relative;
    overflow: hidden
    }
.primary-btn:hover {
    background: #8cd8dc;
    transform: translatey(-1px);
    box-shadow: 0 10px 15px -3px rgba(38, 188, 194, 0.3)
    }
.primary-btn:active {
    transform: translatey(0)
    }
.primary-btn::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s
    }
.primary-btn:active::after {
    width: 300px;
    height: 300px
    }
.secondary-btn {
    background: var(--surface);
    color: var(--text-main);
    border: 1px solid #a6e6e9;
    padding: 12px 16px;
    border-radius: 8px;
    font-weight: 500;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px
    }
.secondary-btn:hover {
    background: var(--surface);
    border-color: var(--primary);
    color: var(--primary)
    }
.secondary-btn:active {
    transform: translatey(0)
    }
@keyframes btn-shimmer {
    0% {
        background-position: 200% 0;
        } 100% {
        background-position: -200% 0;
        }
    }
.result-card {
    background: var(--surface);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    padding: 20px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    margin-bottom: 0;
    min-height: 120px;
    contain: layout;
    will-change: transform;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    }
.result-card:hover {
    transform: translatey(-1px) translateZ(0);
    box-shadow: var(--shadow-lg);
    border-color: #a6e6e9
    }
.card-title {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
    letter-spacing: 0.03em
    }
.card-content {
    display: flex;
    flex-direction: column
    }
.google-preview-box {
    background: #fff;
    padding: 14px;
    border: 1px solid var(--border);
    border-radius: 8px;
    margin-bottom: 16px;
    font-family: arial, sans-serif
    }
.g-url {
    font-size: 14px;
    color: #202124;
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    gap: 4px;
    opacity: 0.9
    }
.g-title {
    color: var(--google-blue);
    font-size: 20px;
    line-height: 1.3;
    cursor: pointer;
    margin: 0 0 4px 0;
    font-weight: 400;
    text-decoration: none;
    display: block
    }
.g-title:hover {
    text-decoration: underline
    }
.g-desc {
    color: var(--google-gray);
    font-size: 14px;
    margin: 0;
    line-height: 1.58
    }
.meta-inputs {
    display: flex;
    flex-direction: column;
    gap: 12px
    }
.input-group {
    margin-bottom: 0
    }
.input-group label {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--text-muted);
    margin-bottom: 6px;
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.5px
    }
.input-wrapper {
    position: relative;
    display: flex;
    margin-bottom: 0
    }
.input-wrapper input {
    width: 100%;
    padding: 9px 40px 9px 12px;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: 0.875rem;
    color: var(--text-main);
    background: #f8fafc;
    transition: all 0.2s
    }
.input-wrapper input:focus {
    background: #fff;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1)
    }
.input-wrapper input:hover:not(:focus) {
    border-color: var(--primary-hover)
    }
.input-wrapper .icon-btn {
    position: absolute;
    right: 6px;
    top: 50%;
    transform: translatey(-50%);
    width: 32px;
    height: 32px;
    border: none;
    background: transparent;
    cursor: pointer;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.2s;
    border-radius: 6px
    }
.input-wrapper .icon-btn:hover {
    color: var(--primary);
    background: var(--primary-light)
    }
.alternatives-container {
    margin-top: 8px;
    padding: 12px;
    background: #f8fafc;
    border-radius: 8px;
    border-left: 3px solid var(--primary)
    }
.alternatives-container.desc-alt {
    border-left-color: var(--success)
    }
.alternatives-container label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 10px;
    text-transform: none;
    letter-spacing: 0
    }
.alternatives-container label i {
    margin-right: 6px
    }
.insight-row {
    padding: 4px 0
    }
.separator {
    height: 1px;
    background: #f1f5f9;
    margin: 16px 0
    }
.insight-label {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-muted);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
    letter-spacing: 0.3px
    }
.focus-keyword-display {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary)
    }
.focus-sentence-box {
    font-size: 0.875rem;
    color: var(--text-main);
    background: var(--surface);
    padding: 14px;
    border-radius: 10px;
    border: 1px dashed var(--primary);
    line-height: 1.6;
    transition: all 0.2s;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.focus-sentence-box:hover {
    border-style: solid;
    border-color: #a6e6e9;
    background: #e6f7f8;
}
.tags-container {
    display: flex;
    flex-wrap: wrap;
    gap: 6px
    }
.tag {
    background: #f8fafc;
    border: 1px solid var(--border);
    color: var(--text-main);
    padding: 5px 12px;
    border-radius: 7px;
    font-size: 0.75rem;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.2s
    }
.tag:hover {
    border-color: #a6e6e9;
    color: #00445e;
    background: #e6f7f8;
    transform: translatey(-1px);
    box-shadow: 0 4px 6px -1px rgba(166, 230, 233, 0.2)
    }
.tag-phrase-3w {
    /* background, border-color, color removed because they are set inline by JS */
    }
.tag-phrase-3w:hover {
    background: #cffafe !important;
    border-color: #0e7490 !important
    }
.tag-phrase-2w {
    /* background, border-color, color removed because they are set inline by JS */
    }
.tag-phrase-2w:hover {
    background: #dcfce7 !important;
    border-color: #15803d !important
    }
.insight-header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px
    }
.text-btn {
    background: #fff;
    border: 1px solid var(--border);
    color: var(--text-muted);
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 0.7rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    gap: 4px
    }
.text-btn:hover {
    border-color: var(--border);
    color: var(--primary);
    background: var(--surface)
    }
#lsi-terms-container {
    background: linear-gradient(135deg, #faf5ff 0%, #f3e8ff 100%);
    padding: 14px;
    border-radius: 10px;
    border: 1px solid #e9d5ff;
    margin-top: -8px
    }
#lsi-terms-container .insight-label {
    color: #6b21a8;
    margin-bottom: 8px
    }
#lsi-score {
    font-size: 0.8rem;
    color: #7e22ce;
    margin-bottom: 10px;
    font-weight: 600
    }
.audit-list {
    list-style: none;
    padding: 0;
    margin: 0
    }
.audit-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid #f1f5f9
    }
.audit-item:last-child {
    border-bottom: none
    }
.audit-icon {
    font-size: 1rem;
    flex-shrink: 0;
    margin-top: 2px
    }
.audit-text strong {
    font-weight: 500;
    display: block;
    font-size: 0.8rem;
    color: var(--text-main);
    margin-bottom: 2px
    }
.audit-text {
    color: var(--text-muted);
    font-size: 0.8rem;
    line-height: 1.5
    }
.audit-item.success .audit-icon {
    color: var(--success)
    }
.audit-item.warning .audit-icon {
    color: var(--warning)
    }
.audit-item.error .audit-icon {
    color: var(--danger)
    }
.audit-item.neutral .audit-icon {
    color: var(--text-muted)
    }
.toast-notification {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translatex(-50%) translatey(20px);
    background-color: #0f172a;
    color: #fff;
    padding: 14px 28px;
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 500;
    z-index: 1000;
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    align-items: center;
    gap: 12px;
    pointer-events: none;
    white-space: normal;
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-width: 500px;
    min-width: 200px;
    text-align: center;
    width: fit-content
    }
.toast-notification.show {
    opacity: 1;
    transform: translatex(-50%) translatey(0)
    }
.highlight-mode-container {
    display: none;
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    border: 1px solid var(--border);
    line-height: 1.8;
    font-size: 1.05rem;
    white-space: pre-wrap;
    height: 650px;
    overflow-y: auto;
    color: var(--text-main)
    }
mark.good {
    background-color: #d1fae5;
    color: #065f46;
    padding: 2px 4px;
    border-radius: 4px;
    font-weight: 600
    }
@media print {
    body {
        background: white;
        color: black
        }
    .container {
        width: 100%;
        max-width: 100%;
        padding: 0;
        margin: 0
        }
    .main-layout {
        display: block
        }
    .results-column {
        width: 100%
        }
    .result-card {
        box-shadow: none;
        border: 1px solid #ccc;
        break-inside: avoid;
        margin-bottom: 20px
        }
    .results-column::before {
        font-size: 20px;
        font-weight: bold;
        display: block;
        margin-bottom: 20px;
        border-bottom: 2px solid #000;
        padding-bottom: 10px
        }
    .hero-score-card::before {
        display: none
        }
    .analysis-progress {
        display: none
        }
    .result-card:hover {
        transform: none;
        box-shadow: none
        }
    }
.beta-badge {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 800;
    color: #ffffff;
    background: linear-gradient(135deg, #26bcc2 0%, #0ea5e9 100%);
    border: 1px solid #0ea5e9;
    padding: 2px 8px;
    border-radius: 20px;
    margin-left: 0;
    margin-top: -15px;
    position: relative;
    top: -5px;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 4px rgba(14, 165, 233, 0.3);
}
.loading-overlay {
    display: none;
    text-align: center;
    padding: 40px;
    background: #f8fafc;
    border-radius: 16px;
    border: 1px dashed var(--border);
    color: var(--text-muted)
    }
.spin {
    animation: spin 1s linear infinite;
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 10px
    }
@keyframes spin {
    100% {
        transform: rotate(360deg);
        }
    }
#results-area {
    font-family: "IBM Plex Sans", sans-serif;
    color: #212121
    }
.report-header-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 28px;
    margin-bottom: 48px;
    padding: 32px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.report-header-grid::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--success), var(--warning));
    opacity: 0.7;
}

.report-header-grid:hover {
    box-shadow: var(--shadow-lg);
    border-color: rgba(37, 99, 235, 0.25);
    transform: translateY(-2px);
}
.gauge-card {
    text-align: center;
    padding: 20px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.gauge-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: #a6e6e9;
}
.gauge-card h3 {
    margin-top: 15px;
    font-size: 1rem;
    color: var(--text-main);
    font-weight: 600;
    margin-bottom: 8px;
}
.circular-progress {
    position: relative;
    height: 120px;
    width: 120px;
    border-radius: 50%;
    background: conic-gradient(var(--primary) 0deg, #e0e0e0 0deg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    transition: background 0.5s ease;
}

.circular-progress::before {
    content: "";
    position: absolute;
    height: 100px;
    width: 100px;
    border-radius: 50%;
    background-color: var(--surface);
}
.circular-progress::before {
    content: "";
    position: absolute;
    height: 84px;
    width: 84px;
    border-radius: 50%;
    background-color: #fff
    }
.progress-value {
    position: relative;
    font-size: 2.5rem;
    font-weight: 700;
    z-index: 2;
    color: var(--text-main);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.report-overview {
    display: flex;
    gap: 40px;
    margin-bottom: 50px;
    flex-wrap: wrap
    }
.screenshot-box {
    flex: 0 0 320px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    align-self: flex-start;
    max-width: 100%;
    height: auto;
    min-height: 240px;
    }
.screenshot-box img {
    width: 100%;
    display: block
    }
.metrics-grid {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px
    }
.category-section {
    margin-bottom: 40px
    }
.audit-group h4 {
    font-size: 0.85rem;
    text-transform: uppercase;
    color: #616161;
    letter-spacing: 0.5px;
    margin: 25px 0 10px 0;
    font-weight: 700
    }
.audit-icon {
    font-size: 1rem;
    width: 20px;
    text-align: center
    }
@media (max-width: 768px) {
    .report-overview {
        flex-direction: column
        }
    .screenshot-box {
        width: 100%;
        flex: 0 0 auto;
        max-width: 100%;
        margin-bottom: 20px;
        }
    .report-header-grid {
        gap: 20px;
        padding: 20px
        }
    .gauge-card {
        width: 120px
        }
    .circular-progress {
        width: 80px;
        height: 80px
        }
    .circular-progress::before {
        width: 66px;
        height: 66px
        }
    .progress-value {
        font-size: 1.8rem
        }
    .gauge-card h3 {
        font-size: 0.85rem
        }
    }
@media (max-width: 480px) {
    .cookie-banner {
        text-align: center;
        bottom: 0;
        left: 0;
        transform: none;
        width: 100%;
        max-width: 100%;
        border-radius: 16px 16px 0 0;
        padding: 20px
        }
    .circular-progress::before {
        width: 56px;
        height: 56px
        }
    .progress-value {
        font-size: 1.5rem
        }
    .beta-badge {
        display: none
        }
    .container {
        padding: 0 12px
        }
    .card-header {
        padding: 16px 16px
        }
    .editor-footer {
        padding: 16px 16px
        }
    .input-wrapper input {
        min-height: 48px;
        padding: 12px 44px 12px 16px;
        font-size: 1rem
        }
    .input-wrapper .icon-btn {
        right: 6px
        }
    .tag {
        min-height: 36px;
        padding: 8px 12px;
        font-size: 0.8rem
        }
    .text-btn {
        min-height: 36px;
        padding: 8px 10px;
        font-size: 0.75rem
        }
    .primary-btn {
        min-height: 50px;
        padding: 16px;
        border-radius: 12px;
        font-size: 1rem
        }
    .secondary-btn {
        min-height: 44px;
        padding: 14px 16px;
        font-size: 0.9rem
        }
    .icon-btn {
        min-height: 44px;
        min-width: 44px
        }
    .clear-btn {
        min-height: 40px;
        padding: 8px 12px;
        font-size: 0.8rem
        }
    .nav-btn {
        min-height: 44px;
        padding: 12px 16px;
        font-size: 0.8rem
        }
    .hero-score-card {
        padding: 16px
        }
    .hero-score-container {
        width: 80px;
        height: 80px;
        margin-bottom: 10px
        }
    .hero-score-label {
        font-size: 0.75rem
        }
    .hero-score-status {
        font-size: 0.85rem;
        padding: 4px 10px
        }
    .cookie-banner {
        flex-direction: column;
        text-align: center;
        bottom: 0;
        left: 0;
        transform: none;
        width: 100%;
        max-width: 100%;
        border-radius: 16px 16px 0 0;
        padding: 20px
        }
    .cookie-accept-btn {
        width: 100%;
        padding: 12px
        }
    }
.feature-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 30px;
    transition: transform 0.2s, box-shadow 0.2s;
    will-change: transform;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    }
.feature-card:hover {
    transform: translatey(-2px) translateZ(0);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
    border-color: #a6e6e9
    }
.hero-score-card {
    background: linear-gradient(135deg, var(--surface) 0%, #f8fafc 100%);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-top: 0;
    min-height: auto;
    height: auto
    }
.hero-score-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--success), var(--warning))
    }
.hero-score-container {
    width: 120px;
    height: 120px;
    margin: 0 auto 16px;
    position: relative
    }
.hero-score-container .circular-chart {
    width: 100%;
    height: 100%
    }
.hero-score-container .circle-bg {
    stroke-width: 4
    }
.hero-score-container .circle {
    stroke-width: 4
    }
.hero-score-container .score-text {
    font-size: 0.4em
    }
.hero-score-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 6px
    }
.hero-score-status {
    font-size: 1rem;
    font-weight: 700;
    padding: 5px 14px;
    border-radius: 20px;
    display: inline-block
    }
.hero-score-status.excellent {
    background: var(--success-light);
    color: #065f46
    }
.hero-score-status.good {
    background: var(--success-light);
    color: #065f46
    }
.hero-score-status.warning {
    background: var(--warning-light);
    color: #92400e
    }
.hero-score-status.danger {
    background: var(--danger-light);
    color: #991b1b
    }
@media (max-width: 768px) {
    .hero-score-card {
        padding: 20px
        }
    .hero-score-container {
        width: 100px;
        height: 100px;
        margin-bottom: 12px
        }
    .hero-score-label {
        font-size: 0.8rem
        }
    .hero-score-status {
        font-size: 0.9rem;
        padding: 4px 12px
        }
    .cookie-banner {
        text-align: center;
        bottom: 0;
        left: 0;
        transform: none;
        width: 100%;
        max-width: 100%;
        border-radius: 16px 16px 0 0;
        padding: 25px
        }
    .cookie-accept-btn {
        width: 100%;
        padding: 12px
        }
    }
.content-stats-bar {
    display: flex;
    gap: 12px;
    padding: 14px 18px;
    background: var(--surface);
    border-radius: 12px;
    margin-bottom: 16px;
    border: 1px solid var(--border);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.2s;
}

.content-stats-bar:hover {
    border-color: #a6e6e9;
    box-shadow: 0 4px 12px rgba(166, 230, 233, 0.1);
}
.content-stat {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-main)
    }
.content-stat i {
    color: var(--primary);
    font-size: 0.8rem
    }
@media (max-width: 480px) {
    .content-stats-bar {
        flex-direction: column;
        gap: 10px;
        text-align: center
        }
    .content-stat {
        justify-content: center
        }
    }
.glass-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.glass-card:hover {
    border-color: #a6e6e9;
    box-shadow: 0 8px 32px rgba(166, 230, 233, 0.2);
    transform: translateY(-4px);
}

.glass-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--success), var(--warning));
    opacity: 0.7;
    transition: opacity 0.3s;
}

.glass-card:hover::before {
    opacity: 1;
}
@keyframes skeleton-loading {
    0% {
        background-position: 200% 0;
        } 100% {
        background-position: -200% 0;
        }
    }
.analysis-progress {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--border);
    z-index: 9999;
    overflow: hidden
    }
.analysis-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--primary), var(--success));
    width: 0%;
    transition: width 0.3s ease
    }
.analysis-progress.indeterminate .analysis-progress-bar {
    width: 30%;
    animation: progress-indeterminate 1.5s ease-in-out infinite
    }
@keyframes progress-indeterminate {
    0% {
        transform: translateX(-100%);
        } 100% {
        transform: translateX(400%);
        }
    }
@keyframes toast-slide-in {
    from {
        transform: translateX(100%);
        opacity: 0;
        } to {
        transform: translateX(0);
        opacity: 1;
        }
    }
.report-summary-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 30px
    }
.audit-list {
    margin: 12px 0;
    padding-left: 20px
    }
.audit-list li {
    padding: 6px 0;
    font-size: 0.85rem;
    color: var(--text-muted)
    }
.audit-list code {
    background: #f1f5f9;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 0.8rem
    }
@media (prefers-color-scheme: dark) {
    .card-header {
        background: var(--surface)
        }
    .editor-footer {
        background: #1e293b
        }
    .alternatives-container {
        background: #1e293b
        }
    .google-preview-box {
        background: #1e293b;
        border-color: var(--border)
        }
    .hero-score-card {
        background: linear-gradient(135deg, var(--surface) 0%, #0f172a 100%)
        }
    .hero-score-status.excellent, .hero-score-status.good {
        background: rgba(16, 185, 129, 0.2);
        color: #6ee7b7
        }
    .hero-score-status.warning {
        background: rgba(245, 158, 11, 0.2);
        color: #fcd34d
        }
    .hero-score-status.danger {
        background: rgba(239, 68, 68, 0.2);
        color: #fca5a5
        }
    .nav-btn:hover {
        background-color: #a6e6e9;
        color: #00445e
        }
    .nav-btn.active {
        background-color: rgba(37, 99, 235, 0.2);
        border-color: rgba(37, 99, 235, 0.3);
        color: #60a5fa
        }
    .clear-btn {
        background: #334155
        }
    .clear-btn:hover {
        background: rgba(239, 68, 68, 0.2)
        }
    .input-wrapper input {
        background: #1e293b
        }
    .input-wrapper input:focus {
        background: var(--surface)
        }
    .content-stats-bar {
        background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%)
        }
    .glass-card {
        background: rgba(30, 41, 59, 0.7);
        border: 1px solid rgba(255, 255, 255, 0.1)
        }
    .highlight-mode-container {
        background: #1e293b !important;
        border-color: #334155 !important;
        color: #f1f5f9 !important
        }
    .report-summary-card {
        background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%)
        }
    .separator {
        background: #334155 !important
        }
    .text-btn {
        background: #1e293b !important;
        border-color: #334155 !important;
        color: #f1f5f9 !important
        }
    .text-btn:hover {
        background: #334155 !important
        }
    mark.good {
        background-color: rgba(16, 185, 129, 0.2) !important;
        color: #6ee7b7 !important
        }
    .feature-card {
        background: #181f2a !important;
        color: #e0eaf7 !important;
        border-color: #25304a !important
        }
    .feature-card h1, .feature-card h2, .feature-card h3 {
        color: #60a5fa !important;
        font-weight: 700 !important;
        letter-spacing: 0.01em
        }
    #cookie-banner {
        background: #1e293b !important;
        border-color: #334155 !important;
        color: #f1f5f9 !important
        }
    #cookie-banner h4 {
        color: #f1f5f9 !important
        }
    #cookie-banner p {
        color: #94a3b8 !important
        }
    #cookie-banner a {
        color: #60a5fa !important
        }
    .loading-overlay {
        background: #1e293b !important;
        border-color: #334155 !important;
        color: #94a3b8 !important
        }
    .report-header-grid {
        background: #1e293b !important;
        border-color: #334155 !important
        }
    .gauge-card h3 {
        color: #f1f5f9 !important
        }
    .circular-progress {
        background: #334155 !important
        }
    .circular-progress::before {
        background-color: #1e293b !important
        }
    .progress-value {
        color: #f1f5f9 !important
        }
    .report-overview {
        color: #f1f5f9 !important
        }
    .screenshot-box {
        border-color: #334155 !important
        }
    .metrics-grid {
        color: #f1f5f9 !important
        }
    .category-section {
        color: #f1f5f9 !important
        }
    .beta-badge {
        color: #26bcc2 !important;
        background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%) !important;
        border-color: #26bcc2 !important;
        border-width: 2px !important;
        box-shadow: 0 3px 6px rgba(38, 188, 194, 0.6) !important;
        }
    }
.metric-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 15px;
    text-align: center;
    word-break: break-word;
    overflow-wrap: break-word;
    min-height: 120px;
    display: flex;
    flex-direction: column;
    justify-content: center
    }
.metric-card h4 {
    margin: 0 0 12px 0;
    font-size: 16px;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.3;
    color: var(--text-main)
    }
.metric-value {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.2;
    margin: 5px 0
    }
.recommendations {
    margin-top: 20px
    }
.text-center {
    text-align: center
    }
.hero-content {
    text-align: center;
    margin-bottom: 40px
    }
.hero-title {
    font-size: 2rem;
    color: var(--text-main);
    font-weight: 800;
    margin-bottom: 15px;
    padding-left: 0
    }
@media (max-width: 768px) {
    .hero-title {
        font-size: 1.6rem;
        margin-bottom: 10px;
        }
    }
.hero-title::before {
    content: attr(data-emoji);
    display: inline-block;
    vertical-align: middle;
    margin-right: 0.5rem;
    font-size: 1.7rem
    }
/* Page-specific emoji classes using CSS custom properties */
.page-index .hero-title::before {
    content: var(--emoji-index)
    }
.page-site-analiz .hero-title::before {
    content: var(--emoji-site-analiz)
    }
.page-resim-optimizasyonu .hero-title::before {
    content: var(--emoji-resim-optimizasyonu)
    }
.page-resim-donusturme .hero-title::before {
    content: var(--emoji-resim-donusturme)
    }
.page-minify .hero-title::before {
    content: var(--emoji-minify)
    }
.page-iletisim .hero-title::before {
    content: var(--emoji-iletisim)
    }
.page-gizlilik-politikasi .hero-title::before {
    content: var(--emoji-gizlilik-politikasi)
    }
.page-kullanim-sartlari .hero-title::before {
    content: var(--emoji-kullanim-sartlari)
    }

 .page-robots-txt-olusturucu .hero-title::before {
     content: var(--emoji-robots)
     }
 
 .page-arama-motoru-sira-bulucu .hero-title::before {
     content: var(--emoji-arama-motoru-sira-bulucu)
     }
.hero-subtitle {
    color: var(--text-muted);
    margin-top: 0
    }
.pt-30 {
    padding-top: 30px
    }
.pt-40 {
    padding-top: 40px
    }
.pt-60 {
    padding-top: 60px
    }
.mx-auto-800 {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto
    }
.editor-column {
    display: flex;
    flex-direction: column
    }
.editor-card {
    background: var(--surface);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    min-height: 400px;
    width: 100%;
    transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s
    }
.editor-card:hover {
    transform: translatey(-2px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary)
    }
.editor-card:focus-within {
    border-color: var(--primary)
    }
.results-column {
    display: flex;
    flex-direction: column;
    gap: 20px
    }
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px
    }
.container.hero-section {
    margin-top: 50px;
    margin-bottom: 50px;
    padding-top: 0;
    padding-bottom: 0
    }
/* 404 Sayfası Stilleri */
.error-page-body {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    text-align: center;
    padding: 20px
    }
.error-container {
    padding: 0 15px
    }
.error-code {
    font-size: clamp(5rem, 20vw, 8rem);
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    margin: 0
    }
.error-title {
    font-size: clamp(1.3rem, 4vw, 2rem);
    margin: 20px 0;
    color: var(--text-main)
    }
.error-description {
    color: var(--text-muted);
    max-width: 500px;
    margin: 0 auto 30px auto;
    font-size: 0.95rem
    }
.error-home-btn {
    max-width: 250px;
    margin: 0 auto;
    text-decoration: none
    }
.main-layout-no-padding {
    padding-top: 0 !important
    }
.card-header-title {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-main)
    }
.card-title-blue {
    color: #2563eb
    }
.card-title-orange {
    color: #d97706
    }
.card-title-cyan {
    color: #06b6d4
    }
.label-blue {
    color: #3b82f6
    }
.label-green {
    color: #10b981
    }
.sentiment-display {
    font-weight: 700;
    color: #475569
    }
.gradient-purple-text {
    background: linear-gradient(135deg, #7e22ce, #a855f7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700
    }
.lsi-subtext {
    font-size: 0.75rem;
    color: #64748b;
    font-weight: 400;
    margin-left: 6px
    }
.schema-code-box {
    background: #1e293b;
    color: #10b981;
    padding: 15px;
    border-radius: 8px;
    font-family: monospace;
    font-size: 0.8rem;
    overflow-x: auto;
    margin-bottom: 10px
    }
.schema-copy-btn {
    padding: 10px;
    font-size: 0.9rem
    }
.feature-card-icon-purple {
    background: #F3E8FF
    }
.feature-card-icon-blue {
    background: #EFF6FF
    }
.feature-card-icon-green {
    background: #ECFDF5
    }
.icon-purple {
    color: #9333EA
    }
.icon-blue {
    color: #2563EB
    }
.icon-green {
    color: #059669
    }
.gradient-text-purple {
    background: linear-gradient(135deg, #9333EA, #A855F7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
    }
.gradient-text-blue {
    background: linear-gradient(135deg, #2563EB, #3B82F6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
    }
.gradient-text-green {
    background: linear-gradient(135deg, #059669, #10B981);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
    }
.feature-card-subtitle {
    font-size: 0.8rem;
    color: var(--text-muted)
    }
.feature-card-description {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.6;
    margin: 0
    }
.features-list-container {
    margin-top: 50px;
    padding: 25px;
    background: #f8fafc;
    border: 1px dashed var(--border);
    border-radius: 12px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 30px
    }
@media (max-width: 768px) {
    .features-list-container {
        padding: 20px;
        gap: 20px;
        flex-direction: column;
        align-items: flex-start;
        }
    }
.feature-list-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 500
    }
.feature-list-item i {
    color: var(--success)
    }
/* Site Analizi Stilleri */
.main-content-no-padding {
    padding-top: 0 !important
    }
.url-input-wide {
    flex: 1;
    min-width: 250px;
    padding: 20px;
    font-size: 1.1rem;
    border: 2px solid var(--border);
    border-radius: 8px;
    background-color: #fff
    }
.audit-btn-auto {
    width: auto;
    min-width: 150px;
    padding: 0 30px;
    font-size: 1rem
    }
.loading-spin-large {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 20px
    }
.loading-text {
    color: var(--text-muted)
    }
/* Resim Optimizasyonu Stilleri */
/* Resim Dönüştürme Stilleri */
.conversion-file-input {
    width: 100%;
    padding: 15px;
    border: 2px solid var(--border);
    border-radius: 8px;
    background: var(--surface);
    color: var(--text-main);
    font-size: 1rem
    }
.conversion-select {
    flex: 1;
    padding: 15px;
    border: 2px solid var(--border);
    border-radius: 8px;
    background: var(--surface);
    color: var(--text-main);
    font-size: 1rem
    }
.convert-btn-flex {
    flex: 1
    }
.convert-loading-spinner {
    font-size: 24px;
    color: var(--primary)
    }
.convert-progress-bar-container {
    width: 100%;
    height: 4px;
    background: var(--border);
    border-radius: 2px;
    margin-top: 10px
    }
.convert-progress-bar {
    width: 0%;
    height: 100%;
    background: var(--primary);
    border-radius: 2px;
    transition: width 0.3s
    }
.convert-results-title {
    color: var(--text-main);
    margin-bottom: 15px
    }
.convert-comparison-title {
    color: var(--text-main);
    margin-bottom: 10px
    }
.convert-info-text {
    margin-top: 10px;
    font-size: 14px;
    color: var(--text-muted)
    }
.convert-comparison-box {
    background: var(--surface);
    padding: 20px;
    border-radius: 8px;
    border: 1px solid var(--border);
    margin-bottom: 20px
    }
/* Minify Stilleri */
.minify-tab-btn {
    padding: 10px 20px;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: var(--surface);
    color: var(--text-muted);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s
    }
.minify-tab-btn.active {
    background: #a6e6e9;
    color: #00445e;
    border-color: #26bcc2
    }
.minify-code-input {
    width: 100%;
    height: 300px;
    padding: 15px;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: var(--surface);
    color: var(--text-main);
    font-family: "Courier New", monospace;
    font-size: 14px;
    line-height: 1.4;
    resize: vertical
    }
.minify-btn-flex {
    flex: 1
    }
.minify-results-title {
    color: #9333ea;
    margin-bottom: 20px
    }
.minify-metric-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 15px;
    text-align: center
    }
.minify-metric-title {
    color: var(--text-main);
    margin-bottom: 8px
    }
.minify-metric-value {
    font-size: 1.5rem;
    font-weight: 700
    }
.minify-output {
    width: 100%;
    height: 250px;
    padding: 15px;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: var(--surface);
    color: var(--text-main);
    font-family: "Courier New", monospace;
    resize: vertical
    }
.minify-code-quality {
    margin-top: 20px;
    padding: 15px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 8px
    }
.minify-code-quality-title {
    color: var(--text-main);
    margin-bottom: 10px
    }
/* İletişim Sayfası Stilleri */
.contact-main-layout {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 0
    }
.contact-card {
    padding: clamp(30px, 5vw, 50px);
    text-align: center;
    max-width: 600px;
    width: 100%
    }
.contact-icon-container {
    width: 80px;
    height: 80px;
    background: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto
    }
.contact-icon {
    font-size: 2.5rem;
    color: var(--primary)
    }
.contact-card-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--text-main)
    }
.contact-card-text {
    color: var(--text-muted);
    margin-bottom: 30px;
    line-height: 1.6
    }
.contact-email-link {
    display: inline-block;
    background: var(--primary);
    color: white;
    padding: 15px 30px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    font-size: 1.1rem;
    transition: background 0.3s
    }
.contact-email-link:hover {
    background: var(--primary-hover)
    }
.text-center-container {
    text-align: center
    }
/* Gizlilik Politikası Stilleri */
.privacy-content-card {
    padding: clamp(25px, 4vw, 40px);
    line-height: 1.8;
    color: var(--text-muted)
    }
.privacy-section-title {
    color: var(--text-main);
    margin-top: 30px
    }
.privacy-link {
    color: var(--primary);
    font-weight: 600
    }
.privacy-list {
    list-style: disc;
    margin-left: 20px
    }
/* Kullanım Şartları Stilleri */
.terms-content-card {
    padding: clamp(25px, 4vw, 40px);
    line-height: 1.8;
    color: var(--text-muted)
    }
.terms-section-title {
    color: var(--text-main);
    margin-top: 30px
    }
.terms-section-title-first {
    color: var(--text-main);
    margin-top: 0
    }
.terms-list {
    list-style: disc;
    margin-left: 20px
    }
.terms-footer-note {
    margin-top: 40px;
    font-size: 0.9rem;
    color: var(--text-muted)
    }
.robots-main-grid {
    display: grid;
    grid-template-columns: 1fr minmax(auto, 500px);
    gap: 24px;
    margin-top: 24px;
    align-items: start
    }
.robots-editor-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 20px;
    box-shadow: var(--shadow);
    height: fit-content;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1)
    }
.robots-editor-card:hover {
    transform: translatey(-1px);
    border-color: rgba(37, 99, 235, 0.15)
    }
.robots-form-section {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border);
    height: auto
    }
.robots-form-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0
    }
.robots-form-label {
    display: block;
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--text-main);
    margin-bottom: 6px
    }
.robots-form-hint {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 4px
    }
.robots-input-field {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-family: inherit;
    font-size: 0.9rem;
    transition: all 0.2s;
    background: var(--surface);
    height: auto
    }
.robots-input-field:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px var(--primary-light)
    }
.robots-select-field {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-family: inherit;
    font-size: 0.9rem;
    background: var(--surface);
    cursor: pointer;
    height: auto
    }
.robots-rule-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 10px
    }
.robots-btn-primary {
    background: var(--primary);
    color: white;
    border: none;
    padding: 10px 18px;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    height: auto
    }
.robots-btn-primary:hover {
    background: var(--primary-hover);
    transform: translatey(-1px)
    }
.robots-btn-secondary {
    background: var(--surface);
    color: var(--text-main);
    border: 1px solid var(--border);
    padding: 10px 18px;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    height: auto
    }
.robots-btn-secondary:hover {
    background: var(--bg-body);
    border-color: var(--primary)
    }
.robots-btn-group {
    display: flex;
    gap: 8px;
    margin-top: 12px
    }
.robots-template-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    margin-top: 10px
    }
.robots-preview-box {
    background: #1e293b;
    color: #e2e8f0;
    padding: 16px;
    border-radius: var(--radius);
    font-family: "Courier New", monospace;
    font-size: 0.85rem;
    line-height: 1.6;
    white-space: pre-wrap;
    word-break: break-word;
    max-height: none;
    min-height: 200px;
    height: auto;
    position: relative
    }
.robots-preview-box::-webkit-scrollbar {
    width: 8px
    }
.robots-preview-box::-webkit-scrollbar-track {
    background: #0f172a;
    border-radius: 4px
    }
.robots-preview-box::-webkit-scrollbar-thumb {
    background: #475569;
    border-radius: 4px
    }
.robots-copy-btn-top {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: none;
    padding: 8px 14px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.85rem;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    gap: 6px
    }
.robots-copy-btn-top:hover {
    background: rgba(255, 255, 255, 0.2)
    }
.robots-validation-box {
    margin-top: 12px;
    padding: 10px 12px;
    border-radius: var(--radius);
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 8px;
    height: auto
    }
.robots-validation-box.success {
    background: var(--success-light);
    color: #059669;
    border: 1px solid #10b981
    }
.robots-validation-box.error {
    background: var(--danger-light);
    color: #dc2626;
    border: 1px solid var(--danger)
    }
@keyframes slideIn {
    from {
        transform: translateX(400px);
        opacity: 0;
        } to {
        transform: translateX(0);
        opacity: 1;
        }
    }
@media (max-width: 1024px) {
    .robots-main-grid {
        grid-template-columns: 1fr
        }
    }
@media (max-width: 768px) {
    .robots-template-grid {
        grid-template-columns: 1fr
        }
    .robots-btn-group {
        flex-direction: column
        }
    .robots-editor-card {
        padding: 14px
        }
    .robots-preview-box {
        padding: 12px;
        font-size: 0.8rem
        }
    }
/* Responsive Image Classes */
.img-responsive {
    max-width: 100%;
    height: auto;
    display: block;
    }
.img-fluid {
    max-width: 100%;
    height: auto;
    }
.img-cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
    }
.img-contain {
    width: 100%;
    height: 100%;
    object-fit: contain;
    }
.img-lazy {
    opacity: 0;
    transition: opacity 0.3s ease;
    }
.img-lazy.loaded {
    opacity: 1;
    }

/* Utility Classes for Inline Style Migration */
.pt-0 {
    padding-top: 0 !important
    }
.p-0-10 {
    padding: 0 10px !important
    }
.mb-20 {
    margin-bottom: 20px !important
    }
.mt-10 {
    margin-top: 10px !important
    }
.text-center {
    text-align: center !important
    }
.width-100 {
    width: 100% !important
    }
/* Resim Dönüştürme Specific Classes */
.convert-editor-card {
    max-width: 800px;
    margin: 0 auto 30px auto;
    padding: 30px;
    min-height: auto
    }
.convert-label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--text-main)
    }
.convert-controls-row {
    display: flex;
    gap: 15px;
    align-items: center
    }
.convert-loading-container {
    display: none;
    text-align: center;
    margin: 20px 0
    }
.convert-results-container {
    display: none
    }
.convert-results-title {
    color: var(--text-main);
    margin-bottom: 15px
    }
.convert-results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 20px
    }
.convert-preview-box {
    text-align: center
    }
.convert-preview-title {
    color: var(--text-main);
    margin-bottom: 10px
    }
.convert-original-img {
    max-width: 100%;
    max-height: 200px;
    border-radius: 8px;
    border: 2px solid var(--border);
    object-fit: contain;
    aspect-ratio: auto;
    width: auto;
    height: auto;
    display: block;
    margin: 0 auto
    }
@media (max-width: 768px) {
    .convert-original-img {
        max-height: 150px;
        }
    }
@media (max-width: 480px) {
    .convert-original-img {
        max-height: 120px;
        }
    }
.convert-result-img {
    max-width: 100%;
    max-height: 200px;
    border-radius: 8px;
    border: 2px solid var(--success);
    object-fit: contain;
    aspect-ratio: auto;
    width: auto;
    height: auto;
    display: block;
    margin: 0 auto
    }
@media (max-width: 768px) {
    .convert-result-img {
        max-height: 150px;
        }
    }
@media (max-width: 480px) {
    .convert-result-img {
        max-height: 120px;
        }
    }
.convert-info-text {
    margin-top: 10px;
    font-size: 14px;
    color: var(--text-muted)
    }
.convert-comparison-box {
    background: var(--surface);
    padding: 20px;
    border-radius: 8px;
    border: 1px solid var(--border);
    margin-bottom: 20px
    }
.convert-comparison-title {
    color: var(--text-main);
    margin-bottom: 15px
    }
.convert-actions {
    text-align: center
    }
/* Minify Specific Classes */
.minify-editor-card {
    padding: 30px;
    max-width: 1000px;
    margin: 0 auto;
    min-height: auto
    }
.minify-controls-row {
    display: flex;
    gap: 20px;
    margin-bottom: 30px
    }
.minify-input-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px
    }
.minify-input-label {
    font-weight: 600;
    color: var(--text-main)
    }
.minify-sample-btn {
    font-size: 12px;
    padding: 5px 10px
    }
.minify-buttons-row {
    display: flex;
    gap: 10px;
    margin-top: 15px
    }
.minify-metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-bottom: 20px
    }
.minify-metric-subtitle {
    color: var(--text-muted)
    }
.minify-metric-title-success {
    color: var(--success)
    }
.minify-metric-title-primary {
    color: var(--primary)
    }
.minify-metric-title-warning {
    color: var(--warning)
    }
.minify-output-container {
    margin-bottom: 20px
    }
.minify-output-label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--text-main)
    }
.minify-actions-row {
    display: flex;
    gap: 10px;
    flex-wrap: wrap
    }
/* Resim Optimizasyonu Specific Classes */
.optimize-editor-card {
    max-width: 800px;
    margin: 0 auto 30px auto;
    padding: 30px;
    min-height: auto
    }
.optimize-file-input {
    width: 100%;
    padding: 15px;
    border: 2px solid var(--border);
    border-radius: 8px;
    background: var(--surface);
    color: var(--text-main);
    font-size: 1rem
    }
.optimize-buttons-row {
    display: flex;
    gap: 15px
    }
.optimize-loading {
    display: none;
    text-align: center;
    padding: 40px
    }
.optimize-spinner {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 20px
    }
.optimize-results {
    display: none;
    max-width: 1000px;
    margin: 0 auto
    }
.optimize-preview-container {
    text-align: center;
    margin-bottom: 20px
    }
.optimize-preview-img {
    max-width: 100%;
    max-height: 300px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1)
    }
.optimize-metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 20px
    }
    
.optimize-metrics-grid .text-main-color {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-main)
    }
.optimize-summary-box {
    background: var(--surface);
    padding: 20px;
    border-radius: 8px;
    border: 1px solid var(--border)
    }
.optimize-summary-title {
    color: var(--text-main);
    margin-bottom: 10px
    }
.optimize-compression-options {
    display: none;
    padding: 20px;
    background: var(--surface);
    border-radius: 8px;
    border: 1px solid var(--border);
    margin-top: 30px
    }
.optimize-compression-title {
    color: var(--text-main);
    margin-bottom: 20px
    }
.optimize-compression-select {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border);
    border-radius: 4px;
    font-size: 1rem
    }
.optimize-result-container {
    display: none;
    margin-top: 30px
    }
.optimize-comparison-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px
    }
.optimize-comparison-box {
    text-align: center
    }
.optimize-comparison-title {
    color: var(--text-main);
    margin-bottom: 10px
    }
.optimize-original-img {
    max-width: 100%;
    max-height: 200px;
    border-radius: 8px;
    border: 2px solid var(--border);
    object-fit: contain;
    aspect-ratio: auto;
    width: auto;
    height: auto;
    display: block;
    margin: 0 auto
    }
@media (max-width: 768px) {
    .optimize-original-img {
        max-height: 150px;
        }
    }
@media (max-width: 480px) {
    .optimize-original-img {
        max-height: 120px;
        }
    }
.optimize-optimized-img {
    max-width: 100%;
    max-height: 200px;
    border-radius: 8px;
    border: 2px solid var(--success);
    object-fit: contain;
    aspect-ratio: auto;
    width: auto;
    height: auto;
    display: block;
    margin: 0 auto
    }
@media (max-width: 768px) {
    .optimize-optimized-img {
        max-height: 150px;
        }
    }
@media (max-width: 480px) {
    .optimize-optimized-img {
        max-height: 120px;
        }
    }
.optimize-stats-text {
    margin-top: 10px;
    font-size: 14px;
    color: var(--text-muted)
    }
/* Site Analizi Specific Classes */
.site-analytics-editor-card {
    max-width: 100%;
    margin: 0 auto 50px auto;
    padding: 30px;
    min-height: auto
    }
.site-analytics-url-container {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 0;
    box-shadow: none;
    border: none;
    padding: 0
    }
.site-analytics-loading {
    display: none;
    text-align: center;
    padding: 40px
    }
.site-analytics-results {
    display: none;
    max-width: 100%;
    margin: 0 auto
    }
/* Feature Card Common Classes */
.feature-card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px
    }
.feature-card-icon-container {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center
    }
.feature-card-icon-purple {
    background: #F3E8FF
    }
.feature-card-icon-blue {
    background: #EFF6FF
    }
.feature-card-icon-green {
    background: #ECFDF5
    }
.feature-card-icon-yellow {
    background: #FEF3C7
    }
.feature-card-icon-red {
    background: #FEE2E2
    }
.feature-card-icon-indigo {
    background: #E0E7FF
    }
.icon-purple {
    color: #9333EA
    }
.icon-blue {
    color: #2563EB
    }
.icon-green {
    color: #059669
    }
.icon-yellow {
    color: #D97706
    }
.icon-red {
    color: #DC2626
    }
.icon-indigo {
    color: #4F46E5
    }
.feature-card-title {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 700
    }
.gradient-text-purple {
    background: linear-gradient(135deg, #9333EA, #A855F7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
    }
.gradient-text-blue {
    background: linear-gradient(135deg, #2563EB, #3B82F6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
    }
.gradient-text-green {
    background: linear-gradient(135deg, #059669, #10B981);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
    }
.gradient-text-yellow {
    background: linear-gradient(135deg, #D97706, #F59E0B);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
    }
.gradient-text-red {
    background: linear-gradient(135deg, #DC2626, #EF4444);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
    }
.gradient-text-indigo {
    background: linear-gradient(135deg, #4F46E5, #6366F1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
    }
.feature-card-subtitle {
    font-size: 0.8rem;
    color: var(--text-muted)
    }
.feature-card-description {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.6;
    margin: 0
    }
/* Info Section Classes */
.info-section-container {
    max-width: 1200px;
    margin: 60px auto 0;
    padding: 0 20px
    }
.info-section-header {
    text-align: center;
    margin-bottom: 50px
    }
.info-section-title {
    color: var(--text-main);
    font-size: 2rem;
    font-weight: 800;
    margin-top: 20px;
    letter-spacing: -0.5px
    }
.info-section-description {
    color: var(--text-muted);
    max-width: 600px;
    margin: 15px auto 0 auto;
    font-size: 1.05rem
    }
.info-feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px
    }
@media (max-width: 640px) {
    .info-feature-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        }
    }
.robots-inline-styles {
    color: #2563eb
    }
.robots-inline-styles-green {
    color: #059669
    }
.robots-inline-styles-indigo {
    color: #4f46e5
    }
.robots-help-list {
    margin: 0;
    padding-left: 20px;
    color: var(--text-main);
    font-size: 0.9rem;
    line-height: 1.7
    }
.robots-help-list li {
    margin-bottom: 8px
    }
.robots-code-inline {
    font-size: 0.85rem;
    padding: 2px 6px;
    background: #e0f2fe;
    color: #0c4a6e;
    border-radius: 4px;
    font-weight: 500
    }
.robots-feature-code {
    background: #f1f5f9;
    padding: 2px 6px;
    border-radius: 4px;
    font-family: monospace;
    font-size: 0.85rem
    }
/* Image Optimization Title Classes */
.robots-main-grid {
    display: grid;
    grid-template-columns: 1fr minmax(auto, 500px);
    gap: 24px;
    margin-top: 24px;
    align-items: start
    }
.robots-custom-user-agent {
    display: none;
    margin-top: 10px
    }
.robots-rule-type-select {
    max-width: 150px
    }
.robots-rule-path-input {
    flex: 1
    }
.robots-help-card {
    margin-top: 20px
    }
.robots-padding-top-0 {
    padding-top: 0 !important
    }
.robots-flex-controls {
    display: flex;
    gap: 8px;
    margin-bottom: 12px
    }
.robots-rule-type-select {
    max-width: 150px
    }
.robots-rule-path-input {
    flex: 1
    }
.robots-preview-relative {
    position: relative
    }
/* Resim Optimizasyonu için CSS Class'ları */
.optimize-editor-card {
    max-width: 800px;
    margin: 0 auto 30px auto;
    padding: 30px;
    min-height: auto
    }
.optimize-file-input {
    width: 100%;
    padding: 15px;
    border: 2px solid var(--border);
    border-radius: 8px;
    background: var(--surface);
    color: var(--text-main);
    font-size: 1rem
    }
.optimize-buttons-row {
    display: flex;
    gap: 15px
    }
.optimize-loading {
    display: none;
    text-align: center;
    padding: 40px
    }
.optimize-spinner {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 20px
    }
.optimize-results {
    display: none;
    max-width: 1000px;
    margin: 0 auto
    }
.optimize-preview-container {
    text-align: center;
    margin-bottom: 20px
    }
.optimize-preview-img {
    max-width: 100%;
    max-height: 300px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1)
    }
.optimize-metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 20px
    }
.optimize-summary-box {
    background: var(--surface);
    padding: 20px;
    border-radius: 8px;
    border: 1px solid var(--border)
    }
.optimize-summary-title {
    color: var(--text-main);
    margin-bottom: 10px
    }
.optimize-summary-text {
    color: var(--text-muted);
    margin: 0
    }
.optimize-compression-options {
    display: none;
    padding: 20px;
    background: var(--surface);
    border-radius: 8px;
    border: 1px solid var(--border);
    margin-top: 30px
    }
.optimize-compression-title {
    color: var(--text-main);
    margin-bottom: 20px
    }
.optimize-compression-select {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border);
    border-radius: 4px;
    font-size: 1rem
    }
.optimize-result-container {
    display: none;
    margin-top: 30px
    }
.optimize-comparison-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px
    }
.optimize-comparison-box {
    text-align: center
    }
.optimize-comparison-title {
    color: var(--text-main);
    margin-bottom: 10px
    }
.optimize-original-img {
    max-width: 100%;
    max-height: 200px;
    border-radius: 8px;
    border: 2px solid var(--border)
    }
.optimize-optimized-img {
    max-width: 100%;
    max-height: 200px;
    border-radius: 8px;
    border: 2px solid var(--success)
    }
.optimize-stats-text {
    margin-top: 10px;
    font-size: 14px;
    color: var(--text-muted)
    }
/* Genel Utility Class'ları */
.mb-20 {
    margin-bottom: 20px !important
    }
.text-main-color {
    color: var(--text-main) !important
    }
.text-muted-color {
    color: var(--text-muted) !important
    }
.font-weight-600 {
    font-weight: 600 !important
    }
.display-block {
    display: block !important
    }
.text-align-center {
    text-align: center !important
    }
.margin-top-30 {
    margin-top: 30px !important
    }
.font-size-0-8rem {
    font-size: 0.8rem !important
    }
.width-100 {
    width: 100% !important
    }
.robots-custom-user-agent {
    display: none;
    margin-top: 10px
    }
.robots-preview-relative {
    position: relative
    }
.robots-flex-controls {
    display: flex;
    gap: 8px;
    margin-bottom: 12px
    }
.robots-rule-type-select {
    max-width: 150px
    }
.robots-rule-path-input {
    flex: 1
    }
.robots-padding-top-0 {
    padding-top: 0 !important
    }
.robots-feature-code {
    background: #f1f5f9;
    padding: 2px 6px;
    border-radius: 4px;
    font-family: monospace;
    font-size: 0.85rem
    }
.robots-main-grid {
    display: grid;
    grid-template-columns: 1fr minmax(auto, 500px);
    gap: 24px;
    margin-top: 24px;
    align-items: start
    }
.robots-rule-type-select {
    max-width: 150px
    }
.robots-rule-path-input {
    flex: 1
    }
.robots-help-card {
    margin-top: 20px
    }
.robots-inline-styles {
    color: #2563eb
    }
.robots-inline-styles-green {
    color: #059669
    }
.robots-inline-styles-indigo {
    color: #4f46e5
    }
.robots-template-btn:hover {
    background: var(--primary-light);
    border-color: var(--primary);
    color: var(--primary)
    }
.robots-help-list {
    margin: 0;
    padding-left: 20px;
    color: var(--text-main);
    font-size: 0.9rem;
    line-height: 1.7
    }
.robots-help-list li {
    margin-bottom: 8px
    }
.robots-code-inline {
    font-size: 0.85rem;
    padding: 2px 6px;
    background: #e0f2fe;
    color: #0c4a6e;
    border-radius: 4px;
    font-weight: 500
    }
/* Toast Notification */
.toast-notification {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--text-main);
    color: white;
    padding: 16px 24px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 9999;
    animation: slideIn 0.3s ease
    }
.toast-notification.success {
    background: var(--success);
    max-width: 500px;
    min-width: 200px;
    text-align: center;
    white-space: normal;
    word-wrap: break-word;
    overflow-wrap: break-word
    }
.toast-notification.error {
    background: var(--danger);
    max-width: 500px;
    min-width: 200px;
    text-align: center;
    white-space: normal;
    word-wrap: break-word;
    overflow-wrap: break-word
    }
@keyframes slideIn {
    from {
        transform: translateX(400px);
        opacity: 0;
        } to {
        transform: translateX(0);
        opacity: 1;
        }
    }
.robots-editor-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 20px;
    box-shadow: var(--shadow);
    height: fit-content;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1)
    }
.robots-editor-card:hover {
    transform: translatey(-1px);
    border-color: rgba(37, 99, 235, 0.15)
    }
.robots-form-section {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border);
    height: auto
    }
.robots-form-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0
    }
.robots-form-label {
    display: block;
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--text-main);
    margin-bottom: 6px
    }
.robots-form-hint {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 4px
    }
.robots-input-field {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-family: inherit;
    font-size: 0.9rem;
    transition: all 0.2s;
    background: var(--surface);
    height: auto
    }
.robots-input-field:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px var(--primary-light)
    }
.robots-select-field {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-family: inherit;
    font-size: 0.9rem;
    background: var(--surface);
    cursor: pointer;
    height: auto
    }
.robots-rule-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 10px
    }
.robots-btn-primary {
    background: var(--primary);
    color: white;
    border: none;
    padding: 10px 18px;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    height: auto
    }
.robots-btn-primary:hover {
    background: var(--primary-hover);
    transform: translatey(-1px)
    }
.robots-btn-secondary {
    background: var(--surface);
    color: var(--text-main);
    border: 1px solid var(--border);
    padding: 10px 18px;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    height: auto
    }
.robots-btn-secondary:hover {
    background: var(--bg-body);
    border-color: var(--primary)
    }
.robots-btn-group {
    display: flex;
    gap: 8px;
    margin-top: 12px
    }
.robots-template-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    margin-top: 10px
    }
.robots-template-btn {
    padding: 10px 12px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    cursor: pointer;
    transition: all 0.2s;
    text-align: left;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-main);
    height: auto
    }
.robots-template-btn:hover {
    background: var(--primary-light);
    border-color: var(--primary);
    color: var(--primary)
    }
.robots-preview-box {
    background: #1e293b;
    color: #e2e8f0;
    padding: 16px;
    border-radius: var(--radius);
    font-family: "Courier New", monospace;
    font-size: 0.85rem;
    line-height: 1.6;
    white-space: pre-wrap;
    word-break: break-word;
    max-height: none;
    min-height: 200px;
    height: auto;
    position: relative
    }
.robots-preview-box::-webkit-scrollbar {
    width: 8px
    }
.robots-preview-box::-webkit-scrollbar-track {
    background: #0f172a;
    border-radius: 4px
    }
.robots-preview-box::-webkit-scrollbar-thumb {
    background: #475569;
    border-radius: 4px
    }
.robots-copy-btn-top {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: none;
    padding: 8px 14px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.85rem;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    gap: 6px
    }
.robots-copy-btn-top:hover {
    background: rgba(255, 255, 255, 0.2)
    }
.robots-validation-box {
    margin-top: 12px;
    padding: 10px 12px;
    border-radius: var(--radius);
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 8px;
    height: auto
    }
.robots-validation-box.success {
    background: var(--success-light);
    color: #059669;
    border: 1px solid #10b981
    }
.robots-validation-box.error {
    background: var(--danger-light);
    color: #dc2626;
    border: 1px solid var(--danger)
    }
@keyframes slideIn {
    from {
        transform: translateX(400px);
        opacity: 0;
        } to {
        transform: translateX(0);
        opacity: 1;
        }
    }
@media (max-width: 1024px) {
    .robots-main-grid {
        grid-template-columns: 1fr
        }
    }
@media (max-width: 768px) {
    .robots-template-grid {
        grid-template-columns: 1fr
        }
    .robots-btn-group {
        flex-direction: column
        }
    .robots-editor-card {
        padding: 14px
        }
    .robots-preview-box {
        padding: 12px;
        font-size: 0.8rem
        }
    }
/* Icon Color Classes */
.icon-color-purple {
    color: #7e22ce !important
    }
.icon-color-blue {
    color: #2563eb !important
    }
.icon-color-green {
    color: #059669 !important
    }
.icon-color-yellow {
    color: #d97706 !important
    }
.icon-color-red {
    color: #dc2626 !important
    }
.icon-color-indigo {
    color: #4f46e5 !important
    }
/* ============================================
   STANDARDIZED UTILITY & COMPONENT CLASSES
   ============================================ */
/* 1. TYPOGRAPHY UTILITIES */
.text-center {
    text-align: center
    }
/* 2. BUTTON COMPONENTS */
/* 3. CARD COMPONENTS */
.card-header {
    padding: 16px 24px;
    border-bottom: 1px solid var(--border);
    background: var(--surface)
    }
.card-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-main);
    margin: 0
    }
/* 4. FEATURE CARD STANDARD */
.feature-card-icon-purple {
    background: #F3E8FF
    }
.feature-card-icon-blue {
    background: #EFF6FF
    }
.feature-card-icon-green {
    background: #ECFDF5
    }
.feature-card-icon-yellow {
    background: #FEF3C7
    }
.feature-card-icon-red {
    background: #FEE2E2
    }
.feature-card-icon-indigo {
    background: #E0E7FF
    }
/* 5. UTILITY CLASSES */
.pt-0 {
    padding-top: 0 !important
    }
.text-success {
    color: #26bcc2 !important
    }
.text-muted {
    color: var(--text-muted) !important
    }
/* 7. ACCESSIBILITY CLASSES */
.visually-hidden {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important
    }
/* 8. FOCUS VISIBLE STYLES */
/* 9. SKIP TO MAIN CONTENT LINK */
.skip-to-main {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--primary);
    color: white;
    padding: 8px 16px;
    border-radius: 4px;
    text-decoration: none;
    z-index: 9999
    }
.skip-to-main:focus {
    top: 10px
    }
/* 10. LANDMARK NAVIGATION ENHANCEMENTS */
[role="main"] {
    outline: none
    }
[role="navigation"] {
    outline: none
    }
[role="banner"] {
    outline: none
    }
[role="contentinfo"] {
    outline: none
    }
/* 11. SKIP TO MAIN CONTENT LINK */
.skip-to-main {
    position: absolute;
    top: -40px;
    left: 10px;
    background: var(--primary);
    color: white;
    padding: 10px 16px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    z-index: 9999;
    transition: top 0.3s ease;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1)
    }
.skip-to-main:focus {
    top: 10px;
    outline: 3px solid var(--primary);
    outline-offset: 2px
    }
.skip-to-main:hover {
    background: var(--primary-hover);
    transform: translatey(-1px);
    box-shadow: 0 6px 8px -1px rgba(0, 0, 0, 0.15)
    }
/* 12. FORM VALIDATION & ERROR MESSAGES */
.error-message {
    color: var(--danger);
    font-size: 0.85rem;
    margin-top: 4px;
    padding: 6px 10px;
    background: var(--danger-light);
    border-radius: 4px;
    border-left: 3px solid var(--danger)
    }
.error-message.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0
    }
[aria-invalid="true"] {
    border-color: var(--danger) !important;
    background-color: var(--danger-light) !important
    }
[aria-invalid="true"]:focus {
    outline: 2px solid var(--danger) !important;
    outline-offset: 1px
    }
/* 6. GRID SYSTEM */

/* Summary Header Styling */
.summary-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border);
}

.summary-header h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-main);
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0;
}

.summary-header h3 i {
    color: var(--primary);
}

.summary-date {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 500;
}

.summary-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 16px;
    margin-bottom: 20px;
}

.summary-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: all 0.2s;
}

.summary-item:hover {
    border-color: #a6e6e9;
    box-shadow: 0 6px 20px rgba(166, 230, 233, 0.15);
    transform: translateY(-3px);
    background: #e6f7f8;
    }

.summary-item i {
    font-size: 1.2rem;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: var(--primary-light);
    color: var(--primary);
}

.summary-item div {
    flex: 1;
}

.summary-item strong {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 4px;
}

.summary-item span {
    display: block;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.summary-item .url-text {
    word-break: break-all;
    font-family: monospace;
    font-size: 0.8rem;
    color: var(--primary);
}

.summary-version {
    text-align: center;
    padding-top: 16px;
    border-top: 1px solid var(--border);
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Detailed Reports Styling */
.category-section {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px;
    margin-bottom: 30px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.category-section:hover {
    box-shadow: var(--shadow-lg);
    border-color: rgba(37, 99, 235, 0.15);
}

.category-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-main);
}

.category-header i {
    margin-right: 10px;
    color: var(--primary);
}

.category-score {
    font-size: 1.5rem;
    font-weight: 800;
    padding: 8px 16px;
    border-radius: 12px;
    min-width: 60px;
    text-align: center;
}

.category-score.score-good {
    background: var(--success-light);
    color: var(--success);
}

.category-score.score-avg {
    background: var(--warning-light);
    color: var(--warning);
}

.category-score.score-poor {
    background: var(--danger-light);
    color: var(--danger);
}

.category-advice {
    background: linear-gradient(135deg, var(--primary-light) 0%, #eff6ff 100%);
    border-left: 4px solid var(--primary);
    padding: 16px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-main);
}

.audit-group {
    margin-top: 20px;
}

.audit-section-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-main);
    margin: 25px 0 15px 0;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 10px;
}

.audit-section-title.fail-section {
    color: var(--danger);
    border-bottom-color: rgba(220, 38, 38, 0.2);
}

.audit-section-title.pass-section {
    color: var(--success);
    border-bottom-color: rgba(16, 185, 129, 0.2);
}

.audit-section-title i {
    font-size: 1.1rem;
}

.no-issues {
    background: var(--success-light);
    color: var(--success);
    padding: 16px;
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
    margin: 20px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.audit-detail {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 8px;
    margin-bottom: 12px;
    overflow: hidden;
    transition: all 0.2s;
}

.audit-detail:hover {
    border-color: #a6e6e9;
    box-shadow: 0 4px 12px rgba(166, 230, 233, 0.1);
}

.audit-detail[open] {
    border-color: var(--primary);
}

.audit-detail summary {
    display: flex;
    align-items: center;
    padding: 16px;
    cursor: pointer;
    list-style: none;
    gap: 12px;
    font-weight: 500;
    transition: background 0.2s;
}

.audit-detail summary:hover {
    background: var(--bg-body);
}

.audit-detail summary::-webkit-details-marker {
    display: none;
}

.audit-detail summary::after {
    content: '\f078';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    margin-left: auto;
    transition: transform 0.3s;
    color: var(--text-muted);
}

.audit-detail[open] summary::after {
    transform: rotate(180deg);
    color: var(--primary);
}

.audit-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

.audit-icon.pass {
    background: var(--success-light);
    color: var(--success);
}

.audit-icon.avg {
    background: var(--warning-light);
    color: var(--warning);
}

.audit-icon.fail {
    background: var(--danger-light);
    color: var(--danger);
}

.audit-title {
    flex: 1;
    color: var(--text-main);
    font-weight: 500;
}

.audit-value {
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 600;
    padding: 4px 12px;
    background: var(--bg-body);
    border-radius: 6px;
    min-width: 80px;
    text-align: center;
}

.audit-content {
    padding: 0 16px 16px 68px;
    border-top: 1px solid var(--border);
    margin-top: 16px;
    padding-top: 16px;
}

.audit-desc {
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 12px;
    font-size: 0.95rem;
}

.audit-tip {
    background: linear-gradient(135deg, #fef3c7 0%, #fef9c3 100%);
    border-left: 4px solid var(--warning);
    padding: 12px;
    border-radius: 6px;
    margin: 16px 0;
    font-size: 0.9rem;
    line-height: 1.5;
    color: #92400e;
}

.audit-tip i {
    color: var(--warning);
    margin-right: 8px;
}

.audit-details-table {
    margin-top: 16px;
    overflow-x: auto;
    border-radius: 8px;
    border: 1px solid var(--border);
}

.audit-details-table table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.85rem;
}

.audit-details-table th {
    background: var(--bg-body);
    color: var(--text-main);
    font-weight: 600;
    text-align: left;
    padding: 12px;
    border-bottom: 1px solid var(--border);
    white-space: nowrap;
}

.audit-details-table td {
    padding: 12px;
    border-bottom: 1px solid var(--border);
    color: var(--text-muted);
    vertical-align: top;
}

.audit-details-table tr:last-child td {
    border-bottom: none;
}

.audit-details-table a {
    color: var(--primary);
    text-decoration: none;
    word-break: break-all;
}

.audit-details-table a:hover {
    text-decoration: underline;
}

.audit-list {
    margin: 16px 0;
    padding-left: 20px;
    color: var(--text-muted);
}

.audit-list li {
    margin-bottom: 8px;
    line-height: 1.5;
}

.audit-list code {
    background: var(--bg-body);
    padding: 2px 6px;
    border-radius: 4px;
    font-family: monospace;
    font-size: 0.85rem;
    color: var(--text-main);
}

.more-items {
    text-align: center;
    padding: 12px;
    color: var(--text-muted);
    font-size: 0.85rem;
    font-style: italic;
    border-top: 1px dashed var(--border);
    margin-top: 8px;
}

/* Metrics Grid Styling */
.metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.metric-box {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 20px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.metric-box:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 12px 24px rgba(166, 230, 233, 0.2);
    border-color: #a6e6e9;
    z-index: 1;
}

.metric-box.metric-good {
    border-left: 6px solid var(--success);
}

.metric-box.metric-avg {
    border-left: 6px solid var(--warning);
}

.metric-box.metric-poor {
    border-left: 6px solid var(--danger);
}

.metric-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.metric-header i {
    font-size: 1.2rem;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.metric-box.metric-good .metric-header i {
    background: var(--success-light);
    color: var(--success);
}

.metric-box.metric-avg .metric-header i {
    background: var(--warning-light);
    color: var(--warning);
}

.metric-box.metric-poor .metric-header i {
    background: var(--danger-light);
    color: var(--danger);
}

.metric-header span {
    font-weight: 600;
    color: var(--text-main);
    font-size: 1rem;
    line-height: 1.3;
}

.metric-val {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 10px;
    text-align: center;
}

.metric-desc {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 12px;
    min-height: 40px;
}

.metric-tip {
    background: linear-gradient(135deg, #fef3c7 0%, #fef9c3 100%);
    border-left: 4px solid var(--warning);
    padding: 12px;
    border-radius: 8px;
    font-size: 0.85rem;
    line-height: 1.5;
    color: #92400e;
    margin-top: 10px;
}

.metric-tip i {
    color: var(--warning);
    margin-right: 8px;
}

.metric-box.metric-good .metric-tip {
    background: linear-gradient(135deg, #d1fae5 0%, #ecfdf5 100%);
    border-left-color: var(--success);
    color: #065f46;
}

.metric-box.metric-good .metric-tip i {
    color: var(--success);
}

.metric-box.metric-poor .metric-tip {
    background: linear-gradient(135deg, #fee2e2 0%, #fef2f2 100%);
    border-left-color: var(--danger);
    color: #991b1b;
}

.metric-box.metric-poor .metric-tip i {
    color: var(--danger);
}

/* Dark mode adjustments for metrics grid */
@media (prefers-color-scheme: dark) {
    .metrics-grid {
        color: #f1f5f9 !important;
    }
    
    .metric-box {
        background: #1e293b;
        border-color: #334155;
    }
    
    .metric-box:hover {
        border-color: #60a5fa;
    }
    
    .metric-header span {
        color: #f1f5f9;
    }
    
    .metric-val {
        color: #f1f5f9;
    }
    
    .metric-desc {
        color: #cbd5e1;
    }
    
    .metric-box.metric-good .metric-header i {
        background: rgba(16, 185, 129, 0.2);
        color: #6ee7b7;
    }
    
    .metric-box.metric-avg .metric-header i {
        background: rgba(245, 158, 11, 0.2);
        color: #fcd34d;
    }
    
    .metric-box.metric-poor .metric-header i {
        background: rgba(239, 68, 68, 0.2);
        color: #fca5a5;
    }
    
    .metric-tip {
        background: linear-gradient(135deg, rgba(245, 158, 11, 0.2) 0%, rgba(30, 41, 59, 0.8) 100%);
        border-left-color: #f59e0b;
        color: #fde68a;
    }
    
    .metric-box.metric-good .metric-tip {
        background: linear-gradient(135deg, rgba(16, 185, 129, 0.2) 0%, rgba(30, 41, 59, 0.8) 100%);
        border-left-color: #10b981;
        color: #6ee7b7;
    }
    
    .metric-box.metric-poor .metric-tip {
        background: linear-gradient(135deg, rgba(239, 68, 68, 0.2) 0%, rgba(30, 41, 59, 0.8) 100%);
        border-left-color: #ef4444;
        color: #fca5a5;
    }
}

/* Dark mode adjustments for detailed reports */
@media (prefers-color-scheme: dark) {
    .category-section {
        background: #1e293b;
        border-color: #334155;
    }
    
    .category-advice {
        background: linear-gradient(135deg, rgba(37, 99, 235, 0.2) 0%, rgba(30, 41, 59, 0.8) 100%);
        border-left-color: #60a5fa;
        color: #e0eaf7;
    }
    
    .audit-detail {
        background: #1e293b;
        border-color: #334155;
    }
    
    .audit-detail summary:hover {
        background: #0f172a;
    }
    
    .audit-icon.pass {
        background: rgba(16, 185, 129, 0.2);
        color: #6ee7b7;
    }
    
    .audit-icon.avg {
        background: rgba(245, 158, 11, 0.2);
        color: #fcd34d;
    }
    
    .audit-icon.fail {
        background: rgba(239, 68, 68, 0.2);
        color: #fca5a5;
    }
    
    .audit-value {
        background: #0f172a;
        color: #cbd5e1;
    }
    
    .audit-tip {
        background: linear-gradient(135deg, rgba(245, 158, 11, 0.2) 0%, rgba(30, 41, 59, 0.8) 100%);
        border-left-color: #f59e0b;
        color: #fde68a;
    }
    
    .audit-details-table {
        border-color: #334155;
    }
    
    .audit-details-table th {
        background: #0f172a;
        color: #f1f5f9;
        border-color: #334155;
    }
    
    .audit-details-table td {
        color: #cbd5e1;
        border-color: #334155;
    }
    
    .audit-list code {
        background: #0f172a;
        color: #a5d8ff;
    }
}

/* ============================================
   API PROVIDER & TOAST NOTIFICATION STYLES
   ============================================ */

/* Toast Notification Styles */
.toast-notification {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    background-color: #0f172a;
    color: #fff;
    padding: 14px 28px;
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 500;
    z-index: 1000;
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    align-items: center;
    gap: 12px;
    pointer-events: none;
    white-space: normal;
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-width: 500px;
    min-width: 200px;
    text-align: center;
    width: fit-content;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.3);
}

.toast-notification.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.toast-notification.error {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    border-left: 4px solid #fca5a5;
}

.toast-notification.success {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border-left: 4px solid #6ee7b7;
}

.toast-notification.info {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    border-left: 4px solid #93c5fd;
}

.toast-notification i {
    font-size: 1.2rem;
    flex-shrink: 0;
}

/* API Provider Styles */
.provider-info-container {
    margin: 20px 0;
}

.provider-info-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 20px;
    margin: 15px 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.provider-info-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(166, 230, 233, 0.15);
    border-color: #a6e6e9;
}

.provider-info-card h4 {
    margin: 0 0 10px 0;
    color: var(--text-main);
    font-size: 1.1rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
}

.provider-info-card h4 i {
    color: var(--primary);
}

.provider-info-card p {
    margin: 0 0 15px 0;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.5;
}

.provider-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.free-tier-badge {
    background: linear-gradient(135deg, var(--primary-light) 0%, #e6f7f8 100%);
    color: var(--primary);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(166, 230, 233, 0.5);
}

.free-tier-badge i {
    font-size: 0.9rem;
}

.signup-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 8px;
    background: var(--surface);
    border: 1px solid var(--primary);
    transition: all 0.2s;
}

.signup-link:hover {
    background: var(--primary);
    color: white;
    text-decoration: none;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(38, 188, 194, 0.2);
}

.api-fields-container {
    margin: 35px 0;
    padding: 20px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.2s;
}

.api-fields-container:hover {
    border-color: #a6e6e9;
    box-shadow: 0 4px 16px rgba(166, 230, 233, 0.1);
}

/* Metric Card Styles */
.metric-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 20px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.metric-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(166, 230, 233, 0.15);
    border-color: #a6e6e9;
}

.metric-card.good {
    border-left: 4px solid var(--success);
}

.metric-card.avg {
    border-left: 4px solid var(--warning);
}

.metric-card.poor {
    border-left: 4px solid var(--danger);
}

.metric-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.5rem;
}

.metric-card.good .metric-icon {
    background: var(--success-light);
    color: var(--success);
}

.metric-card.avg .metric-icon {
    background: var(--warning-light);
    color: var(--warning);
}

.metric-card.poor .metric-icon {
    background: var(--danger-light);
    color: var(--danger);
}

.metric-content {
    flex: 1;
}

.metric-value {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 5px;
    line-height: 1;
}

.metric-label {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 8px;
}

.metric-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.4;
}

/* SERP Competitor Styles */
.serp-detailed-section {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 30px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.serp-detailed-section:hover {
    box-shadow: var(--shadow-lg);
    border-color: rgba(166, 230, 233, 0.3);
}

.serp-section-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border);
}

.serp-section-header h3 {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-main);
    flex: 1;
}

.serp-section-header i {
    color: var(--primary);
    font-size: 1.2rem;
}

.serp-section-badge {
    background: var(--primary-light);
    color: var(--primary);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.serp-competitors-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.serp-competitor-card {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 16px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 12px;
    transition: all 0.2s;
}

.serp-competitor-card:hover {
    border-color: #a6e6e9;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(166, 230, 233, 0.1);
}

.serp-competitor-card.serp-your-site {
    background: linear-gradient(135deg, #e6f7f8 0%, #f0f9ff 100%);
    border-color: #a6e6e9;
}

.serp-rank-badge {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-weight: 700;
}

.serp-rank-badge.rank-1 {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    color: #92400e;
    border: 2px solid #f59e0b;
}

.serp-rank-badge.rank-2 {
    background: linear-gradient(135deg, #e0e7ff 0%, #c7d2fe 100%);
    color: #3730a3;
    border: 2px solid #4f46e5;
}

.serp-rank-badge.rank-3 {
    background: linear-gradient(135deg, #fce7f3 0%, #fbcfe8 100%);
    color: #831843;
    border: 2px solid #db2777;
}

.serp-rank-badge.rank-4,
.serp-rank-badge.rank-5 {
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    color: #475569;
    border: 2px solid #94a3b8;
}

.serp-rank-number {
    font-size: 1.5rem;
    line-height: 1;
}

.serp-rank-label {
    font-size: 0.7rem;
    opacity: 0.8;
}

.serp-competitor-info {
    flex: 1;
}

.serp-competitor-domain {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.serp-competitor-domain i {
    color: var(--text-muted);
}

.serp-domain-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    word-break: break-all;
}

.serp-domain-link:hover {
    text-decoration: underline;
}

.serp-your-site-badge {
    background: var(--primary);
    color: white;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
}

.serp-competitor-title {
    color: var(--text-main);
    font-size: 0.95rem;
    line-height: 1.4;
    word-break: break-word;
}

/* SERP Recommendations */
.serp-recommendations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.serp-recommendation-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 20px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    gap: 15px;
}

.serp-recommendation-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(166, 230, 233, 0.15);
    border-color: #a6e6e9;
}

.serp-rec-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.5rem;
    background: var(--primary-light);
    color: var(--primary);
}

.serp-rec-content {
    flex: 1;
}

.serp-rec-content h4 {
    margin: 0 0 10px 0;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-main);
}

.serp-rec-content p {
    margin: 0 0 12px 0;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.5;
}

.serp-rec-tip {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px;
    background: linear-gradient(135deg, #fef3c7 0%, #fef9c3 100%);
    border-radius: 8px;
    font-size: 0.85rem;
    color: #92400e;
}

.serp-rec-tip i {
    color: #d97706;
    font-size: 0.9rem;
}

/* Dark Mode Adjustments */
@media (prefers-color-scheme: dark) {
    .provider-info-card {
        background: #1e293b;
        border-color: #334155;
    }
    
    .provider-info-card:hover {
        border-color: #60a5fa;
    }
    
    .free-tier-badge {
        background: linear-gradient(135deg, rgba(37, 99, 235, 0.2) 0%, rgba(30, 41, 59, 0.8) 100%);
        color: #60a5fa;
        border-color: rgba(96, 165, 250, 0.3);
    }
    
    .signup-link {
        background: #1e293b;
        border-color: #60a5fa;
        color: #60a5fa;
    }
    
    .signup-link:hover {
        background: #60a5fa;
        color: #0f172a;
    }
    
    .api-fields-container {
        background: #1e293b;
        border-color: #334155;
    }
    
    .api-fields-container:hover {
        border-color: #60a5fa;
    }
    
    .metric-card {
        background: #1e293b;
        border-color: #334155;
    }
    
    .metric-card:hover {
        border-color: #60a5fa;
    }
    
    .metric-card.good .metric-icon {
        background: rgba(16, 185, 129, 0.2);
        color: #6ee7b7;
    }
    
    .metric-card.avg .metric-icon {
        background: rgba(245, 158, 11, 0.2);
        color: #fcd34d;
    }
    
    .metric-card.poor .metric-icon {
        background: rgba(239, 68, 68, 0.2);
        color: #fca5a5;
    }
    
    .serp-detailed-section {
        background: #1e293b;
        border-color: #334155;
    }
    
    .serp-detailed-section:hover {
        border-color: #60a5fa;
    }
    
    .serp-competitor-card {
        background: #1e293b;
        border-color: #334155;
    }
    
    .serp-competitor-card:hover {
        border-color: #60a5fa;
    }
    
    .serp-competitor-card.serp-your-site {
        background: linear-gradient(135deg, rgba(37, 99, 235, 0.1) 0%, rgba(30, 41, 59, 0.8) 100%);
        border-color: #60a5fa;
    }
}

/* ============================================
   ARAMA MOTORU SIRA BULUCU - ÖZEL STİLLER
   ============================================ */

/* Arama Motoru Sıra Bulucu - Özel Editor Card Tasarımı */
.page-arama-motoru-sira-bulucu .editor-card.site-analytics-editor-card {
    max-width: 100%;
    margin: 0 auto 30px;
    padding: 30px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
    min-height: auto;
}

.page-arama-motoru-sira-bulucu .editor-card.site-analytics-editor-card:hover {
    box-shadow: var(--shadow-lg);
    border-color: #a6e6e9;
    transform: translateY(-2px);
}

.page-arama-motoru-sira-bulucu .site-analytics-url-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    align-items: start;
}

/* Provider info ve serpapi fields hizalama düzeltmesi */
.page-arama-motoru-sira-bulucu #provider-info .input-group,
.page-arama-motoru-sira-bulucu #serpapi-fields .input-group {
    margin-bottom: 15px !important;
}

.page-arama-motoru-sira-bulucu .input-group {
    margin-bottom: 0;
}

.page-arama-motoru-sira-bulucu .input-group label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: #334155;
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.page-arama-motoru-sira-bulucu .input-group label i {
    color: var(--primary);
    font-size: 1rem;
    width: 20px;
    text-align: center;
}

.page-arama-motoru-sira-bulucu .url-input-wide {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.2s;
    background: white;
    color: #1e293b;
}

.page-arama-motoru-sira-bulucu .url-input-wide:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(38, 188, 194, 0.1);
}

.page-arama-motoru-sira-bulucu .url-input-wide::placeholder {
    color: #94a3b8;
    opacity: 0.8;
}

.page-arama-motoru-sira-bulucu .input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.page-arama-motoru-sira-bulucu .input-wrapper .url-input-wide {
    padding-right: 50px;
}

.page-arama-motoru-sira-bulucu .icon-btn {
    position: absolute;
    right: 12px;
    background: none;
    border: none;
    color: #64748b;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    transition: all 0.2s;
}

.page-arama-motoru-sira-bulucu .icon-btn:hover {
    color: var(--primary);
    background: var(--primary-light);
}

.page-arama-motoru-sira-bulucu .robots-form-hint {
    margin-top: 10px;
    font-size: 0.85rem;
    color: #64748b;
    line-height: 1.5;
}

.page-arama-motoru-sira-bulucu .robots-form-hint a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
}

.page-arama-motoru-sira-bulucu .robots-form-hint a:hover {
    text-decoration: underline;
}

.page-arama-motoru-sira-bulucu #check-rank-btn {
    grid-column: 1 / -1;
    justify-self: center;
    margin-top: 10px;
    padding: 14px 30px;
    font-size: 0.95rem;
    font-weight: 500;
    background: #a6e6e9;
    border: none;
    border-radius: 8px;
    color: #00445e;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 6px -1px rgba(38, 188, 194, 0.2);
}

.page-arama-motoru-sira-bulucu #check-rank-btn:hover {
    background: #8cd8dc;
    transform: translateY(-1px);
    box-shadow: 0 10px 15px -3px rgba(38, 188, 194, 0.3);
}

.page-arama-motoru-sira-bulucu #check-rank-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.page-arama-motoru-sira-bulucu #check-rank-btn i {
    font-size: 1.2rem;
}

/* Responsive tasarım */
@media (max-width: 768px) {
    .page-arama-motoru-sira-bulucu .editor-card.site-analytics-editor-card {
        padding: 20px;
        margin: 0 10px 20px;
    }
    
    .page-arama-motoru-sira-bulucu .site-analytics-url-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .page-arama-motoru-sira-bulucu .url-input-wide {
        padding: 12px 16px;
    }
    
    .page-arama-motoru-sira-bulucu #check-rank-btn {
        width: 100%;
        justify-content: center;
        padding: 14px 20px;
    }
    
    /* Mobilde provider info ve serpapi fields hizalama */
    .page-arama-motoru-sira-bulucu #provider-info .input-group,
    .page-arama-motoru-sira-bulucu #serpapi-fields .input-group {
        margin-bottom: 15px !important;
    }
}

/* Dark mode desteği */
@media (prefers-color-scheme: dark) {
    .page-arama-motoru-sira-bulucu .editor-card.site-analytics-editor-card {
        background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
        border-color: #334155;
    }
    
    .page-arama-motoru-sira-bulucu .input-group label {
        color: #e2e8f0;
    }
    
    .page-arama-motoru-sira-bulucu .url-input-wide {
        background: #1e293b;
        border-color: #475569;
        color: #f1f5f9;
    }
    
    .page-arama-motoru-sira-bulucu .url-input-wide:focus {
        border-color: var(--primary);
        box-shadow: 0 0 0 3px rgba(38, 188, 194, 0.1);
    }
    
    .page-arama-motoru-sira-bulucu .url-input-wide::placeholder {
        color: #94a3b8;
    }
    
    .page-arama-motoru-sira-bulucu .icon-btn:hover {
        background: #334155;
        color: var(--primary);
    }
    
    .page-arama-motoru-sira-bulucu .robots-form-hint {
        color: #cbd5e1;
    }
    
    .page-arama-motoru-sira-bulucu .robots-form-hint a {
        color: var(--primary);
    }
    
    /* Dark mode'da provider info ve serpapi fields hizalama */
    .page-arama-motoru-sira-bulucu #provider-info .input-group,
    .page-arama-motoru-sira-bulucu #serpapi-fields .input-group {
        margin-bottom: 15px !important;
    }
}

/* ============================================
   ARAMA MOTORU SIRA BULUCU - API PROVIDER STYLES
   ============================================ */

.page-arama-motoru-sira-bulucu .provider-info-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 16px;
    margin: 15px 0;
}

.page-arama-motoru-sira-bulucu .provider-info-card h4 {
    margin: 0 0 8px 0;
    color: var(--text-main);
}

.page-arama-motoru-sira-bulucu .provider-info-card p {
    margin: 0 0 12px 0;
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.5;
}

.page-arama-motoru-sira-bulucu .provider-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.page-arama-motoru-sira-bulucu .free-tier-badge {
    background: var(--primary-light);
    color: var(--primary);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.page-arama-motoru-sira-bulucu .signup-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
}

.page-arama-motoru-sira-bulucu .signup-link:hover {
    text-decoration: underline;
}

.page-arama-motoru-sira-bulucu .api-fields-container .input-group {
    margin-bottom: 15px;
}

.page-arama-motoru-sira-bulucu .site-analytics-url-container .input-group {
    margin-bottom: 15px;
}