* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    background: #000000;
    color: #ffffff;
    line-height: 1.6;
    font-size: 15px;
    padding: 0;
    min-height: 100vh;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 30px;
}

.main-header {
    background: #000000;
    padding: 50px 0 40px;
    text-align: left;
    border-bottom: 1px solid #1a1a1a;
    margin-bottom: 0;
}

.header-content {
    position: relative;
}

.warning-badge {
    display: inline-block;
    background: #ffffff;
    color: #000000;
    padding: 6px 14px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
    border-radius: 2px;
}

.main-header h1 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 10px;
    letter-spacing: -1px;
    color: #ffffff;
    line-height: 1.2;
}

.alias {
    font-size: 16px;
    color: #cccccc;
    margin-bottom: 8px;
    font-weight: 500;
}

.subtitle {
    font-size: 13px;
    color: #999999;
    margin-bottom: 30px;
}

.header-stats {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 11px;
    color: #999999;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.main-nav {
    position: sticky;
    top: 0;
    background: #000000;
    border-bottom: 1px solid #1a1a1a;
    z-index: 1000;
    margin-bottom: 0;
    backdrop-filter: blur(10px);
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: #ffffff;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 0;
    flex-wrap: wrap;
    padding: 0;
}

.nav-link {
    color: #cccccc;
    text-decoration: none;
    padding: 18px 20px;
    font-size: 13px;
    font-weight: 500;
    display: inline-block;
    transition: all 0.2s;
    border-bottom: 2px solid transparent;
}

.nav-link:hover {
    color: #ffffff;
    background: #0a0a0a;
    border-bottom-color: #ffffff;
}

.nav-link.active {
    color: #ffffff;
    background: #0a0a0a;
    border-bottom-color: #ffffff;
}

.section {
    padding: 60px 0;
    border-bottom: 1px solid #0a0a0a;
}

.alt-section {
    background: #050505;
    padding: 60px 30px;
    margin: 0 -30px;
}

.section-header {
    text-align: left;
    margin-bottom: 40px;
}

.section-badge {
    display: inline-block;
    background: #ffffff;
    color: #000000;
    padding: 5px 12px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 16px;
    border-radius: 2px;
}

.section-header h2 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 0;
    color: #ffffff;
    letter-spacing: -0.5px;
}

.alert-box {
    border-left: 3px solid #ffffff;
    padding: 25px;
    margin-bottom: 30px;
    background: #0a0a0a;
    border-radius: 0;
}

.alert-box.warning {
    border-left-color: #ffffff;
}

.alert-box.danger {
    border-left-color: #ffffff;
}

.alert-content h3 {
    font-size: 18px;
    margin-bottom: 12px;
    color: #ffffff;
    font-weight: 700;
}

.alert-content p {
    color: #cccccc;
    margin-bottom: 12px;
    line-height: 1.8;
    font-size: 14px;
}

.alert-content p:last-child {
    margin-bottom: 0;
}

.alert-content strong {
    color: #ffffff;
    font-weight: 700;
}

.behavior-list {
    list-style: none;
    margin-top: 16px;
}

.behavior-list li {
    padding: 10px 0;
    padding-left: 24px;
    position: relative;
    color: #cccccc;
    border-bottom: 1px solid #1a1a1a;
    font-size: 14px;
}

.behavior-list li:last-child {
    border-bottom: none;
}

.behavior-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #ffffff;
    font-weight: bold;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.info-card {
    background: #0a0a0a;
    border: 1px solid #1a1a1a;
    padding: 25px;
    margin-bottom: 0;
    transition: all 0.3s;
}

.info-card:hover {
    border-color: #333333;
    background: #0f0f0f;
}

.info-card.highlight {
    border-color: #ffffff;
    background: #050505;
}

.info-card.large {
    grid-column: span 2;
}

.info-card h3,
.info-card h4 {
    font-size: 16px;
    margin-bottom: 16px;
    color: #ffffff;
    font-weight: 700;
    border-bottom: 1px solid #1a1a1a;
    padding-bottom: 12px;
}

.card-value {
    font-size: 15px;
    color: #ffffff;
    font-weight: 500;
    display: block;
    margin-bottom: 8px;
    font-family: 'Courier New', Courier, monospace;
}

.card-sub {
    font-size: 13px;
    color: #999999;
    display: block;
    margin-bottom: 6px;
    line-height: 1.6;
}

.card-sub.small {
    font-size: 12px;
    color: #666666;
}

.code {
    font-family: 'Courier New', Courier, monospace;
    background: #000000;
    padding: 3px 6px;
    font-size: 13px;
    color: #ffffff;
    border: 1px solid #1a1a1a;
}

.alias-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 12px;
}

.tag {
    display: inline-block;
    background: #000000;
    color: #ffffff;
    padding: 6px 12px;
    font-size: 12px;
    border: 1px solid #1a1a1a;
    border-radius: 2px;
}

.email-grid {
    display: block;
    margin-top: 16px;
}

.email-item {
    display: block;
    padding: 12px 0;
    border-bottom: 1px solid #1a1a1a;
    font-size: 13px;
}

