* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Courier New', monospace;
    background: #000;
    color: #fff;
    line-height: 1.8;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 30px;
}

.site-header {
    background: #000;
    border-bottom: 2px solid #fff;
    padding: 40px 0;
}

.header-content {
    margin-bottom: 30px;
}

.site-logo {
    font-size: 48px;
    font-weight: 700;
    letter-spacing: 8px;
    margin-bottom: 10px;
}

.site-tagline {
    font-size: 14px;
    letter-spacing: 3px;
    color: #999;
    text-transform: uppercase;
}

.main-nav {
    display: flex;
    gap: 40px;
    border-top: 1px solid #333;
    padding-top: 20px;
}

.main-nav a {
    color: #fff;
    text-decoration: none;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: color 0.3s;
}

.main-nav a:hover {
    color: #666;
}

.hero-section {
    padding: 80px 0;
    border-bottom: 2px solid #fff;
}

.hero-content {
    display: flex;
    gap: 60px;
    align-items: center;
}

.hero-text {
    flex: 1;
}

.hero-image {
    flex: 0 0 400px;
}

.hero-image img {
    width: 100%;
    height: auto;
    border: 2px solid #fff;
    filter: grayscale(100%) contrast(120%);
}

.hero-text h2 {
    font-size: 36px;
    font-weight: 700;
    letter-spacing: 4px;
    margin-bottom: 20px;
}

.hero-text p {
    font-size: 16px;
    color: #999;
    max-width: 700px;
    letter-spacing: 1px;
}

.reports-section {
    padding: 80px 0;
}

.section-heading {
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 4px;
    margin-bottom: 60px;
    border-bottom: 1px solid #333;
    padding-bottom: 20px;
}

.reports-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.report-item {
    border: 1px solid #333;
    padding: 0;
    transition: all 0.3s;
    display: flex;
    gap: 0;
}

.report-item:hover {
    border-color: #fff;
    background: #0a0a0a;
}

.report-image {
    flex: 0 0 300px;
    overflow: hidden;
}

.report-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    filter: grayscale(100%) contrast(120%);
    transition: filter 0.3s;
}

.report-item:hover .report-image img {
    filter: grayscale(80%) contrast(130%);
}

.report-content {
    flex: 1;
    padding: 30px;
}

.report-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #222;
}

.report-date {
    font-size: 12px;
    color: #666;
    letter-spacing: 2px;
}

.report-status {
    font-size: 11px;
    padding: 5px 12px;
    border: 1px solid;
    letter-spacing: 2px;
    font-weight: 700;
}

.report-status.critical {
    border-color: #fff;
    color: #fff;
}

.report-status.high {
    border-color: #999;
    color: #999;
}

.report-status.medium {
    border-color: #666;
    color: #666;
}

.report-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.report-excerpt {
    font-size: 14px;
    color: #999;
    line-height: 1.8;
    margin-bottom: 20px;
}

.report-excerpt strong {
    color: #fff;
    font-weight: 700;
}

.report-link {
    color: #fff;
    text-decoration: none;
    font-size: 13px;
    letter-spacing: 2px;
    border-bottom: 1px solid #fff;
    padding-bottom: 2px;
    transition: all 0.3s;
}

.report-link:hover {
    color: #666;
    border-color: #666;
}

.site-footer {
    background: #000;
    border-top: 2px solid #fff;
    padding: 40px 0;
    margin-top: 80px;
    text-align: center;
}

.site-footer p {
    font-size: 12px;
    color: #666;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.footer-note {
    font-size: 11px;
    color: #444;
}

/* Fix for reports section to prevent conflicts */
.reports-section .report-item {
    display: flex;
    background: rgba(255,255,255,0.02);
    border: 1px solid #222;
    margin-bottom: 40px;
    min-height: 200px;
}

.reports-section .report-image {
    width: 300px;
    flex-shrink: 0;
}

.reports-section .report-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    filter: grayscale(80%) contrast(130%);
}

.reports-section .report-content {
    flex: 1;
    padding: 30px;
}

