/* REVELATIONS PAGE STYLES */
.revelations-content {
    min-height: calc(100vh - 120px);
    background: #000;
    color: #00ff41;
}

/* BRIEFING HEADER */
.briefing-header {
    text-align: center;
    padding: 40px 20px;
    border-bottom: 2px solid #ffd700;
    margin-bottom: 40px;
    background: rgba(255, 215, 0, 0.02);
}

.classification-banner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding: 15px 30px;
    background: rgba(255, 0, 0, 0.1);
    border: 2px solid #ff0000;
    border-radius: 5px;
}

.classification-stamp {
    background: #ff0000;
    color: #fff;
    padding: 8px 16px;
    font-weight: bold;
    font-size: 14px;
    letter-spacing: 2px;
    transform: rotate(-5deg);
    box-shadow: 0 0 10px rgba(255, 0, 0, 0.5);
}

.document-id {
    font-size: 12px;
    color: #ff0000;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.briefing-title h1 {
    font-size: 48px;
    color: #ffd700;
    text-shadow: 0 0 20px #ffd700, 0 0 40px #ffd700;
    margin-bottom: 10px;
    letter-spacing: 4px;
    animation: titleGlow 3s ease-in-out infinite alternate;
}

@keyframes titleGlow {
    0% { text-shadow: 0 0 20px #ffd700, 0 0 40px #ffd700; }
    100% { text-shadow: 0 0 30px #ffd700, 0 0 60px #ffd700, 0 0 80px #ffd700; }
}

.briefing-title .subtitle {
    font-size: 20px;
    margin-bottom: 30px;
    letter-spacing: 2px;
}

.briefing-intro {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
    color: #ccc;
}

.briefing-intro p {
    margin-bottom: 15px;
    font-size: 18px;
}

/* ACCORDION STYLES */
.evidence-accordion {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.accordion-panel {
    margin-bottom: 20px;
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 8px;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
}

.accordion-panel:hover {
    border-color: #ffd700;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.2);
}

.accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    background: rgba(255, 215, 0, 0.05);
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
    user-select: none;
}

.accordion-header:hover {
    background: rgba(255, 215, 0, 0.1);
}

.accordion-header.active {
    background: rgba(255, 215, 0, 0.15);
    border-bottom-color: #ffd700;
}

.header-content {
    flex: 1;
}

.header-main {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 5px;
}

.panel-number {
    background: #ffd700;
    color: #000;
    padding: 4px 8px;
    font-size: 10px;
    font-weight: bold;
    letter-spacing: 1px;
    border-radius: 3px;
}

.panel-title {
    font-size: 16px;
    font-weight: bold;
    color: #ffd700;
    text-shadow: 0 0 10px #ffd700;
    letter-spacing: 1px;
}

.header-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.panel-subtitle {
    font-size: 12px;
    color: #888;
    font-style: italic;
	margin-right: 15px;
}

.confidence-badge {
    background: rgba(0, 255, 65, 0.2);
    color: #00ff41;
    padding: 2px 8px;
    font-size: 10px;
    border-radius: 10px;
    border: 1px solid #00ff41;
    font-weight: bold;
    letter-spacing: 1px;
}

.accordion-indicator {
    margin-left: 20px;
}

.indicator-symbol {
    font-size: 24px;
    font-weight: bold;
    color: #ffd700;
    transition: transform 0.3s ease;
    display: inline-block;
}

.accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
    background: rgba(0, 0, 0, 0.3);
}

.accordion-body.active {
    max-height: 10000px;
}

/* DOCUMENT CONTENT STYLES - Preserve from evidence files */
.accordion-content {
    padding: 30px;
}

.accordion-content .document-classification {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding: 15px;
    background: rgba(255, 0, 0, 0.1);
    border: 1px solid rgba(255, 0, 0, 0.3);
    border-radius: 5px;
}

.accordion-content .classification-stamp {
    background: #ff0000;
    color: #fff;
	margin-right:5px;
    padding: 5px 12px;
    font-weight: bold;
    font-size: 12px;
    letter-spacing: 2px;
    transform: rotate(-2deg);
}

.accordion-content .document-id {
    font-size: 10px;
    color: #ff0000;
    letter-spacing: 1px;
}

.accordion-content .document-title {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid rgba(255, 215, 0, 0.3);
}

.accordion-content .document-title h2 {
    font-size: 24px;
    color: #ffd700;
    text-shadow: 0 0 15px #ffd700;
    margin-bottom: 8px;
    letter-spacing: 2px;
}

.accordion-content .document-title .subtitle {
    font-size: 14px;
    font-style: italic;
}

.timeline-section {
    margin-bottom: 40px;
}

.timeline-section h3 {
    font-size: 20px;
    color: #ffd700;
    text-shadow: 0 0 10px #ffd700;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 215, 0, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.timeline-entry {
    display: flex;
    margin-bottom: 25px;
    padding: 20px;
    background: rgba(0, 255, 65, 0.02);
    border-left: 3px solid #00ff41;
    border-radius: 0 5px 5px 0;
    transition: all 0.3s ease;
}

.timeline-entry:hover {
    background: rgba(0, 255, 65, 0.05);
    border-left-color: #ffd700;
}

.timeline-entry.critical {
    background: rgba(255, 215, 0, 0.05);
    border-left-color: #ffd700;
}

.timeline-entry.critical:hover {
    background: rgba(255, 215, 0, 0.1);
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.2);
}

