/* GENEL AYARLAR VE DEĞİŞKENLER */
:root {
    --primary-color: #FF0000; /* Ana kırmızı renk */
    --dark-blue: #FFFFFF; /* Beyaz olarak değiştirildi */
    --text-color: #FFFFFF; /* Beyaz olarak değiştirildi */
    --text-light: #CCCCCC; /* Açık gri tonu */
    --background-color: #1A1A1A; /* Koyu gri/siyah arka plan */
    --border-color: #444444; /* Koyu gri kenarlık */
    --error-color: #FF4444; /* Daha belirgin kırmızı hata rengi */
    --error-background: #330000; /* Koyu kırmızı hata arka planı */
    --font-family: 'Poppins', sans-serif;

    /* Yeni eklenen değişkenler (modern ana sayfa için) */
    --card: 220 20% 15%; /* Kart arka planı için koyu renk */
    --border: 220 20% 25%; /* Kenarlık için koyu renk */
    --foreground: 0 0% 95%; /* Genel ön plan (yazı) rengi */
    --primary: 0 100% 50%; /* Ana renk (kırmızı) */
    --primary-foreground: 0 0% 95%; /* Ana renk üzerindeki ön plan rengi */
    --muted-foreground: 220 20% 70%; /* Daha soluk ön plan rengi */
    --radius: 0.75rem; /* Köşe yuvarlama */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    font-family: var(--font-family);
    background-color: var(--background-color);
    color: var(--text-color);
    line-height: 1.6;
    position: relative;
    overflow-x: hidden;
}

.background-dots {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-image: radial-gradient(circle, #333333 1px, rgba(0, 0, 0, 0) 1px); /* Koyu gri noktalar */
    background-size: 25px 25px;
    z-index: -1;
    opacity: 0.6;
}

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
}

/* HEADER VE NAVİGASYON */
header.site-header {
    padding: 20px 0;
    background-color: rgba(0, 0, 0, 0.8); /* Koyu arka plan, hafif şeffaf */
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid var(--border-color);
}

nav.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

a.logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-color); /* Kırmızı olarak değiştirildi */
    text-decoration: none;
}

.nav-links a {
    margin: 0 15px;
    text-decoration: none;
    color: var(--text-color); /* Beyaz olarak değiştirildi */
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary-color); /* Kırmızı */
}

.nav-auth {
    display: flex;
    align-items: center;
}

/* BUTONLAR */
.btn {
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    display: inline-block;
    cursor: pointer;
}

.btn-primary {
    background-color: var(--primary-color); /* Kırmızı */
    color: white;
}

.btn-primary:hover {
    background-color: #CC0000; /* Daha koyu kırmızı */
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.3); /* Kırmızı gölge */
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-color); /* Beyaz */
    border: 1px solid var(--border-color);
}

.btn-secondary:hover {
    background-color: #333333; /* Koyu gri */
    border-color: #666666; /* Daha açık koyu gri */
}

.nav-auth .btn {
    margin-left: 10px;
}

/* ANA SAYFA (HERO) */
.hero-section {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-content {
    max-width: 750px;
    margin: 0 auto;
    padding: 4rem 0;
}

.hero-content .badge {
    display: inline-block;
    padding: 6px 15px;
    background-color: #330000; /* Koyu kırmızı */
    color: var(--primary-color); /* Kırmızı */
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--text-color); /* Beyaz olarak değiştirildi */
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-content .subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto 2.5rem auto;
}

.btn-lg {
    padding: 15px 40px;
    font-size: 1.1rem;
    border-radius: 12px;
}

/* GİRİŞ VE KAYIT FORMLARI */
.form-page-section {
    padding: 4rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 80vh;
}

.form-card {
    width: 100%;
    max-width: 450px;
    margin: 0 auto;
    background: #222222; /* Koyu gri arka plan */
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5); /* Daha belirgin koyu gölge */
    border: 1px solid var(--border-color);
}

