../* Privacy Policy Page Specific Styles */

/* Privacy Hero Section */
.privacy-hero {
    padding: 10rem 0 4rem;
    text-align: center;
    background: linear-gradient(180deg, var(--dark-bg) 0%, var(--darker-card) 100%);
    position: relative;
    overflow: hidden;
}

.privacy-hero::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.privacy-header {
    position: relative;
    z-index: 1;
}

.privacy-icon {
    font-size: 5rem;
    margin-bottom: 1.5rem;
    animation: float 3s ease-in-out infinite;
}

.privacy-hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.last-updated {
    font-size: 1rem;
    color: var(--text-muted);
    font-style: italic;
}

/* Privacy Content */
.privacy-content {
    padding: 4rem 0;
    background: var(--dark-bg);
}

.content-wrapper {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 3rem;
    align-items: start;
}

/* Table of Contents */
.table-of-contents {
    position: sticky;
    top: 100px;
    background: var(--dark-card);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid rgba(99, 102, 241, 0.2);
}

.table-of-contents h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.table-of-contents ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.table-of-contents li {
    margin-bottom: 0.75rem;
}

.table-of-contents a {
    color: var(--text-gray);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: block;
    padding: 0.5rem;
    border-radius: 6px;
}

.table-of-contents a:hover,
.table-of-contents a.active {
    color: var(--primary-light);
    background: rgba(99, 102, 241, 0.1);
    padding-left: 1rem;
}

/* Privacy Text Content */
.privacy-text {
    background: var(--dark-card);
    padding: 3rem;
    border-radius: 16px;
    border: 1px solid rgba(99, 102, 241, 0.1);
}

.policy-section {
    margin-bottom: 3rem;
    scroll-margin-top: 100px;
}

.policy-section:last-child {
    margin-bottom: 0;
}

.policy-section h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid rgba(99, 102, 241, 0.3);
}

.policy-section h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-light);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.policy-section h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-light);
    margin-bottom: 0.75rem;
}

.policy-section p {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.policy-section ul,
.policy-section ol {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.policy-section li {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 0.75rem;
}

.policy-section a {
    color: var(--primary-light);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s ease;
}

.policy-section a:hover {
    border-bottom-color: var(--primary-light);
}

/* Special Boxes */
.highlight-box,
.info-box,
.warning-box,
.contact-box {
    padding: 1.5rem;
    border-radius: 12px;
    margin: 1.5rem 0;
    border-left: 4px solid;
}

.highlight-box {
    background: rgba(99, 102, 241, 0.1);
    border-left-color: var(--primary-color);
}

.info-box {
    background: rgba(34, 211, 238, 0.1);
    border-left-color: var(--cyan);
}

.warning-box {
    background: rgba(251, 191, 36, 0.1);
    border-left-color: #fbbf24;
}

.contact-box {
    background: rgba(16, 185, 129, 0.1);
    border-left-color: var(--secondary-color);
}

.highlight-box h4,
.info-box h4,
.warning-box h4 {
    margin-top: 0;
    margin-bottom: 0.75rem;
}

.highlight-box p,
.info-box p,
.warning-box p,
.contact-box p {
    margin-bottom: 0;
}

/* Check List */
.check-list {
    list-style: none;
    padding-left: 0;
}

.check-list li {
    padding-left: 1.5rem;
    position: relative;
}

/* Permissions Table */
.permissions-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    background: var(--darker-card);
    border-radius: 8px;
    overflow: hidden;
}

.permissions-table thead {
    background: rgba(99, 102, 241, 0.2);
}

.permissions-table th {
    padding: 1rem;
    text-align: left;
    font-weight: 600;
    color: var(--text-light);
    border-bottom: 2px solid rgba(99, 102, 241, 0.3);
}

.permissions-table td {
    padding: 1rem;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(99, 102, 241, 0.1);
}

.permissions-table tbody tr:last-child td {
    border-bottom: none;
}

.permissions-table tbody tr:hover {
    background: rgba(99, 102, 241, 0.05);
}

/* Summary Section */
.summary-section {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
    padding: 2.5rem;
    border-radius: 16px;
    border: 2px solid rgba(99, 102, 241, 0.3);
}

.summary-section h2 {
    text-align: center;
    border: none;
    margin-bottom: 2rem;
}

.summary-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.summary-card {
    background: var(--dark-card);
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    border: 1px solid rgba(99, 102, 241, 0.2);
    transition: all 0.3s ease;
}

.summary-card:hover {
    transform: translateY(-5px);
    border-color: rgba(99, 102, 241, 0.5);
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.2);
}

.summary-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.summary-card h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.summary-card p {
    font-size: 0.9rem;
    color: var(--text-gray);
    margin: 0;
}

/* Navigation Active State */
nav a.active {
    color: var(--primary-light);
    position: relative;
}

nav a.active::after {
    width: 100%;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .content-wrapper {
        grid-template-columns: 1fr;
    }

    .table-of-contents {
        position: relative;
        top: 0;
        margin-bottom: 2rem;
    }
}

@media (max-width: 768px) {
    .privacy-hero {
        padding: 7rem 0 3rem;
    }

    .privacy-hero h1 {
        font-size: 2.5rem;
    }

    .privacy-icon {
        font-size: 3.5rem;
    }

    .privacy-text {
        padding: 2rem;
    }

    .policy-section h2 {
        font-size: 1.5rem;
    }

    .policy-section h3 {
        font-size: 1.2rem;
    }

    .summary-grid {
        grid-template-columns: 1fr;
    }

    .permissions-table {
        font-size: 0.9rem;
    }

    .permissions-table th,
    .permissions-table td {
        padding: 0.75rem;
    }
}

@media (max-width: 480px) {
    .privacy-hero h1 {
        font-size: 2rem;
    }

    .privacy-text {
        padding: 1.5rem;
    }

    .highlight-box,
    .info-box,
    .warning-box,
    .contact-box {
        padding: 1rem;
    }

    .table-of-contents {
        padding: 1.5rem;
    }

    .permissions-table {
        display: block;
        overflow-x: auto;
    }
}

