/* ================================
   LEGAL PAGES STYLES
   ================================ */

.legal-page {
    background: var(--dark-bg);
    color: var(--text-primary);
    min-height: 100vh;
    padding-top: 120px;
    padding-bottom: 60px;
}

.legal-header {
    text-align: center;
    margin-bottom: 60px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 107, 53, 0.2);
}

.legal-header h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    margin-bottom: 20px;
    font-family: 'Orbitron', sans-serif;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.legal-date {
    color: var(--text-secondary);
    font-size: 1rem;
    margin-bottom: 20px;
    font-style: italic;
}

.legal-intro {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

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

.legal-section {
    margin-bottom: 50px;
    padding: 30px;
    background: rgba(26, 26, 26, 0.6);
    border-radius: 15px;
    border: 1px solid rgba(255, 107, 53, 0.1);
}

.legal-section h2 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--primary-orange);
    font-family: 'Orbitron', sans-serif;
}

.legal-section h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin: 25px 0 15px 0;
    color: var(--text-primary);
}

.legal-section p {
    margin-bottom: 15px;
    line-height: 1.7;
    color: var(--text-secondary);
}

.legal-section ul {
    margin: 15px 0 15px 20px;
    color: var(--text-secondary);
}

.legal-section li {
    margin-bottom: 8px;
    line-height: 1.6;
    position: relative;
}

.legal-section li::before {
    content: '▶';
    color: var(--primary-orange);
    font-size: 0.8rem;
    position: absolute;
    left: -15px;
}

.contact-info {
    background: rgba(255, 107, 53, 0.1);
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid var(--primary-orange);
    margin: 20px 0;
}

.contact-info p {
    margin-bottom: 8px;
    color: var(--text-primary);
}

/* ================================
   COOKIE POLICY SPECIFIC STYLES
   ================================ */

.cookie-category {
    margin-bottom: 40px;
    background: rgba(10, 10, 10, 0.8);
    padding: 25px;
    border-radius: 12px;
    border: 1px solid rgba(255, 107, 53, 0.2);
}

.cookie-category h3 {
    color: var(--primary-orange);
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.cookie-table {
    display: grid;
    gap: 15px;
    margin-top: 20px;
}

.cookie-row {
    display: grid;
    grid-template-columns: 200px 1fr 120px;
    gap: 20px;
    padding: 15px;
    background: rgba(26, 26, 26, 0.8);
    border-radius: 8px;
    border: 1px solid rgba(255, 107, 53, 0.1);
}

.cookie-name {
    font-family: 'Courier New', monospace;
    color: var(--primary-orange);
    font-weight: 600;
    font-size: 0.9rem;
}

.cookie-purpose {
    color: var(--text-secondary);
    line-height: 1.4;
}

.cookie-duration {
    color: var(--text-primary);
    font-weight: 500;
    text-align: right;
}

.third-party-service {
    background: rgba(26, 26, 26, 0.6);
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    border-left: 3px solid var(--primary-orange);
}

.third-party-service h3 {
    color: var(--text-primary);
    margin-bottom: 10px;
}

.browser-instructions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.browser-item {
    background: rgba(26, 26, 26, 0.8);
    padding: 20px;
    border-radius: 10px;
    border: 1px solid rgba(255, 107, 53, 0.1);
}

.browser-item h4 {
    color: var(--primary-orange);
    margin-bottom: 10px;
}

.consent-notice {
    background: rgba(255, 107, 53, 0.1);
    padding: 20px;
    border-radius: 10px;
    border: 1px solid var(--primary-orange);
    margin: 25px 0;
}

.consent-notice h3 {
    color: var(--primary-orange);
    margin-bottom: 10px;
}

.cookie-preferences-link {
    text-align: center;
    margin-top: 30px;
}

/* ================================
   ABOUT PAGE SPECIFIC STYLES
   ================================ */

.about-page {
    background: var(--gradient-bg);
}

.about-hero {
    text-align: center;
    margin-bottom: 80px;
}

.about-hero h1 {
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 900;
    margin-bottom: 25px;
    font-family: 'Orbitron', sans-serif;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-subtitle {
    font-size: 1.5rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.about-section {
    margin-bottom: 100px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.about-section h2 {
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 50px;
    color: var(--primary-orange);
    font-family: 'Orbitron', sans-serif;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-content h2 {
    text-align: left;
    margin-bottom: 30px;
}

.about-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 30px;
}

.about-image {
    text-align: center;
}

.about-image img {
    max-width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(255, 107, 53, 0.2);
}

.mission-points {
    display: grid;
    gap: 25px;
    margin-top: 40px;
}

.mission-point {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: rgba(26, 26, 26, 0.8);
    border-radius: 15px;
    border: 1px solid rgba(255, 107, 53, 0.2);
}

.mission-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    flex-shrink: 0;
}

.mission-text h3 {
    color: var(--text-primary);
    margin-bottom: 5px;
    font-size: 1.2rem;
}

.mission-text p {
    color: var(--text-secondary);
    margin: 0;
    font-size: 0.95rem;
}

/* Story Section */
.story-section {
    background: rgba(26, 26, 26, 0.6);
    padding: 60px 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 107, 53, 0.2);
}

.story-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 25px;
    text-align: justify;
}

.timeline {
    margin-top: 50px;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--gradient-primary);
}

.timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
    position: relative;
}

.timeline-year {
    width: 100px;
    text-align: center;
    font-weight: 900;
    font-size: 1.1rem;
    color: var(--primary-orange);
    font-family: 'Orbitron', sans-serif;
    position: relative;
    z-index: 2;
    background: var(--dark-bg);
    padding: 10px;
    border-radius: 50px;
    border: 2px solid var(--primary-orange);
}

.timeline-content {
    margin-left: 40px;
    background: rgba(10, 10, 10, 0.8);
    padding: 20px;
    border-radius: 15px;
    border: 1px solid rgba(255, 107, 53, 0.1);
    flex: 1;
}

.timeline-content h3 {
    color: var(--text-primary);
    margin-bottom: 8px;
    font-size: 1.2rem;
}

.timeline-content p {
    color: var(--text-secondary);
    margin: 0;
    font-size: 0.95rem;
}

/* Values Section */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.value-card {
    text-align: center;
    padding: 40px 25px;
    background: rgba(26, 26, 26, 0.8);
    border-radius: 20px;
    border: 1px solid rgba(255, 107, 53, 0.2);
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-orange);
    box-shadow: 0 20px 40px rgba(255, 107, 53, 0.3);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    margin: 0 auto 20px;
}

.value-card h3 {
    color: var(--text-primary);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.value-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}



/* Statistics Section */
.stats-section {
    background: rgba(26, 26, 26, 0.6);
    padding: 60px 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 107, 53, 0.2);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 30px;
}

.stat-item {
    text-align: center;
    padding: 30px 20px;
    background: rgba(10, 10, 10, 0.8);
    border-radius: 15px;
    border: 1px solid rgba(255, 107, 53, 0.1);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary-orange);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary-orange);
    margin-bottom: 10px;
    font-family: 'Orbitron', sans-serif;
}

.stat-label {
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 0.95rem;
}

/* Technology Section */
.tech-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 40px;
    text-align: center;
}

.tech-features {
    display: grid;
    gap: 30px;
}

.tech-feature {
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 30px;
    background: rgba(26, 26, 26, 0.8);
    border-radius: 20px;
    border: 1px solid rgba(255, 107, 53, 0.2);
    transition: all 0.3s ease;
}

.tech-feature:hover {
    border-color: var(--primary-orange);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.2);
}

.tech-icon {
    flex-shrink: 0;
}

.tech-icon img {
    width: 80px;
    height: 80px;
    border-radius: 15px;
}

.tech-details h3 {
    color: var(--text-primary);
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.tech-details p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* CTA Section */
.cta-section {
    text-align: center;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(0, 212, 255, 0.05) 100%);
    padding: 60px 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 107, 53, 0.3);
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.cta-content p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ================================
   RESPONSIVE DESIGN
   ================================ */

@media (max-width: 768px) {
    .legal-page {
        padding-top: 100px;
    }
    
    .legal-section {
        margin-bottom: 30px;
        padding: 20px;
    }
    
    .cookie-row {
        grid-template-columns: 1fr;
        gap: 10px;
        text-align: center;
    }
    
    .cookie-duration {
        text-align: center;
    }
    
    .browser-instructions {
        grid-template-columns: 1fr;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .timeline::before {
        left: 25px;
    }
    
    .timeline-year {
        width: 50px;
        padding: 5px;
        font-size: 0.9rem;
    }
    
    .timeline-content {
        margin-left: 20px;
    }
    
    .tech-feature {
        flex-direction: column;
        text-align: center;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .legal-section {
        padding: 15px;
    }
    
    .about-section {
        margin-bottom: 60px;
    }
    
    .mission-point {
        flex-direction: column;
        text-align: center;
    }
    
    .timeline-item {
        flex-direction: column;
        text-align: center;
    }
    
    .timeline-content {
        margin-left: 0;
        margin-top: 20px;
    }
}