.form-title {
    text-align: center;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text-color); /* Beyaz olarak değiştirildi */
    margin-bottom: 0.5rem;
}

.form-subtitle {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 700;
    color: var(--text-color); /* Beyaz olarak değiştirildi */
    margin-bottom: 0.5rem;
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    font-size: 1rem;
    border: 1px solid #666666; /* Koyu gri kenarlık */
    background-color: #333333; /* Koyu gri arka plan */
    color: var(--text-color); /* Beyaz yazı */
    border-radius: 8px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    transition: border-color 0.2s, box-shadow 0.2s;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color); /* Kırmızı */
    box-shadow: 0 0 0 3px rgba(255, 0, 0, 0.2); /* Kırmızı gölge */
}

.btn-block {
    width: 100%;
    padding: 12px;
    font-size: 1.1rem;
}

.form-footer {
    text-align: center;
    margin-top: 1.5rem;
    color: var(--text-light);
}

.form-footer a {
    color: var(--primary-color); /* Kırmızı */
    font-weight: 700;
    text-decoration: none;
}

.form-footer a:hover {
    text-decoration: underline;
}

.alert {
    padding: 1rem;
    margin-bottom: 1.5rem;
    border-radius: 8px;
    border: 1px solid transparent;
    font-size: 0.95rem;
}

.alert-danger {
    color: var(--error-color);
    background-color: var(--error-background);
    border-color: var(--error-color);
}

/* FOOTER */
footer.site-footer-bottom {
    text-align: center;
    padding: 2rem 0;
    border-top: 1px solid var(--border-color);
    color: var(--text-light);
    margin-top: 4rem;
}

/* style.css dosyanıza ekleyin */

.alert-success {
    color: #4CAF50; /* Yeşil */
    background-color: #224422; /* Koyu yeşil */
    border-color: #336633; /* Daha koyu yeşil */
}

/* =============================================== */
/* == verify-notice.php Sayfası İçin Ek Stiller == */
/* =============================================== */

/* Metinleri ortalamak için genel bir yardımcı sınıf. */
.text-center {
    text-align: center;
}

/* Bilgilendirme sayfasındaki alt başlığın daha okunaklı olması için. */
.form-card .form-subtitle {
    line-height: 1.7; /* Uzun metinler için satır aralığını artırır. */
}

/* E-posta adresini metin içinde daha belirgin hale getirmek için. */
.form-subtitle strong {
    color: var(--text-color); /* Beyaz olarak değiştirildi */
    font-weight: 600;
}

/* "Yeniden Gönder" butonu ve üstündeki yazı arasındaki boşluğu ayarlar. */
.form-card .form-group p {
    margin-bottom: 0.75rem;
}

/* Formun en altındaki "Oturumu Kapat" linki için daha belirgin bir ayırıcı. */
.form-card .form-footer {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color); /* Üstüne ince bir çizgi ekler. */
}

/* Oturumu Kapat linki için daha sade bir stil. */
.form-footer a {
    color: var(--text-light); /* Daha soluk bir renk. */
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

/* Oturumu Kapat linkinin üzerine gelindiğinde dikkat çekici bir renk alır. */
.form-footer a:hover {
    color: var(--primary-color); /* Kırmızı tonunda bir renk. */
    text-decoration: underline;
}
/* =============================================== */
/* == Modern Ana Sayfa Stilleri                 == */
/* =============================================== */

/* --- Modern Hero Alanı --- */
.hero-modern {
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
    background-color: #111111; /* Koyu arka plan */
}
.hero-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.hero-text .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border: 1px solid hsl(var(--border));
    border-radius: 999px;
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
    color: hsl(var(--primary));
    margin-bottom: 1.5rem;
    transition: all 0.2s ease;
}
.hero-text .hero-badge:hover {
    background-color: hsl(var(--card));
    border-color: hsl(var(--primary));
}
.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.05em;
    margin-bottom: 1.5rem;
    color: hsl(var(--foreground));
}
.text-gradient {
    color: var(--primary-color); /* Kırmızı */
    background: linear-gradient(
        90deg,
        #FF0000, /* Canlı Kırmızı (Ana Renginiz) */
        #FF6600 /* Biraz turuncuya çalan kırmızı */
    );
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}
.hero-subtitle {
    font-size: 1.25rem;
    color: hsl(var(--muted-foreground));
    line-height: 1.6;
    margin-bottom: 2.5rem;
}
.hero-actions {
    display: flex;
    gap: 1rem;
}
/* =============================================== */
/* == Katmanlı ve Animasyonlu Hero Görsel Alanı   == */
/* =============================================== */

