/* Legal Pages Styling */
.legal-page {
    min-height: 100vh;
    padding: 120px 0 60px;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a0a0a 50%, #0a0a0a 100%);
    color: #e0e0e0;
}

.legal-header {
    text-align: center;
    margin-bottom: 60px;
    padding: 40px 20px;
    background: linear-gradient(135deg, rgba(139, 0, 0, 0.1) 0%, rgba(75, 0, 130, 0.1) 100%);
    border-radius: 20px;
    border: 1px solid rgba(139, 0, 0, 0.3);
}

.legal-header h1 {
    font-family: 'Cinzel', serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: #ff4444;
    margin-bottom: 20px;
    text-shadow: 0 0 20px rgba(255, 68, 68, 0.5);
}

.legal-subtitle {
    font-size: 1.3rem;
    color: #b0b0b0;
    font-weight: 300;
}

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

.legal-section {
    background: rgba(20, 20, 20, 0.8);
    border: 1px solid rgba(139, 0, 0, 0.3);
    border-radius: 15px;
    padding: 40px;
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
}

.legal-section h2 {
    font-family: 'Cinzel', serif;
    font-size: 2rem;
    color: #ff6666;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(139, 0, 0, 0.4);
}

.legal-section p {
    line-height: 1.8;
    margin-bottom: 15px;
    color: #d0d0d0;
}

.legal-section a {
    color: #ff6666;
    text-decoration: none;
    border-bottom: 1px dotted #ff6666;
    transition: all 0.3s ease;
}

.legal-section a:hover {
    color: #ff8888;
    border-bottom-color: #ff8888;
}

.info-block {
    background: rgba(0, 0, 0, 0.3);
    padding: 25px;
    border-radius: 10px;
    border-left: 4px solid #ff4444;
}

.info-block p {
    margin: 10px 0;
}

.info-block strong {
    color: #ff6666;
    display: inline-block;
    min-width: 180px;
}

/* Contact Page Specific */
.contact-page {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a0a1a 50%, #0a0a0a 100%);
}

.contact-grid {
    display: grid;
    gap: 40px;
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.contact-card {
    background: rgba(20, 20, 20, 0.9);
    border: 2px solid rgba(139, 0, 0, 0.3);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.contact-card:hover {
    border-color: #ff4444;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 68, 68, 0.2);
}

.contact-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(139, 0, 0, 0.3) 0%, rgba(75, 0, 130, 0.3) 100%);
    border-radius: 50%;
    font-size: 2.5rem;
    color: #ff6666;
}

.contact-card h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    color: #ff6666;
    margin-bottom: 15px;
}

.contact-card p {
    color: #b0b0b0;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.contact-link {
    display: inline-block;
    color: #ff8888;
    text-decoration: none;
    font-weight: 500;
    padding: 10px 20px;
    background: rgba(139, 0, 0, 0.2);
    border-radius: 8px;
    border: 1px solid rgba(139, 0, 0, 0.4);
    transition: all 0.3s ease;
}

.contact-link:hover {
    background: rgba(139, 0, 0, 0.4);
    border-color: #ff4444;
    transform: scale(1.05);
}

.social-section {
    background: rgba(20, 20, 20, 0.8);
    border: 1px solid rgba(139, 0, 0, 0.3);
    border-radius: 15px;
    padding: 40px;
    text-align: center;
}

.social-section h2 {
    font-family: 'Cinzel', serif;
    font-size: 2rem;
    color: #ff6666;
    margin-bottom: 15px;
}

.social-section p {
    color: #b0b0b0;
    margin-bottom: 30px;
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
}

.social-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 20px;
    background: rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(139, 0, 0, 0.3);
    border-radius: 12px;
    color: #e0e0e0;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-card:hover {
    border-color: #ff4444;
    background: rgba(139, 0, 0, 0.2);
    transform: translateY(-3px);
}

.social-card i {
    font-size: 2.5rem;
    color: #ff6666;
}

.response-info {
    background: rgba(20, 20, 20, 0.8);
    border: 1px solid rgba(139, 0, 0, 0.3);
    border-radius: 15px;
    padding: 30px;
}

.response-info h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    color: #ff6666;
    margin-bottom: 20px;
}

.response-info ul {
    list-style: none;
    padding: 0;
}

.response-info li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(139, 0, 0, 0.2);
    color: #d0d0d0;
}

.response-info li:last-child {
    border-bottom: none;
}

/* About Page Specific */
.about-page {
    background: linear-gradient(135deg, #0a0a0a 0%, #0a1a0a 25%, #1a0a1a 75%, #0a0a0a 100%);
}

.about-content {
    max-width: 1000px;
    margin: 0 auto;
}

.about-section {
    position: relative;
    padding-left: 80px;
}

.section-icon {
    position: absolute;
    left: 0;
    top: 40px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(139, 0, 0, 0.4) 0%, rgba(75, 0, 130, 0.4) 100%);
    border-radius: 50%;
    font-size: 1.8rem;
    color: #ff6666;
}

