/* Audit Page Styles */
.audit-section {
    padding: 40px 0;
    max-width: 1200px;
    margin: 0 auto;
}

.audit-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.audit-card {
    background: rgba(10, 10, 32, 0.7);
    border: 1px solid rgba(0, 198, 255, 0.3);
    border-radius: 15px;
    padding: 25px;
    transition: all 0.3s ease;
}

.audit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 30px rgba(0, 198, 255, 0.3);
}

.audit-logo {
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 198, 255, 0.2);
}

.audit-logo img {
    width: 80%;
    height: auto;
    /* Removemos el filtro invert */
    filter: drop-shadow(0 0 8px rgba(0, 198, 255, 0.5));
    transition: all 0.3s ease;
}

.audit-card:hover .audit-logo {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(0, 198, 255, 0.4);
    transform: scale(1.05);
}

.audit-card:hover .audit-logo img {
    /* Removemos el filtro invert en el hover también */
    filter: drop-shadow(0 0 12px rgba(0, 198, 255, 0.8));
}

.audit-content {
    text-align: center;
}

.audit-status {
    margin: 15px 0;
    padding: 10px;
    border-radius: 8px;
}

.audit-status.completed {
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid rgba(0, 255, 136, 0.3);
}

.audit-status.in-progress {
    background: rgba(255, 170, 0, 0.1);
    border: 1px solid rgba(255, 170, 0, 0.3);
}

.status-badge {
    font-size: 0.9rem;
    font-weight: 600;
    padding: 5px 10px;
    border-radius: 20px;
}

.completed .status-badge {
    background: rgba(0, 255, 136, 0.2);
    color: #00ff88;
}

.in-progress .status-badge {
    background: rgba(255, 170, 0, 0.2);
    color: #ffaa00;
}

.audit-score {
    margin: 20px 0;
    padding: 15px;
    background: rgba(0, 198, 255, 0.1);
    border-radius: 10px;
}

.score-value {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    color: #00ffff;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}

/* Security Features */
.security-features {
    margin: 60px 0;
}

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

.feature-card {
    background: rgba(10, 10, 32, 0.6);
    border: 1px solid rgba(0, 198, 255, 0.2);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 20px rgba(0, 198, 255, 0.2);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #00ffff;
}

/* FAQ Page Styles */
.faq-section {
    padding: 40px 0;
    max-width: 900px;
    margin: 0 auto;
}

.faq-category {
    background: rgba(10, 10, 32, 0.4);
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 30px;
}

.faq-category h2 {
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(0, 198, 255, 0.2);
}

.faq-items {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: rgba(10, 10, 32, 0.6);
    border: 1px solid rgba(0, 198, 255, 0.2);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    margin-bottom: 15px;
}

.faq-question {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background: rgba(0, 198, 255, 0.05);
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(0, 198, 255, 0.1);
}

.faq-question h3 {
    margin: 0;
    font-size: 1.1rem;
    color: #fff;
}

.toggle-icon {
    font-size: 1.5rem;
    color: #00ffff;
    transition: transform 0.3s ease;
}

.faq-item.active .toggle-icon {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background: rgba(0, 0, 0, 0.2);
}

.faq-item.active .faq-answer {
    padding: 20px;
    max-height: 1000px;
    animation: slideDown 0.3s ease forwards;
}

.faq-answer ul {
    list-style: none;
    padding: 0;
    margin: 15px 0;
}

.faq-answer ul li {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.faq-answer ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #00ffff;
}

/* Whitepaper Styles */
.whitepaper {
    padding: 60px 0;
    max-width: 1000px;
    margin: 0 auto;
}

.whitepaper-section {
    padding-top: 40px;
    margin-bottom: 50px;
}

.content-box {
    background: rgba(10, 10, 32, 0.6);
    border: 1px solid rgba(0, 198, 255, 0.2);
    border-radius: 12px;
    padding: 30px;
    margin: 20px 0;
}

.code-block {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(0, 198, 255, 0.2);
    border-radius: 8px;
    padding: 20px;
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    color: #00ffff;
    overflow-x: auto;
}

.tokenomics-chart {
    width: 100%;
    height: 400px;
    margin: 30px 0;
    position: relative;
}

.tech-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    overflow: hidden;
}