/* Ana görsel alanı bir sahne gibi kullanıyoruz */
.hero-visual {
    position: relative; /* İçindeki absolute konumlandırmalar için referans noktası */
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 450px; /* İçindeki elementlerin sığması için minimum yükseklik */
}

/* Arkaplandaki renkli küreler (değişiklik yok) */
.glow-sphere-1, .glow-sphere-2 {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.3;
}
.glow-sphere-1 {
    width: 300px; height: 300px;
    background: #FF0000; /* Kırmızı */
    top: 0; left: 20%;
}
.glow-sphere-2 {
    width: 250px; height: 250px;
    background: #FF6600; /* Kırmızımsı turuncu */
    bottom: 0; right: 20%;
}

/* Ortadaki ana n8n ikonu */
.hero-main-icon {
    width: 120px;
    height: 120px;
    border-radius: 1.5rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    position: relative; /* Diğer elementlerin üstünde kalması için */
    z-index: 10;
    animation: floatAnimation 6s ease-in-out infinite;
}

/* Etraftaki küçük özellik kartları için genel stil */
.visual-card {
    position: absolute; /* Sahne içinde serbestçe konumlandırmak için */
    z-index: 11; /* Ana ikonun da üstünde olabilir */
    
    background: hsla(var(--card), 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid hsl(var(--border));
    padding: 0.75rem 1.25rem;
    border-radius: var(--radius);
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-color); /* Yazı rengi beyaz */

    /* Farklı bir süzülme animasyonu */
    animation: floatAnimation 8s ease-in-out infinite;
}
.visual-card i {
    color: hsl(var(--primary)); /* Kırmızı */
}

/* Her bir kartın özel konumu */
.visual-card.card-1 {
    top: 15%;
    left: -5%;
    animation-delay: -2s; /* Animasyonların aynı anda başlamaması için */
}
.visual-card.card-2 {
    top: 50%;
    right: -10%;
    animation-delay: 0s;
}
.visual-card.card-3 {
    bottom: 15%;
    left: 20%;
    animation-delay: -4s;
}


/* Ortak Süzülme Animasyonu */
@keyframes floatAnimation {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

/* Mobil Cihazlar için Ayarlama */
@media(max-width: 992px) {
    .hero-visual {
        display: none; /* Mobilde karmaşık görünmemesi için tüm görseli gizle */
    }
}

/* --- Özellikler Alanı --- */
.features-section {
    padding: 6rem 0;
}
.section-header { margin-bottom: 4rem; }
.section-header .badge-alt {
    font-size: 0.875rem;
    font-weight: 600;
    color: hsl(var(--primary));
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    display: inline-block;
}
.section-header .section-title { font-size: 2.5rem; margin-bottom: 1rem; color: var(--text-color); }
.section-header .section-subtitle { max-width: 600px; margin: 0 auto; color: hsl(var(--muted-foreground)); font-size: 1.125rem;}
.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}
.feature-card {
    background: hsl(var(--card));
    border: 1px solid hsl(var(--border));
    padding: 2rem;
    border-radius: var(--radius);
    transition: all 0.2s ease;
    color: var(--text-color); /* Yazı rengi beyaz */
}
.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}
.feature-icon {
    font-size: 1.5rem;
    color: hsl(var(--primary)); /* Kırmızı */
    margin-bottom: 1rem;
}
.feature-card h3 { font-size: 1.25rem; margin-bottom: 0.5rem; }
.feature-card p { color: hsl(var(--muted-foreground)); line-height: 1.6; }