.email-item:last-child {
    border-bottom: none;
}

.email-label {
    font-size: 11px;
    color: #666666;
    text-transform: uppercase;
    font-weight: 600;
    display: inline-block;
    min-width: 90px;
    letter-spacing: 0.5px;
}

.email-value {
    color: #ffffff;
    word-break: break-all;
    font-family: 'Courier New', Courier, monospace;
    font-size: 13px;
}

.email-note {
    font-size: 11px;
    color: #666666;
    font-style: italic;
    display: block;
    margin-top: 6px;
    margin-left: 0;
}

.employment-card {
    background: #0a0a0a;
    border: 1px solid #1a1a1a;
    padding: 30px;
    margin-bottom: 0;
}

.employment-header {
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid #1a1a1a;
}

.employment-header h3 {
    font-size: 20px;
    margin: 0;
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 6px;
}

.employment-location {
    color: #999999;
    font-size: 13px;
    margin-top: 4px;
}

.employment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.employment-item {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 15px;
    background: #000000;
    border: 1px solid #1a1a1a;
    border-radius: 2px;
}

.employment-item.full-width {
    grid-column: 1 / -1;
    margin-top: 10px;
    padding-top: 20px;
    border-top: 1px solid #1a1a1a;
}

.employment-label {
    font-size: 11px;
    color: #666666;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.employment-value {
    font-size: 14px;
    color: #ffffff;
    font-family: 'Courier New', Courier, monospace;
}

.criminal-records {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 30px;
}

.criminal-card {
    background: #0a0a0a;
    border: 1px solid #1a1a1a;
    border-left: 3px solid #ffffff;
    padding: 30px;
}

.criminal-header {
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid #1a1a1a;
}

.criminal-header h3 {
    font-size: 20px;
    margin: 0;
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 6px;
}

.criminal-type {
    color: #999999;
    font-size: 13px;
    margin-top: 4px;
}

.criminal-details {
    display: block;
}

.detail-row {
    display: flex;
    gap: 20px;
    padding: 12px 0;
    border-bottom: 1px solid #1a1a1a;
}

.detail-row:last-child {
    border-bottom: none;
}

.detail-label {
    font-weight: 600;
    color: #999999;
    text-transform: uppercase;
    font-size: 11px;
    min-width: 120px;
    letter-spacing: 0.5px;
}

.detail-value {
    color: #ffffff;
    font-size: 14px;
    font-family: 'Courier New', Courier, monospace;
    flex: 1;
}

.social-grid {
    display: block;
    margin-top: 16px;
}

.social-item {
    display: grid;
    grid-template-columns: 100px 1fr auto;
    gap: 16px;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #1a1a1a;
    font-size: 13px;
}

.social-item:last-child {
    border-bottom: none;
}

.social-platform {
    font-weight: 600;
    color: #ffffff;
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: 0.5px;
}

.social-handle {
    color: #ffffff;
    word-break: break-all;
    font-family: 'Courier New', Courier, monospace;
}

.social-status {
    padding: 4px 10px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    border: 1px solid #1a1a1a;
    border-radius: 2px;
}

.social-status.active {
    background: #000000;
    color: #ffffff;
    border-color: #ffffff;
}

.social-status.inactive {
    background: #0a0a0a;
    color: #666666;
    border-color: #333333;
}

.social-status.unknown {
    background: #0a0a0a;
    color: #999999;
    border-color: #333333;
}

.external-link {
    color: #ffffff;
    text-decoration: underline;
    font-weight: 500;
    transition: all 0.2s;
}

.external-link:hover {
    color: #ffffff;
    background: #1a1a1a;
    padding: 2px 4px;
}

.link-list {
    display: block;
    margin-top: 16px;
}

.link-list a {
    display: block;
    padding: 10px 0;
    border-bottom: 1px solid #1a1a1a;
    font-size: 13px;
}

.phone-list {
    display: block;
    margin-top: 16px;
}

.phone-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #1a1a1a;
    font-size: 13px;
}

.phone-item:last-child {
    border-bottom: none;
}

.phone-number {
    font-family: 'Courier New', Courier, monospace;
    color: #ffffff;
}

.phone-type {
    font-size: 11px;
    color: #666666;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.address-list {
    display: block;
    margin-top: 16px;
}

.address-item {
    padding: 12px 0;
    border-bottom: 1px solid #1a1a1a;
    color: #ffffff;
    font-size: 13px;
    font-family: 'Courier New', Courier, monospace;
}

.address-item:last-child {
    border-bottom: none;
}

.date-range {
    color: #666666;
    font-size: 12px;
    margin-left: 8px;
}

.family-section {
    margin-bottom: 50px;
    padding-bottom: 30px;
    border-bottom: 1px solid #1a1a1a;
}

.family-section:last-child {
    border-bottom: none;
}

.family-title {
    font-size: 22px;
    color: #ffffff;
    margin-bottom: 25px;
    padding-bottom: 12px;
    border-bottom: 1px solid #1a1a1a;
    font-weight: 700;
}

.family-list {
    list-style: none;
    display: block;
}