.reports-section .report-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #222;
}

.reports-section .report-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    letter-spacing: 1px;
    color: #fff;
}

.reports-section .report-excerpt {
    font-size: 14px;
    color: #999;
    line-height: 1.8;
    margin-bottom: 20px;
}

.reports-section .report-excerpt strong {
    color: #fff;
    font-weight: 700;
}

.reports-section .report-link {
    color: #fff;
    text-decoration: none;
    font-size: 13px;
    letter-spacing: 2px;
    border-bottom: 1px solid #fff;
    padding-bottom: 2px;
    transition: all 0.3s;
}

.reports-section .report-link:hover {
    color: #666;
    border-color: #666;
}

/* Styles for report items without images */
.reports-section .report-item-no-image {
    display: block;
    background: rgba(255,255,255,0.02);
    border: 1px solid #222;
    margin-bottom: 40px;
    min-height: auto;
}

.reports-section .report-item-no-image .report-content {
    padding: 30px;
    width: 100%;
}

.reports-section .report-item-no-image .report-title {
    font-size: 20px;
    margin-bottom: 15px;
}

.reports-section .report-item-no-image .report-excerpt {
    font-size: 14px;
    margin-bottom: 20px;
}

/* Intelligence Overview Styles */
.intelligence-overview {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
    padding: 60px 0;
    border-top: 1px solid #333;
    margin-top: 60px;
}

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

.intel-block {
    background: rgba(255,255,255,0.02);
    border: 1px solid #222;
    padding: 25px;
    border-radius: 0;
    position: relative;
    overflow: hidden;
}

.intel-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: #fff;
}

.intel-block h3 {
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 15px;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding-left: 15px;
}

.intel-block p {
    color: #bbb;
    font-size: 13px;
    line-height: 1.7;
    margin-bottom: 15px;
    text-align: left;
    padding-left: 15px;
}

.intel-block strong {
    color: #fff;
    font-weight: 600;
}

.intel-block-full {
    background: rgba(255,255,255,0.03);
    border: 1px solid #333;
    padding: 30px;
    margin-bottom: 30px;
    border-radius: 0;
    position: relative;
}

.intel-block-full::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: #fff;
}

.intel-block-full h3 {
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-align: center;
    padding-top: 10px;
}

.intel-block-full p {
    color: #bbb;
    font-size: 13px;
    line-height: 1.7;
    margin-bottom: 15px;
    text-align: left;
}

.intel-block-full strong {
    color: #fff;
    font-weight: 600;
}

.methodology-section {
    background: rgba(255,255,255,0.02);
    border: 1px solid #222;
    padding: 25px;
    margin-bottom: 25px;
    border-radius: 0;
    position: relative;
}

.methodology-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 3px;
    height: 100%;
    background: #666;
}

.methodology-section h3 {
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 15px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.methodology-section p {
    color: #aaa;
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 12px;
    text-align: left;
}

.methodology-section strong {
    color: #fff;
    font-weight: 600;
}

.compliance-section {
    background: rgba(255,255,255,0.04);
    border: 1px solid #444;
    padding: 25px;
    border-radius: 0;
    text-align: left;
    position: relative;
}

.compliance-section::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: #666;
}

.compliance-section h3 {
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 15px;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-align: center;
}

.compliance-section p {
    color: #999;
    font-size: 12px;
    line-height: 1.6;
    margin-bottom: 12px;
    text-align: left;
}

.compliance-section strong {
    color: #fff;
    font-weight: 600;
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    .site-logo {
        font-size: 32px;
        letter-spacing: 4px;
    }
    
    .hero-content {
        flex-direction: column;
        gap: 30px;
    }
    
    .hero-image {
        flex: none;
        width: 100%;
    }
    
    .hero-text h2 {
        font-size: 28px;
    }
    
    .main-nav {
        gap: 20px;
    }
    
    .report-item {
        flex-direction: column;
    }
    
    .report-image {
        flex: none;
    }
    
    .report-image img {
        height: 250px;
    }
}
