:root {
    --privacy-accent: #ffd166;
    --privacy-text: #e6edf7;
    --privacy-muted: #c7d2e4;
}

.privacy-body {
    position: relative;
    min-height: 100vh;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--privacy-text);
}

.privacy-body::before {
    content: "";
    position: fixed;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(18, 18, 20, 0.92) 0%,
        rgba(28, 28, 32, 0.94) 55%,
        rgba(255, 204, 64, 0.10) 100%
    );
    backdrop-filter: blur(3px);
    z-index: 0;
}

.privacy-main {
    position: relative;
    z-index: 1;
    max-width: 1100px;
    margin: 0 auto;
    padding: 140px 20px 96px;
    font-family: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
    line-height: 1.75;
}

.privacy-hero {
    margin-bottom: 32px;
}

.privacy-eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 700;
    color: var(--privacy-accent);
    margin-bottom: 12px;
}

.privacy-hero h1 {
    font-size: 34px;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin: 0 0 18px;
}

.privacy-lead {
    font-size: 17px;
    color: var(--privacy-muted);
    margin-bottom: 16px;
}

.privacy-section {
    margin-top: 36px;
}

.privacy-section h2 {
    font-size: 22px;
    font-weight: 700;
    letter-spacing: -0.01em;
    margin: 0 0 12px;
    position: relative;
    padding-left: 18px;
}

.privacy-section h2::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 26px;
    border-radius: 999px;
    background: linear-gradient(180deg, var(--privacy-accent), #f4a261);
    box-shadow: 0 0 16px rgba(255, 209, 102, 0.35);
}

.privacy-section p {
    margin: 0 0 12px;
    color: var(--privacy-muted);
    font-size: 16px;
}

.privacy-list {
    margin: 8px 0 12px 20px;
    padding: 0;
    display: grid;
    gap: 10px;
    list-style: disc;
    color: var(--privacy-muted);
}

.privacy-list li {
    padding-left: 6px;
    font-size: 16px;
    color: var(--privacy-muted);
}

.privacy-link {
    color: var(--privacy-accent);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: color 0.2s ease, border-color 0.2s ease;
}

.privacy-link:hover {
    color: #ffe29f;
    border-color: currentColor;
}

@media (max-width: 768px) {
    .privacy-main {
        padding: 120px 18px 72px;
    }

    .privacy-hero h1 {
        font-size: 28px;
    }

    .privacy-section h2 {
        font-size: 20px;
    }

    .privacy-lead {
        font-size: 16px;
    }
}

@media (max-width: 520px) {
    .privacy-main {
        padding: 110px 16px 64px;
    }

    .privacy-hero h1 {
        font-size: 24px;
    }
}

/* ============================================ */
/* SCROLL INDICATOR NAVIGATION */
/* ============================================ */
.scroll-indicator-nav {
    position: fixed;
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Mobilde scroll indicator'ları gizle */
@media (max-width: 768px) {
    .scroll-indicator-nav {
        display: none !important;
    }
}

.scroll-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.scroll-dot:hover {
    background: rgba(255, 215, 0, 0.6);
    transform: scale(1.2);
}

.scroll-dot.active {
    background: #ffd700;
    border-color: rgba(255, 215, 0, 0.5);
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.scroll-dot::after {
    content: attr(title);
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.9);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 0.875rem;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.scroll-dot:hover::after {
    opacity: 1;
}

/* Section highlight animation */
@keyframes sectionHighlight {
    0% {
        background-color: transparent;
        box-shadow: 0 0 0 rgba(255, 215, 0, 0);
    }
    50% {
        background-color: rgba(255, 215, 0, 0.1);
        box-shadow: 0 0 40px rgba(255, 215, 0, 0.5);
    }
    100% {
        background-color: transparent;
        box-shadow: 0 0 0 rgba(255, 215, 0, 0);
    }
}

.privacy-hero.highlight,
.privacy-section.highlight {
    animation: sectionHighlight 1s ease-out;
}

@media (max-width: 768px) {
    .scroll-indicator-nav {
        right: 0.5rem;
    }

    .scroll-dot {
        width: 8px;
        height: 8px;
    }

    .scroll-dot::after {
        font-size: 0.7rem;
        padding: 0.3rem 0.6rem;
        right: 12px;
    }
}

