/* Arka planı ana sitenle uyumlu hale getir */
body {
    background: radial-gradient(circle at top, #1a1c25 0%, #0d0e12 100%);
    color: #e0e0e0;
    font-family: 'Inter', sans-serif;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

/* Ana Konteynır - Cam Efekti (Glassmorphism) */
.legal-container {
    max-width: 850px;
    width: 90%;
    margin: 40px 20px;
    padding: 50px;
    background: rgba(19, 20, 28, 0.8); /* */
    backdrop-filter: blur(10px);
    border-radius: 24px;
    border: 1px solid rgba(163, 255, 0, 0.15); /* Yeşil çerçeve sızıntısı */
    box-shadow: 0 20px 50px rgba(0,0,0,0.6);
}

/* Başlık Alanı - Orbitron Fontu */
.legal-header {
    text-align: center;
    margin-bottom: 50px;
}

.legal-header h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    color: #fff;
    letter-spacing: 5px;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.2);
    margin: 0;
}

/* Yeşil Ayırıcı Çizgi */
.legal-header::after {
    content: '';
    display: block;
    width: 100px;
    height: 4px;
    background: #a3ff00;
    margin: 20px auto 0;
    border-radius: 2px;
    box-shadow: 0 0 10px rgba(163, 255, 0, 0.5);
}

/* İçerik Başlıkları ve İkonlar */
.legal-content h2 {
    color: #a3ff00; /* */
    font-family: 'Orbitron', sans-serif;
    font-size: 1.2rem;
    margin-top: 40px;
    display: flex;
    align-items: center;
    gap: 12px;
}

/* İçerik Metni */
.legal-content p {
    font-size: 1.05rem;
    color: #b0b0cc;
    line-height: 1.8;
}

/* Mail Linki Parlaması */
.legal-content strong {
    color: #00f3ff;
    text-shadow: 0 0 5px rgba(0, 243, 255, 0.3);
}

/* Geri Dön Butonu - Neon Mavi */
.back-home {
    display: inline-flex;
    align-items: center;
    margin-top: 50px;
    color: #00f3ff;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    padding: 10px 20px;
    border: 1px solid rgba(0, 243, 255, 0.2);
    border-radius: 12px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.back-home:hover {
    background: rgba(0, 243, 255, 0.1);
    box-shadow: 0 0 20px rgba(0, 243, 255, 0.2);
    transform: translateX(-8px);
    border-color: #00f3ff;
}

.legal-content ul {
    list-style-type: none;
    padding-left: 0;
}

.legal-content li {
    margin-bottom: 12px;
    padding-left: 20px;
    position: relative;
    color: #b0b0cc;
}

/* Maddelerin başına küçük yeşil bir nokta koyar */
.legal-content li::before {
    content: '•';
    color: #a3ff00;
    font-weight: bold;
    display: inline-block; 
    width: 1em;
    margin-left: -1em;
}

.update-date {
    font-style: italic;
    color: #00f3ff !important; /* Neon mavi vurgu */
    margin-bottom: 30px;
}