/* --- Son Çağrı Alanı --- */
.final-cta-section {
    padding: 6rem 0;
    background-color: #111111; /* Koyu arka plan */
}
.btn-xl { padding: 1rem 2.5rem; font-size: 1.125rem; }

/* --- Mobil Uyum --- */
@media(max-width: 992px) {
    .hero-layout { grid-template-columns: 1fr; text-align: center; }
    .hero-visual { display: none; } /* Mobilde görseli gizle */
    .hero-actions { justify-content: center; }
    .hero-title { font-size: 2.5rem; }
}
/* =============================================== */
/* == Fiyatlandırma ve Dokümantasyon Stilleri     == */
/* =============================================== */

/* Genel Sayfa Stili */
.page-section { padding: 6rem 0; }

/* Fiyatlandırma Sayfası */
.billing-toggle-container { display: flex; align-items: center; justify-content: center; gap: 1rem; margin: 2rem 0 3rem 0; color: var(--text-color); } /* Yazı rengi beyaz */
.billing-toggle { position: relative; display: inline-block; width: 50px; height: 28px; }
.billing-toggle input { opacity: 0; width: 0; height: 0; }
.billing-toggle .slider { position: absolute; cursor: pointer; top: 0; left: 0; right: 0; bottom: 0; background-color: #555555; transition: .4s; border-radius: 28px; } /* Koyu gri slider */
.billing-toggle .slider:before { position: absolute; content: ""; height: 20px; width: 20px; left: 4px; bottom: 4px; background-color: white; transition: .4s; border-radius: 50%; }
.billing-toggle input:checked + .slider { background-color: hsl(var(--primary)); } /* Kırmızı */
.billing-toggle input:checked + .slider:before { transform: translateX(22px); }

.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; align-items: start; }
.pricing-card { background: hsl(var(--card)); border: 1px solid hsl(var(--border)); padding: 2.5rem; border-radius: var(--radius); text-align: left; transition: all .3s ease; color: var(--text-color); } /* Yazı rengi beyaz */
.pricing-card.featured { border-color: hsl(var(--primary)); transform: scale(1.05); box-shadow: 0 10px 30px rgba(0,0,0,0.3); }
.featured-badge { background-color: hsl(var(--primary)); color: hsl(var(--primary-foreground)); padding: 5px 12px; border-radius: 99px; font-size: .8rem; font-weight: 600; display: inline-block; margin-bottom: 1.5rem; }
.plan-name { font-size: 1.5rem; font-weight: 600; margin-bottom: .5rem; }
.plan-description { color: hsl(var(--muted-foreground)); margin-bottom: 2rem; }
.plan-price { font-size: 2.5rem; font-weight: 700; margin-bottom: 2rem; }
.plan-price .period { font-size: 1rem; color: hsl(var(--muted-foreground)); font-weight: 400; }
.plan-price .price-custom { font-size: 1.75rem; }
.plan-features { list-style: none; padding: 0; margin: 0 0 2.5rem 0; }
.plan-features li { display: flex; align-items: center; gap: .75rem; margin-bottom: 1rem; }
.plan-features li .fa-check { color: #27ae60; } /* Yeşil */
.plan-features li .fa-times { color: #FF0000; } /* Kırmızı */
.pricing-card .btn-block { width: 100%; text-align: center; }

/* SSS Bölümü */
.faq-section { background: #111111; padding: 6rem 0; } /* Koyu arka plan */
.faq-container { max-width: 800px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid hsl(var(--border)); padding: 1.5rem 0; }
.faq-item summary { font-weight: 600; font-size: 1.125rem; cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; color: var(--text-color); } /* Yazı rengi beyaz */
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; font-size: 1.5rem; color: var(--primary-color); } /* Kırmızı */
.faq-item[open] summary::after { content: '-'; }
.faq-item p { color: hsl(var(--muted-foreground)); margin-top: 1rem; line-height: 1.7; }

/* Dokümantasyon Sayfası */
.docs-layout { display: grid; grid-template-columns: 240px 1fr; gap: 3rem; padding: 3rem 0; }
.docs-sidebar { position: sticky; top: 100px; align-self: start; }
.docs-sidebar h5 { font-size: .8rem; text-transform: uppercase; letter-spacing: .5px; color: hsl(var(--muted-foreground)); margin: 2rem 0 .75rem 0; }
.docs-sidebar h5:first-child { margin-top: 0; }
.docs-sidebar ul { list-style: none; padding: 0; margin: 0; }
.docs-sidebar ul li a { display: block; padding: .5rem 0; text-decoration: none; color: hsl(var(--muted-foreground)); font-weight: 500; border-left: 2px solid transparent; padding-left: 1rem; transition: all .2s ease; }
.docs-sidebar ul li a:hover { color: hsl(var(--foreground)); }
.docs-sidebar ul li a.active { color: hsl(var(--primary)); font-weight: 600; border-left-color: hsl(var(--primary)); }

.docs-content { min-width: 0; }
.docs-content h1 { font-size: 2.5rem; margin-bottom: 1rem; border-bottom: 1px solid hsl(var(--border)); padding-bottom: 1rem; color: var(--text-color); } /* Yazı rengi beyaz */
.docs-content .lead { font-size: 1.25rem; color: hsl(var(--muted-foreground)); margin-bottom: 2rem; }
.docs-content h2 { font-size: 1.75rem; margin: 3rem 0 1rem 0; border-bottom: 1px solid hsl(var(--border)); padding-bottom: .5rem; color: var(--text-color); } /* Yazı rengi beyaz */
.docs-content p, .docs-content ul { line-height: 1.8; color: hsl(var(--foreground)); margin-bottom: 1rem; }
.docs-content a { color: hsl(var(--primary)); } /* Kırmızı */

pre { background-color: #000000; /* Tamamen siyah arka plan */
    color: #f8f8f2; padding: 1.5rem; border-radius: var(--radius); overflow-x: auto; margin: 2rem 0; }
code { font-family: 'Fira Code', 'Courier New', monospace; font-size: .9rem; }

@media (max-width: 992px) {
    .pricing-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
    .pricing-card.featured { transform: scale(1); }
    .docs-layout { grid-template-columns: 1fr; }
    .docs-sidebar { position: static; }
}

.new-hero-section {
    padding: 5rem 0;
    background-color: hsl(var(--background));
}

.new-hero-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr; /* Sol sütun biraz daha dar */
    gap: 4rem;
    align-items: center;
}

/* Sol Sütun */
.hero-left-column {
    display: flex;
    flex-direction: column;
}
.hero-main-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: hsl(var(--muted-foreground));
    margin-bottom: 2.5rem;
}
.hero-main-text p {
    margin-bottom: 1.5rem;
}
.hero-main-text .highlight-red {
    color: hsl(var(--primary));
    font-weight: 600;
}

.info-link-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    border-top: 1px solid hsl(var(--border));
}
.info-link {
    display: flex;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid hsl(var(--border));
    text-decoration: none;
    color: hsl(var(--muted-foreground));
    font-weight: 500;
    transition: all 0.2s ease;
}
.info-link:hover {
    color: hsl(var(--primary));
    transform: translateX(5px);
}
.info-link i:first-child {
    width: 30px;
    font-size: 1.1rem;
}
.info-link span {
    flex-grow: 1;
}

