/* ==========================================
   PRIVACY POLICY PAGE STYLES
   ========================================== */

/* Privacy Hero Section */
.privacy-hero {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 4rem 2rem;
    background: linear-gradient(180deg, rgba(255, 107, 53, 0.1) 0%, rgba(15, 10, 21, 0.8) 50%, rgba(15, 10, 21, 1) 100%);
}

.privacy-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(255, 140, 66, 0.2) 0%, transparent 70%);
    pointer-events: none;
    animation: float 8s ease-in-out infinite;
}

.privacy-hero .hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    animation: fadeInUp 1s ease-out;
}

.privacy-hero h1 {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
    font-family: 'Orbitron', sans-serif;
    letter-spacing: 2px;
    line-height: 1.1;
    animation: fadeInUp 1s ease-out 0.1s both;
    color: var(--accent-cyan);
    text-transform: uppercase;
}

.privacy-hero .tagline {
    font-size: 1.5rem;
    color: var(--accent-orange);
    margin-bottom: 1rem;
    font-weight: 400;
    animation: fadeInUp 1s ease-out 0.2s both;
    font-family: 'Orbitron', sans-serif;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.privacy-hero .last-updated {
    font-size: 0.9rem;
    color: var(--text-secondary);
    animation: fadeInUp 1s ease-out 0.3s both;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: 'Orbitron', sans-serif;
}

/* Section Styles */

.privacy-section {
    padding: 5rem 2rem;
    background: var(--secondary-dark);
    position: relative;
}

.privacy-section.alt-bg {
    background: linear-gradient(135deg, var(--primary-dark) 0%, #1a0f2e 100%);
}

.privacy-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-cyan), transparent);
}

/* Introduction Box */

.intro-list li {
    font-size: 1rem;
}

/* Table of Contents */
.privacy-toc {
    margin-top: 2rem;
}

.toc-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1rem;
}

.toc-list li {
    padding: 1rem;
    background: linear-gradient(135deg, rgba(255, 140, 66, 0.08) 0%, rgba(0, 217, 255, 0.05) 100%);
    border: 1px solid rgba(255, 140, 66, 0.2);
    border-radius: 6px;
    transition: all 0.3s ease;
}

.toc-list li:hover {
    border-color: var(--accent-cyan);
    box-shadow: 0 5px 20px rgba(0, 217, 255, 0.15);
    transform: translateY(-3px);
}

.toc-list a {
    color: var(--accent-cyan);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.toc-list a:hover {
    color: var(--accent-orange);
}

/* Section Intro Text */
.section-intro {
    color: var(--text-secondary);
    font-size: 1rem;
    margin-top: 1.5rem;
    margin-bottom: 2rem;
}

/* Summary Grid */
.summary-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.summary-card {
    padding: 2rem;
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.08) 0%, rgba(255, 140, 66, 0.05) 100%);
    border: 1px solid rgba(0, 217, 255, 0.2);
    border-radius: 8px;
    transition: all 0.3s ease;
    animation: fadeInUp 1s ease-out both;
}

.summary-card:nth-child(1) { animation-delay: 0.2s; }
.summary-card:nth-child(2) { animation-delay: 0.25s; }
.summary-card:nth-child(3) { animation-delay: 0.3s; }
.summary-card:nth-child(4) { animation-delay: 0.35s; }
.summary-card:nth-child(5) { animation-delay: 0.4s; }
.summary-card:nth-child(6) { animation-delay: 0.45s; }

.summary-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-orange);
    box-shadow: 0 10px 30px rgba(255, 140, 66, 0.15);
}

.summary-card h4 {
    font-size: 1rem;
    color: var(--accent-orange);
    margin-bottom: 1rem;
    font-family: 'Orbitron', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.summary-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

/* Content Styles */
.privacy-section p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.privacy-section h3 {
    font-size: 1.4rem;
    color: var(--accent-orange);
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-family: 'Orbitron', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.privacy-section h4 {
    font-size: 1.1rem;
    color: var(--accent-cyan);
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    font-family: 'Orbitron', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.privacy-section a {
    color: var(--accent-cyan);
    text-decoration: none;
    transition: all 0.3s ease;
}

.privacy-section a:hover {
    text-shadow: 0 0 10px rgba(0, 217, 255, 0.3);
}

.privacy-section strong {
    color: var(--accent-orange);
    font-weight: 600;
}

/* Privacy Lists */
.privacy-list {
    margin-left: 1.5rem;
}

/* Table Styles */
.privacy-table-container {
    overflow-x: auto;
    margin: 2rem 0;
    border-radius: 8px;
    border: 1px solid rgba(0, 217, 255, 0.2);
}

.privacy-table {
    width: 100%;
    border-collapse: collapse;
    background: linear-gradient(135deg, rgba(255, 140, 66, 0.05) 0%, rgba(0, 217, 255, 0.02) 100%);
}

.privacy-table thead {
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.15) 0%, rgba(255, 140, 66, 0.1) 100%);
}

.privacy-table th {
    padding: 1rem;
    text-align: left;
    color: var(--accent-cyan);
    font-family: 'Orbitron', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
    font-weight: 600;
    border-bottom: 2px solid rgba(0, 217, 255, 0.3);
}

.privacy-table td {
    padding: 1rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
    border-bottom: 1px solid rgba(0, 217, 255, 0.1);
}

.privacy-table tbody tr:hover {
    background: rgba(0, 217, 255, 0.05);
}

.privacy-table strong {
    color: var(--accent-orange);
}

/* Back to Top */
.privacy-back-to-top {
    padding: 2rem;
    background: var(--secondary-dark);
    text-align: center;
    border-top: 1px solid rgba(255, 140, 66, 0.3);
}

/* Responsive */
@media (max-width: 768px) {
    .privacy-hero h1 {
        font-size: 2.5rem;
    }

    .privacy-hero .tagline {
        font-size: 1.2rem;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .privacy-section {
        padding: 3rem 2rem;
    }

    .privacy-intro-box {
        padding: 1.5rem;
    }

    .privacy-table-container {
        margin: 1.5rem -2rem;
        border-radius: 0;
    }

    .privacy-table th,
    .privacy-table td {
        padding: 0.8rem;
        font-size: 0.85rem;
    }

    .toc-list {
        grid-template-columns: 1fr;
    }

    .summary-grid {
        grid-template-columns: 1fr;
    }
}