.tech-table th, .tech-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid rgba(0, 198, 255, 0.2);
}

.tech-table th {
    background: rgba(0, 198, 255, 0.1);
    color: #00ffff;
    font-family: 'Orbitron', sans-serif;
    font-weight: 600;
}

.tech-table tr:hover {
    background: rgba(0, 198, 255, 0.05);
}

.distribution-details ul, .tax-details ul {
    list-style: none;
    padding: 0;
}

.distribution-details li, .tax-details li {
    margin-bottom: 15px;
    padding: 12px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.distribution-details li::before {
    content: '•';
    color: #00ffff;
    margin-right: 10px;
}

/* Timeline Styles */
.timeline-container {
    position: relative;
    padding: 40px 0;
}

.timeline-item {
    position: relative;
    padding-left: 50px;
    margin-bottom: 40px;
    background: rgba(10, 10, 32, 0.6);
    border: 1px solid rgba(0, 198, 255, 0.2);
    border-radius: 12px;
    padding: 25px;
    transition: all 0.3s ease;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -10px;
    top: 50%;
    width: 20px;
    height: 20px;
    background: linear-gradient(45deg, #00ffff, #b490ff);
    border-radius: 50%;
    transform: translateY(-50%);
}

.timeline-date {
    font-family: 'Orbitron', sans-serif;
    color: #00ffff;
    font-size: 1.2rem;
    margin-bottom: 15px;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}

.timeline-content {
    padding: 20px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
}

.timeline-content h3 {
    color: #b490ff;
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.timeline-content ul {
    list-style: none;
    padding: 0;
    margin: 15px 0;
}

.timeline-content ul li {
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.timeline-content ul li::before {
    content: '►';
    position: absolute;
    left: 0;
    color: #00ffff;
    font-size: 0.8rem;
}

/* Legal Pages Styles */
.legal-section {
    padding: 40px 0;
    max-width: 1000px;
    margin: 0 auto;
}

.legal-content {
    background: rgba(10, 10, 32, 0.6);
    border: 1px solid rgba(0, 198, 255, 0.2);
    border-radius: 12px;
    padding: 30px;
    margin: 20px 0;
}

.legal-section h2 {
    color: #00ffff;
    margin: 30px 0 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(0, 198, 255, 0.2);
}

.legal-section h3 {
    color: #b490ff;
    margin: 25px 0 15px;
}

.legal-section p {
    margin-bottom: 15px;
    line-height: 1.6;
}

.legal-section ul, .legal-section ol {
    margin: 15px 0;
    padding-left: 20px;
}

.legal-section li {
    margin-bottom: 10px;
    position: relative;
}

.legal-section .date-updated {
    color: #00ffff;
    font-family: 'Orbitron', sans-serif;
    margin-bottom: 30px;
    font-size: 0.9rem;
}

/* Animations */
@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Styles */
@media (max-width: 768px) {
    .audit-grid {
        grid-template-columns: 1fr;
    }

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

    .whitepaper {
        padding: 40px 20px;
    }

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

    .timeline-item::before {
        left: -5px;
        width: 15px;
        height: 15px;
    }

    .tech-table {
        display: block;
        overflow-x: auto;
    }

    .distribution-details li {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .faq-category {
        padding: 20px;
    }

    .timeline-date {
        font-size: 1rem;
    }

    .timeline-content h3 {
        font-size: 1.2rem;
    }
}

/* Estilos específicos para header en páginas estáticas */
.static-page-header .nav-links {
    justify-content: center;
    flex: 1;
    margin: 0 auto;
}

.static-page-header .logo {
    margin-right: 20px;
}

/* Estilos para páginas estáticas */
.static-page-header + main {
    margin-top: 80px;
    padding-top: 40px;
}