.scroll-down-prompt {
    margin-top: 2rem;
    color: hsl(var(--muted-foreground));
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Sağ Sütun */
.image-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}
.grid-image-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}
.grid-image-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}
.grid-image-item:hover img {
    transform: scale(1.05);
}
.image-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: #fff;
    padding: 1.5rem 1rem 1rem 1rem;
    font-weight: 500;
    font-size: 0.9rem;
}

/* Mobil Uyumluluk */
@media (max-width: 992px) {
    .new-hero-layout {
        grid-template-columns: 1fr; /* Sütunları alt alta getir */
    }
}
/* =============================================== */
/* == Yeni Eklenen Ana Sayfa Bölümleri Stilleri == */
/* =============================================== */

/* --- Teknik Özellik Vurgu Bölümü --- */
.tech-spec-section {
    padding: 6rem 0;
    background-color: hsl(var(--background));
}
.tech-spec-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.tech-spec-image img {
    width: 100%;
    border-radius: var(--radius);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}
.tech-spec-content .section-title {
    font-size: 2.25rem;
}
.tech-spec-content .section-subtitle {
    margin-top: 2rem;
}

/* Terminal Bloğu Tasarımı */
.terminal-block {
    background: #0D1117; /* GitHub Karanlık Mod Rengi */
    border: 1px solid hsl(var(--border));
    border-radius: var(--radius);
    margin-top: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}