.date-marker {
    min-width: 100px;
    font-size: 16px;
    font-weight: bold;
    color: #ffd700;
    text-align: right;
    padding-right: 20px;
    border-right: 2px solid rgba(255, 215, 0, 0.3);
    margin-right: 20px;
}

.event-data {
    flex: 1;
}

.event-title {
    font-size: 18px;
    font-weight: bold;
    color: #00ff41;
    margin-bottom: 8px;
    text-shadow: 0 0 8px #00ff41;
}

.event-details {
    font-size: 16px;
    color: #ccc;
    line-height: 1.5;
    margin-bottom: 10px;
}

.significance {
    font-size: 14px;
    font-style: italic;
    padding: 10px;
    background: rgba(255, 215, 0, 0.05);
    border-radius: 5px;
    border-left: 2px solid #ffd700;
}

.anomaly-section {
    margin-top: 40px;
    padding: 25px;
    background: rgba(255, 0, 0, 0.05);
    border: 1px solid rgba(255, 0, 0, 0.2);
    border-radius: 8px;
}

.anomaly-section h3 {
    color: #ff0000;
    text-shadow: 0 0 10px #ff0000;
    border-bottom-color: rgba(255, 0, 0, 0.3);
}

.anomaly-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    padding: 15px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 5px;
}

.anomaly-flag {
    min-width: 150px;
    font-size: 13px;
    font-weight: bold;
    color: #ff0000;
    background: rgba(255, 0, 0, 0.1);
    padding: 5px 8px;
    border-radius: 3px;
    margin-right: 15px;
    text-align: center;
    letter-spacing: 1px;
}

.anomaly-text {
    font-size: 13px;
    color: #ccc;
    line-height: 1.4;
}

.document-footer {
    margin-top: 30px;
    padding: 20px;
    background: rgba(0, 0, 0, 0.5);
    border-top: 2px solid rgba(255, 215, 0, 0.3);
    text-align: center;
}

.analysis-confidence {
    font-size: 16px;
    font-weight: bold;
    color: #00ff41;
    text-shadow: 0 0 10px #00ff41;
    margin-bottom: 10px;
}

.next-analysis {
    font-size: 12px;
    color: #888;
    font-style: italic;
}

/* BRIEFING FOOTER */
.briefing-footer {
    margin-top: 60px;
    padding: 30px 20px;
    border-top: 2px solid rgba(255, 215, 0, 0.3);
    text-align: center;
}

.footer-classification {
    max-width: 800px;
    margin: 0 auto;
}

.classification-warning {
    font-size: 12px;
    color: #ff0000;
    font-weight: bold;
    margin-bottom: 15px;
    padding: 15px;
    background: rgba(255, 0, 0, 0.1);
    border: 1px solid rgba(255, 0, 0, 0.3);
    border-radius: 5px;
    letter-spacing: 1px;
}

.footer-timestamp {
    font-size: 10px;
    color: #666;
    font-family: 'Courier New', monospace;
}

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
    .briefing-title h1 {
        font-size: 32px;
    }
    
    .classification-banner {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .accordion-header {
        padding: 15px;
    }
    
    .header-main {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .header-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
    
    .timeline-entry {
        flex-direction: column;
        padding: 15px;
    }
    
    .date-marker {
        min-width: auto;
        text-align: left;
        padding-right: 0;
        border-right: none;
        border-bottom: 1px solid rgba(255, 215, 0, 0.3);
        padding-bottom: 10px;
        margin-bottom: 15px;
        margin-right: 0;
    }
    
    .accordion-content {
        padding: 20px;
    }
    
    .accordion-content .document-title h2 {
        font-size: 20px;
    }
    
    .anomaly-item {
        flex-direction: column;
    }
    
    .anomaly-flag {
        min-width: auto;
        margin-right: 0;
        margin-bottom: 10px;
    }
}