.family-list li {
    padding: 10px 0;
    border-bottom: 1px solid #1a1a1a;
    color: #ffffff;
    font-size: 14px;
    font-family: 'Courier New', Courier, monospace;
}

.family-list li:last-child {
    border-bottom: none;
}

.evidence-tabs {
    display: flex;
    gap: 0;
    margin-bottom: 30px;
    border-bottom: 1px solid #1a1a1a;
}

.tab-button {
    background: #000000;
    border: none;
    border-right: 1px solid #1a1a1a;
    color: #cccccc;
    padding: 16px 24px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tab-button:last-child {
    border-right: none;
}

.tab-button:hover {
    background: #0a0a0a;
    color: #ffffff;
}

.tab-button.active {
    background: #0a0a0a;
    color: #ffffff;
    border-bottom: 2px solid #ffffff;
    margin-bottom: -1px;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.gallery-section,
.media-section {
    margin-bottom: 40px;
    padding: 30px;
    border: 1px solid #1a1a1a;
    background: #0a0a0a;
}

.gallery-section h3,
.media-section h3 {
    font-size: 18px;
    margin-bottom: 20px;
    color: #ffffff;
    font-weight: 700;
    padding-bottom: 12px;
    border-bottom: 1px solid #1a1a1a;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 15px;
}

.gallery-item {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    border: 1px solid #1a1a1a;
    background: #000000;
    cursor: pointer;
    transition: all 0.2s;
}

.gallery-item:hover {
    border-color: #333333;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.gallery-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    color: white;
    padding: 8px;
    font-size: 11px;
    text-align: center;
    opacity: 0;
    transition: opacity 0.2s;
}

.gallery-item:hover .gallery-label {
    opacity: 1;
}

.video-grid,
.audio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 20px;
}

.video-item,
.audio-item {
    background: #0a0a0a;
    border: 1px solid #1a1a1a;
    padding: 20px;
}

.video-item video,
.audio-item audio {
    width: 100%;
    margin-bottom: 12px;
    border: 1px solid #1a1a1a;
}

.media-label {
    text-align: left;
    font-weight: normal;
    color: #cccccc;
    font-size: 12px;
    word-break: break-word;
    margin-top: 8px;
    font-family: 'Courier New', Courier, monospace;
}

.audio-item {
    text-align: left;
}

.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.98);
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.modal-content {
    max-width: 90%;
    max-height: 85%;
    object-fit: contain;
    border: 2px solid #ffffff;
}

.modal-close {
    position: absolute;
    top: 30px;
    right: 40px;
    color: white;
    font-size: 36px;
    font-weight: 300;
    cursor: pointer;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #ffffff;
    background: #000000;
    transition: all 0.2s;
}

.modal-close:hover {
    background: #ffffff;
    color: #000000;
}

.modal-caption {
    color: white;
    text-align: center;
    margin-top: 20px;
    font-size: 13px;
    max-width: 90%;
    font-family: 'Courier New', Courier, monospace;
}

.main-footer {
    background: #000000;
    padding: 40px 0;
    text-align: left;
    border-top: 1px solid #1a1a1a;
    margin-top: 60px;
}

.main-footer p {
    color: #666666;
    margin-bottom: 6px;
    font-size: 12px;
}

.footer-note {
    font-size: 11px;
    color: #333333;
}

.update-badge {
    display: inline-block;
    padding: 3px 8px;
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-left: 10px;
    border-radius: 2px;
}

.update-badge.current {
    background: #ffffff;
    color: #000000;
    border: 1px solid #ffffff;
}

.update-badge.outdated {
    background: #333333;
    color: #999999;
    border: 1px solid #333333;
}

.update-date {
    font-size: 11px;
    color: #666666;
    margin-top: 8px;
    font-style: italic;
    font-family: 'Courier New', Courier, monospace;
}

@media (max-width: 1024px) {
    .info-card.large {
        grid-column: span 1;
    }
}

@media (max-width: 768px) {
    body {
        padding: 0;
    }

    .container {
        padding: 0 20px;
    }

    .main-header {
        padding: 30px 0 25px;
    }

    .main-header h1 {
        font-size: 24px;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #000000;
        flex-direction: column;
        padding: 0;
        border-top: 1px solid #1a1a1a;
        border-bottom: 1px solid #1a1a1a;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-link {
        width: 100%;
        text-align: left;
        border-right: none;
        border-bottom: 1px solid #1a1a1a;
        padding: 16px 20px;
    }

    .nav-link:last-child {
        border-bottom: none;
    }

    .section-header h2 {
        font-size: 22px;
    }

    .info-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    }

    .video-grid,
    .audio-grid {
        grid-template-columns: 1fr;
    }

    .detail-row {
        flex-direction: column;
        gap: 8px;
    }

    .detail-label {
        min-width: auto;
    }

    .modal-close {
        top: 15px;
        right: 20px;
        font-size: 28px;
        width: 40px;
        height: 40px;
    }
}

::selection {
    background: #ffffff;
    color: #000000;
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #000000;
}

::-webkit-scrollbar-thumb {
    background: #1a1a1a;
}

::-webkit-scrollbar-thumb:hover {
    background: #333333;
}
