/* gizlilik.css */

/* BLOK 1 */
:root {
            --primary: #2c2c2c;
            --secondary: #666;
            --accent: #1a1a1a;
            --bg: #fafafa;
            --bg-card: #ffffff;
            --border: #e8e8e8;
            --text: #2c2c2c;
            --text-light: #888;
            --metallic: linear-gradient(180deg, #808080, #505050, #2a2a2a, #1a1a1a);
            --metallic-light: linear-gradient(180deg, #999, #777, #555);
        }
        body.dark-mode {
            --bg: #0f0f0f;
            --bg-card: #1a1a1a;
            --border: #333;
            --text: #e8e8e8;
            --text-light: #888;
            --metallic: linear-gradient(180deg, #ccc, #aaa, #888, #666);
            --metallic-light: linear-gradient(180deg, #bbb, #999, #777);
        }
        * { margin: 0; padding: 0; box-sizing: border-box; }
        body { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif; background: var(--bg); color: var(--text); line-height: 1.8; }

        /* HEADER */
        .site-header {
            position: fixed; top: 0; width: 100%; z-index: 1000;
            background: rgba(255,255,255,0.97); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
            border-bottom: 1px solid var(--border); transition: all 0.4s ease;
        }
        body.dark-mode .site-header { background: rgba(15,15,15,0.97); }
        .header-inner { max-width: 1200px; margin: 0 auto; padding: 12px 30px; display: flex; justify-content: space-between; align-items: center; }
        .logo-area { display: flex; align-items: center; gap: 15px; text-decoration: none; }
        .logo-area img { height: 70px; width: auto; }
        .logo-text { font-size: 7px; font-weight: 500; letter-spacing: 3px; text-transform: uppercase; color: var(--text-light); margin-top: 4px; }
        .header-right { display: flex; align-items: center; gap: 15px; }
        .btn-back-home {
            font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--primary);
            text-decoration: none; padding: 8px 20px; border: 1px solid var(--border); border-radius: 6px; transition: all 0.3s;
        }
        .btn-back-home:hover { background: var(--primary); color: white; }
        body.dark-mode .btn-back-home { color: #ccc; border-color: #555; }
        body.dark-mode .btn-back-home:hover { background: #ccc; color: #111; }
        .theme-toggle { background: none; border: none; font-size: 20px; cursor: pointer; padding: 6px; }

        /* PAGE HERO */
        .page-hero { padding: 160px 20px 60px; text-align: center; }
        .page-hero .section-label { font-size: 10px; letter-spacing: 4px; text-transform: uppercase; color: var(--text-light); margin-bottom: 20px; }
        .page-hero h1 {
            font-size: clamp(28px, 5vw, 42px); font-weight: 300; letter-spacing: 6px; text-transform: uppercase;
            background: var(--metallic); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; margin-bottom: 15px;
        }
        .section-decoration { display: flex; align-items: center; justify-content: center; gap: 15px; margin: 15px 0 10px; }
        .section-decoration::before, .section-decoration::after { content: ''; width: 40px; height: 1px; background: var(--border); }
        .section-decoration .dot { width: 6px; height: 6px; background: var(--metallic-light); transform: rotate(45deg); }
        .page-hero .update-date { font-size: 12px; color: var(--text-light); margin-top: 10px; }

        /* CONTENT */
        .content-wrapper { max-width: 860px; margin: 0 auto; padding: 0 30px 80px; }
        .highlight-box {
            background: var(--bg-card); border: 1px solid var(--border); border-radius: 16px;
            padding: 25px 30px; margin-bottom: 40px; font-size: 14px; color: var(--secondary); border-left: 4px solid #505050;
        }
        .privacy-section { margin-bottom: 40px; }
        .privacy-section h2 {
            font-size: 18px; font-weight: 500; letter-spacing: 3px; text-transform: uppercase;
            background: var(--metallic); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
            margin-bottom: 15px; padding-bottom: 10px; border-bottom: 1px solid var(--border);
        }
        .privacy-section h3 { font-size: 15px; font-weight: 600; color: var(--primary); margin: 20px 0 10px; }
        body.dark-mode .privacy-section h3 { color: #ccc; }
        .privacy-section p { font-size: 14px; color: var(--secondary); margin-bottom: 12px; line-height: 1.9; }
        .privacy-section ul { list-style: none; padding: 0; margin-bottom: 15px; }
        .privacy-section ul li { font-size: 14px; color: var(--secondary); padding: 6px 0 6px 20px; position: relative; }
        .privacy-section ul li::before {
            content: 'â—†'; position: absolute; left: 0; font-size: 8px; top: 10px;
            background: var(--metallic-light); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
        }
        .data-table { width: 100%; border-collapse: collapse; margin: 15px 0; border-radius: 12px; overflow: hidden; border: 1px solid var(--border); }
        .data-table th { background: var(--accent); color: white; font-size: 11px; letter-spacing: 2px; text-transform: uppercase; padding: 12px 16px; text-align: left; font-weight: 500; }
        body.dark-mode .data-table th { background: #333; }
        .data-table td { padding: 10px 16px; font-size: 13px; color: var(--secondary); border-bottom: 1px solid var(--border); }
        .data-table tr:last-child td { border-bottom: none; }
        .data-table tr:nth-child(even) td { background: rgba(0,0,0,0.02); }
        body.dark-mode .data-table tr:nth-child(even) td { background: rgba(255,255,255,0.02); }
        .contact-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: 12px; padding: 25px; margin-top: 15px; }
        .contact-card p { margin-bottom: 8px; font-size: 14px; }
        .contact-card a { color: #505050; font-weight: 500; text-decoration: underline; }
        body.dark-mode .contact-card a { color: #aaa; }

        /* FOOTER */
        .site-footer { text-align: center; padding: 30px 20px; border-top: 1px solid var(--border); }
        .site-footer p { font-size: 12px; color: var(--text-light); }

        /* RESPONSIVE */
        @media (max-width: 768px) {
            .header-inner { padding: 10px 15px; }
            .logo-area img { height: 50px; }
            .btn-back-home { font-size: 10px; padding: 6px 12px; }
            .content-wrapper { padding: 0 15px 60px; }
            .highlight-box { padding: 18px 20px; }
            .data-table th, .data-table td { padding: 8px 10px; font-size: 12px; }
        }
        @media (max-width: 375px) {
            .page-hero { padding: 140px 15px 40px; }
            .logo-area img { height: 40px; }
        }
        /* RTL */
        [dir="rtl"] .privacy-section ul li { padding-left: 0; padding-right: 20px; }
        [dir="rtl"] .privacy-section ul li::before { left: auto; right: 0; }
        [dir="rtl"] .highlight-box { border-left: none; border-right: 4px solid #505050; }

