/* Privacy Policy Page Specific Styles */

/* Privacy Hero Section */
.privacy-hero {
    margin-top: 80px;
    min-height: 30vh;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.privacy-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(0, 255, 136, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0, 255, 136, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.privacy-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
}

.privacy-title {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.last-updated {
    font-size: 1.1rem;
    color: #00ff88;
    font-weight: 500;
}

/* Privacy Content Section */
.privacy-content {
    padding: 80px 20px;
    background-color: #000;
}

.content-container {
    max-width: 900px;
    margin: 0 auto;
}

.privacy-main {
    color: #fff;
}

.privacy-description {
    line-height: 1.6;
}

.intro-text {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: #fff;
}

/* Section Styles */
.scope-section,
.information-section,
.usage-section,
.sharing-section,
.security-section,
.contact-section {
    margin-bottom: 50px;
    padding: 30px;
    background-color: #111;
    border-radius: 12px;
    border-left: 4px solid #00ff88;
}

.section-title {
    color: #00ff88;
    font-size: 1.5rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.scope-text,
.info-text,
.location-text,
.sharing-text,
.security-text,
.contact-text {
    color: #fff;
    font-size: 1rem;
    margin-bottom: 15px;
}

/* Information Items */
.info-item {
    margin-bottom: 30px;
    padding: 20px;
    background-color: #1a1a1a;
    border-radius: 8px;
    border-left: 3px solid #00ff88;
}

.info-title {
    color: #00ff88;
    font-size: 1.2rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.info-list {
    color: #fff;
    padding-left: 20px;
    margin: 15px 0;
}

.info-list li {
    margin-bottom: 8px;
    line-height: 1.5;
}

/* Usage List */
.usage-list {
    color: #fff;
    padding-left: 20px;
    margin: 20px 0;
}

.usage-list li {
    margin-bottom: 10px;
    line-height: 1.5;
}

.location-usage {
    margin-top: 25px;
    padding: 20px;
    background-color: #1a1a1a;
    border-radius: 8px;
    border-left: 3px solid #00ff88;
}

.sub-title {
    color: #00ff88;
    font-size: 1.1rem;
    margin-bottom: 10px;
    font-weight: 600;
}

/* Sharing Details */
.sharing-details {
    margin-top: 25px;
}

.detail-item {
    margin-bottom: 20px;
    padding: 15px;
    background-color: #1a1a1a;
    border-radius: 6px;
    border-left: 2px solid #00ff88;
}

.detail-title {
    color: #00ff88;
    font-size: 1.1rem;
    margin-bottom: 8px;
    font-weight: 600;
}

.detail-text {
    color: #fff;
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.5;
}

/* California Rights */
.california-rights {
    margin-top: 25px;
    padding: 20px;
    background-color: #1a1a1a;
    border-radius: 8px;
    border-left: 3px solid #00ff88;
}

.california-text {
    color: #fff;
    font-size: 1rem;
    margin: 0;
    line-height: 1.5;
}

/* Contact Section */
.contact-text {
    margin: 0;
}

.contact-link {
    color: #00ff88;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: #fff;
}

/* Privacy Footer */
.privacy-footer {
    background-color: #111;
    padding: 40px 20px;
    border-top: 1px solid #333;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.footer-link {
    color: #666;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #00ff88;
}

.footer-link:visited {
    color: #666;
}

/* Responsive Design */
@media (max-width: 768px) {
    .privacy-title {
        font-size: 2.5rem;
    }
    
    .privacy-content {
        padding: 60px 20px;
    }
    
    .scope-section,
    .information-section,
    .usage-section,
    .sharing-section,
    .security-section,
    .contact-section {
        padding: 20px;
        margin-bottom: 30px;
    }
    
    .section-title {
        font-size: 1.3rem;
    }
    
    .info-item {
        padding: 15px;
    }
    
    .info-title {
        font-size: 1.1rem;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .privacy-title {
        font-size: 2rem;
    }
    
    .privacy-content {
        padding: 40px 15px;
    }
    
    .scope-section,
    .information-section,
    .usage-section,
    .sharing-section,
    .security-section,
    .contact-section {
        padding: 15px;
        margin-bottom: 25px;
    }
    
    .section-title {
        font-size: 1.2rem;
    }
    
    .intro-text {
        font-size: 1.1rem;
    }
    
    .info-item {
        padding: 12px;
    }
    
    .info-title {
        font-size: 1rem;
    }
    
    .detail-item {
        padding: 12px;
    }
}

/* Print Styles */
@media print {
    .header,
    .privacy-footer {
        display: none;
    }
    
    .privacy-hero {
        margin-top: 0;
        background: none;
        color: #000;
    }
    
    .privacy-content {
        background: #fff;
        color: #000;
        padding: 20px;
    }
    
    .scope-section,
    .information-section,
    .usage-section,
    .sharing-section,
    .security-section,
    .contact-section {
        background: #f8f9fa;
        border-left: 4px solid #333;
        color: #000;
    }
    
    .section-title {
        color: #333;
    }
    
    .info-item,
    .location-usage,
    .california-rights,
    .detail-item {
        background: #fff;
        border-left: 3px solid #333;
        color: #000;
    }
    
    .info-title,
    .sub-title,
    .detail-title {
        color: #333;
    }
}