.vision-section, .mission-section, .story-section {
    margin-bottom: 60px;
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.mission-card {
    background: rgba(0, 0, 0, 0.4);
    border: 2px solid rgba(139, 0, 0, 0.3);
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
}

.mission-card:hover {
    border-color: #ff4444;
    transform: translateY(-5px);
}

.mission-card i {
    font-size: 2.5rem;
    color: #ff6666;
    margin-bottom: 15px;
}

.mission-card h3 {
    font-family: 'Cinzel', serif;
    color: #ff8888;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.timeline {
    position: relative;
    padding: 30px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, #ff4444 0%, #8b008b 100%);
}

.timeline-item {
    position: relative;
    padding-left: 60px;
    margin-bottom: 40px;
}

.timeline-year {
    position: absolute;
    left: -15px;
    top: 0;
    width: 70px;
    height: 40px;
    background: linear-gradient(135deg, #8b0000 0%, #4b0082 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #fff;
    font-size: 1.1rem;
}

.timeline-content h3 {
    font-family: 'Cinzel', serif;
    color: #ff6666;
    margin-bottom: 10px;
    font-size: 1.4rem;
}

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

.tech-card {
    background: rgba(0, 0, 0, 0.4);
    border: 2px solid rgba(139, 0, 0, 0.3);
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
}

.tech-card:hover {
    border-color: #ff4444;
    background: rgba(139, 0, 0, 0.1);
}

.tech-card i {
    font-size: 3rem;
    color: #ff6666;
    margin-bottom: 15px;
}

.tech-card h4 {
    font-family: 'Cinzel', serif;
    color: #ff8888;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.values-list {
    margin-top: 30px;
}

.value-item {
    position: relative;
    padding: 30px 30px 30px 100px;
    background: rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(139, 0, 0, 0.3);
    border-radius: 12px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.value-item:hover {
    border-color: #ff4444;
    background: rgba(139, 0, 0, 0.1);
}

.value-number {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-family: 'Cinzel', serif;
    font-size: 3rem;
    font-weight: 700;
    color: rgba(255, 68, 68, 0.3);
}

.value-item h3 {
    font-family: 'Cinzel', serif;
    color: #ff6666;
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.team-intro {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 40px;
    color: #b0b0b0;
}

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

.stat-card {
    background: rgba(0, 0, 0, 0.4);
    border: 2px solid rgba(139, 0, 0, 0.3);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.stat-card:hover {
    border-color: #ff4444;
    transform: scale(1.05);
}

.stat-number {
    font-family: 'Cinzel', serif;
    font-size: 3rem;
    font-weight: 700;
    color: #ff6666;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.1rem;
    color: #b0b0b0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.join-section {
    padding-left: 0;
    margin-top: 60px;
}

.join-box {
    background: linear-gradient(135deg, rgba(139, 0, 0, 0.2) 0%, rgba(75, 0, 130, 0.2) 100%);
    border: 2px solid rgba(139, 0, 0, 0.4);
    border-radius: 20px;
    padding: 60px;
    text-align: center;
}

.join-box h2 {
    font-family: 'Cinzel', serif;
    font-size: 2.5rem;
    color: #ff6666;
    margin-bottom: 20px;
}

.join-box p {
    font-size: 1.2rem;
    color: #d0d0d0;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

/* Footer Minimal */
.footer-minimal {
    background: rgba(10, 10, 10, 0.95);
    border-top: 2px solid rgba(139, 0, 0, 0.3);
    padding: 30px 0;
    margin-top: 60px;
}

.footer-links-row {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-links-row a {
    color: #b0b0b0;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.footer-links-row a:hover {
    color: #ff6666;
}

.footer-links-row .separator {
    color: rgba(139, 0, 0, 0.5);
}

.footer-copyright {
    text-align: center;
    color: #808080;
    font-size: 0.9rem;
}

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

    .legal-subtitle {
        font-size: 1.1rem;
    }

    .legal-section {
        padding: 30px 20px;
    }

    .about-section {
        padding-left: 0;
    }

    .section-icon {
        position: relative;
        left: auto;
        top: auto;
        margin: 0 auto 20px;
    }

    .timeline::before {
        left: 30px;
    }

    .timeline-item {
        padding-left: 80px;
    }

    .timeline-year {
        left: 5px;
    }

    .value-item {
        padding: 30px 20px;
    }

    .value-number {
        position: relative;
        left: auto;
        top: auto;
        transform: none;
        display: block;
        margin-bottom: 15px;
    }

    .join-box {
        padding: 40px 20px;
    }

    .join-box h2 {
        font-size: 2rem;
    }

    .join-buttons {
        flex-direction: column;
    }

    .footer-links-row {
        flex-direction: column;
        gap: 10px;
    }

    .footer-links-row .separator {
        display: none;
    }
}