.terminal-header {
    background: #161B22;
    padding: 0.75rem;
    border-bottom: 1px solid hsl(var(--border));
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.terminal-header .dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
}
.terminal-header .dot.red { background-color: #ff5f56; }
.terminal-header .dot.yellow { background-color: #ffbd2e; }
.terminal-header .dot.green { background-color: #27c93f; }
.terminal-header .terminal-title {
    color: #8B949E;
    font-size: 0.8rem;
    margin-left: 1rem;
    font-family: 'Courier New', Courier, monospace;
}
.terminal-block pre {
    margin: 0;
    padding: 1.5rem;
    background: none;
    overflow-x: auto;
}
.terminal-block pre code {
    color: #00ff00; /* Klasik terminal yeşili */
    font-family: 'Fira Code', 'Courier New', monospace;
    font-size: 0.9rem;
}
/* =============================================== */
/* == Gelişmiş Banner Tasarımı (Karanlık Tema)  == */
/* =============================================== */

.cta-banner-section {
    padding: 2rem 1.5rem; /* Banner'ın sayfa kenarlarından boşluğu */
}

.cta-banner.new-banner {
    position: relative; /* İçindeki glow efektleri için */
    overflow: hidden;   /* Efektlerin dışarı taşmasını engelle */
    padding: 5rem 3rem;
    text-align: center;
    background-color: #0D1117; /* Çok koyu bir arkaplan */
    border: 1px solid hsl(var(--border));
    border-radius: 24px; /* Belirgin yuvarlak köşeler */
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

/* Arkaplan Parlama Efektleri */
.cta-banner .glow-1,
.cta-banner .glow-2 {
    position: absolute;
    width: 500px;
    height: 300px;
    border-radius: 50%;
    filter: blur(120px); /* Güçlü bir bulanıklık efekti */
    z-index: 1;
}

/* Temamızla uyumlu kırmızı parlamalar */
.cta-banner .glow-1 {
    background-color: hsl(var(--primary) / 0.2); /* Kırmızı, %20 opaklık */
    top: -150px;
    left: 50%;
    transform: translateX(-50%);
}
.cta-banner .glow-2 {
    background-color: hsl(var(--primary) / 0.15); /* Daha soluk kırmızı */
    bottom: -180px;
    left: 50%;
    transform: translateX(-50%);
}

/* İçeriğin, glow efektlerinin üstünde kalmasını sağlar */
.banner-content {
    position: relative;
    z-index: 2;
}

.banner-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: hsl(var(--foreground));
}

/* Başlıktaki Gradyanlı Metin Stili */
.banner-content .highlight-gradient {
    /* Parlak kırmızıdan biraz daha koyu kırmızıya giden gradyan */
    background: linear-gradient(to bottom, #ff5252, #e53935);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.banner-content p {
    font-size: 1.125rem;
    color: hsl(var(--muted-foreground));
    max-width: 600px;
    margin: 0 auto 2rem auto;
}

/* Özel Buton Stili */
.btn-cta {
    background: hsl(var(--primary));
    color: hsl(var(--primary-foreground));
    padding: 0.875rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    border: 1px solid hsl(var(--primary) / 0.5);
    box-shadow: 0 0 20px hsl(var(--primary) / 0.3); /* Butonun etrafında kırmızı bir parlama */
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 30px hsl(var(--primary) / 0.5);
}
/* =============================================== */
/* == Yeni Gelişmiş Footer Stilleri             == */
/* =============================================== */

.site-footer-v3 {
    /* Hafif gradyanlı koyu arkaplan */
    background: linear-gradient(180deg, hsl(var(--card)), hsl(var(--background)));
    color: hsl(var(--muted-foreground));
    padding-top: 5rem;
    margin-top: 5rem;
    border-top: 1px solid hsl(var(--border));
    /* Üst köşeleri belirgin şekilde yuvarlak yapma */
    border-radius: 50px 50px 0 0;
}

.footer-grid {
    display: grid;
    /* Masaüstünde 4 sütunlu bir yapı */
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 4rem;
}

/* Sol Sütun: Logo ve Açıklama */
.footer-col-about .footer-logo {
    display: inline-block;
    margin-bottom: 1.5rem;
    font-size: 1.75rem;
    font-weight: 800;
    color: hsl(var(--foreground)); /* Logo rengi daha parlak */
    text-decoration: none;
}
.footer-description {
    font-size: 0.9rem;
    line-height: 1.7;
    padding-right: 2rem;
}

/* Sağdaki Link Sütunları */
.footer-col-links h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: hsl(var(--foreground));
    margin-bottom: 1.5rem;
}
.footer-col-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem; /* Linkler arası boşluk */
}
.footer-col-links ul li a {
    color: hsl(var(--muted-foreground));
    text-decoration: none;
    transition: color 0.2s ease;
}
.footer-col-links ul li a:hover {
    color: hsl(var(--primary)); /* Temanızın kırmızı vurgu rengi */
}

/* Alt Bölüm: Ayırıcı Çizgi ve Telif Hakkı */
.footer-divider {
    border: none;
    height: 1px;
    background-color: hsl(var(--border));
    opacity: 0.5;
}
.footer-bottom-text {
    padding: 2rem 0;
    text-align: center;
    font-size: 0.875rem;
    color: hsl(var(--muted-foreground));
}

/* Mobil Uyumluluk */
@media (max-width: 992px) {
    .footer-grid {
        /* Tablet boyutunda 2 sütuna düşür */
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .site-footer-v3 {
        border-radius: 30px 30px 0 0; /* Mobilde yuvarlaklığı azalt */
    }
    .footer-grid {
        /* Mobilde tüm sütunları alt alta getir */
        grid-template-columns: 1fr;
        text-align: center;
    }
    .footer-description {
        padding-right: 0;
    }
    .footer-col-links ul {
        gap: 0.75rem;
    }
}


/* Yasal İçerik Sayfaları Stilleri (Koyu Tema) */
.legal-content {
    /* Koyu gri arkaplan */
    background-color: #1e2124; 
    border-radius: 8px;
    padding: 30px 40px;
    line-height: 1.7;
    /* Açık gri, okunabilir metin rengi */
    color: #b9bbbe; 
    border: 1px solid #36393f; /* İnce bir çerçeve */
}

.legal-content h4 {
    margin-top: 30px;
    margin-bottom: 15px;
    /* Başlıklar için parlak beyaz renk */
    color: #ffffff; 
    /* Vurgu rengi mavi, koyu temada da güzel durur */
    border-left: 4px solid #007bff; 
    padding-left: 10px;
}

.legal-content p,
.legal-content ul {
    margin-bottom: 1rem;
    text-align: justify;
}

.legal-content ul {
    padding-left: 20px;
}

.legal-content hr {
    margin-top: 30px;
    margin-bottom: 30px;
    border: 0;
    /* Ayırıcı çizgi için daha belirgin bir renk */
    border-top: 1px solid #40444b; 
}