﻿/* Privacy page specific styles */
a {
    color: #93c5fd;
    text-decoration: none;
}

    a:visited {
        color: #93c5fd; /* Same as normal links - no purple! */
    }

    a:hover {
        color: #3b82f6;
        text-decoration: underline;
    }

    a:active {
        color: #3b82f6;
    }

.auth-logo-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 24px 32px;
    background: linear-gradient(180deg, rgba(11,16,32,0.9) 0%, rgba(11,16,32,0.7) 70%, transparent 100%);
}

    .auth-logo-header .auth-logo {
        width: 200px;
        height: auto;
        display: block;
        filter: brightness(0) invert(1);
        opacity: 0.95;
        margin: 0 auto; /* Centers the logo */
    }

html, body {
    margin: 0;
    padding: 0;
    min-height: 100%;
    width: 100%;
    font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
}

html, body {
    margin: 0;
    padding: 0;
    min-height: 100%;
    width: 100%;
    font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
}

.overlay {
    position: fixed;
    inset: 0;
    background: rgba(11,16,32,0.75);
    z-index: 0;
}

.privacy-container {
    position: relative;
    z-index: 110;
    min-height: 100vh;
    padding: 120px 20px 40px 20px; /* Changed from 40px 20px */
    display: flex;
    flex-direction: column;
    align-items: center;
}

.back-link {
    align-self: flex-start;
    margin-bottom: 24px;
    margin-top: -50px; /* Add this to pull it back up */
    padding: 10px 20px;
    background: rgba(0,0,0,0.4);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 10px;
    color: #93c5fd;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    position: relative;
    z-index: 101;
}

    .back-link:hover {
        background: rgba(0,0,0,0.6);
        border-color: #3b82f6;
        transform: translateX(-2px);
    }

.privacy-card {
    width: 100%;
    max-width: 900px;
    background: rgba(0,0,0,0.55);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(0,0,0,.55);
    padding: 48px;
    color: #e8eefc;
    margin-bottom: 40px;
}

.privacy-header {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 32px;
    border-bottom: 1px solid rgba(255,255,255,.1);
}

.privacy-title {
    margin: 0 0 12px;
    font-size: 36px;
    font-weight: 700;
    color: #e8eefc;
    background: linear-gradient(135deg, #e8eefc, #93c5fd);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.privacy-subtitle {
    margin: 0;
    color: #9bb0d1;
    font-size: 15px;
    font-weight: 400;
}

.privacy-intro {
    background: rgba(59,130,246,0.1);
    border-left: 4px solid #3b82f6;
    padding: 20px 24px;
    border-radius: 8px;
    margin-bottom: 32px;
    color: #d4e0f5;
    line-height: 1.7;
    font-size: 15px;
}

.privacy-section {
    margin-bottom: 36px;
}

.section-title {
    font-size: 22px;
    font-weight: 600;
    color: #e8eefc;
    margin: 0 0 16px;
    padding-bottom: 8px;
    border-bottom: 2px solid rgba(59,130,246,0.3);
}

.privacy-section p {
    color: #9bb0d1;
    line-height: 1.8;
    margin: 0 0 16px;
    font-size: 14px;
}

    .privacy-section p:last-child {
        margin-bottom: 0;
    }

.privacy-section a {
    color: #93c5fd;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s;
}

    .privacy-section a:hover {
        border-bottom-color: #93c5fd;
    }

.privacy-footer {
    text-align: center;
    padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,.1);
    color: #9bb0d1;
    font-size: 13px;
}

.footer-year {
    color: #e8eefc;
    font-weight: 600;
}

@media (max-width: 768px) {
    .privacy-card {
        padding: 32px 24px;
    }

    .privacy-title {
        font-size: 28px;
    }

    .section-title {
        font-size: 20px;
    }

    .privacy-container {
        padding: 24px 16px;
    }
}
