:root {
    --bg-dark: #050505;
    --card-bg: #0d0d0d;
    --primary-red: #ff3333;
    --accent-red: #990000;
    --text-main: #ffffff;
    --text-muted: #888888;
    --border-color: #222222;
    --glow-shadow: 0 0 20px rgba(255, 51, 51, 0.2);
}

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

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

/* Base Styles */
.breach-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem;
    position: relative;
    z-index: 10;
}

/* Background Effects */
.scanlines {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(18, 16, 16, 0) 50%, rgba(0, 0, 0, 0.1) 50%), 
                linear-gradient(90deg, rgba(255, 0, 0, 0.03), rgba(0, 255, 0, 0.01), rgba(0, 0, 255, 0.03));
    background-size: 100% 2px, 3px 100%;
    pointer-events: none;
    z-index: 5;
}

/* Headers */
.critical-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid var(--primary-red);
    padding-bottom: 1rem;
    margin-bottom: 2rem;
}

.threat-level {
    font-family: 'Orbitron', sans-serif;
    color: var(--primary-red);
    font-size: 1.5rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    animation: pulse 2s infinite;
}

.operation-code {
    font-family: 'Orbitron', sans-serif;
    color: var(--text-muted);
    font-size: 1rem;
    letter-spacing: 1px;
}

/* Main Content */
h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 3rem;
    line-height: 1;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    background: linear-gradient(to right, #fff, var(--primary-red));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
    border-left: 4px solid var(--primary-red);
    padding-left: 1.5rem;
}

/* Cards & Sections */
.section-card {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 2rem;
    margin-bottom: 2rem;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.section-card:hover {
    border-color: var(--primary-red);
}

h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.25rem;
    color: var(--primary-red);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Table & Iframe Design */
.data-table-container, .iframe-view {
    overflow-x: auto;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    background: #000;
}

.data-iframe {
    width: 100%;
    height: 500px;
    border: none;
    filter: invert(1) hue-rotate(180deg) brightness(0.8); /* Tentativa de dark mode via CSS em CSV fixo */
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1rem;
    font-size: 0.875rem;
}

th {
    text-align: left;
    color: var(--text-muted);
    font-weight: 600;
    padding: 1rem;
    border-bottom: 1px solid var(--border-color);
    text-transform: uppercase;
    font-size: 0.75rem;
}

td {
    padding: 1rem;
    border-bottom: 1px solid #1a1a1a;
}

tr:last-child td {
    border-bottom: none;
}

.highlight {
    color: var(--primary-red);
}

/* Impact Items */
.impact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.impact-item h3 {
    font-size: 0.875rem;
    color: var(--text-muted);
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.impact-status {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    color: var(--primary-red);
    margin-bottom: 0.5rem;
}

.impact-desc {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* Ransom Box */
.payment-section {
    background: linear-gradient(135deg, #1a0000 0%, #0d0d0d 100%);
    border: 1px solid var(--primary-red);
    box-shadow: var(--glow-shadow);
}

.payment-address {
    background-color: #000;
    padding: 1.5rem;
    border-radius: 4px;
    font-family: 'Courier New', Courier, monospace;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 1.5rem 0;
    word-break: break-all;
    border: 1px dashed var(--accent-red);
}

#wallet-addr {
    color: #ffaa00;
    font-weight: bold;
}

.copy-btn {
    background-color: var(--primary-red);
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.75rem;
    text-transform: uppercase;
    transition: background-color 0.2s ease;
}

.copy-btn:hover {
    background-color: #ff0000;
}

.timer-box {
    text-align: center;
    padding: 2rem;
    margin-top: 3rem;
}

.timer {
    font-family: 'Orbitron', sans-serif;
    font-size: 4rem;
    color: var(--primary-red);
    margin: 1rem 0;
    letter-spacing: 4px;
}

/* Video Player Styling */
.video-container {
    position: relative;
    width: 100%;
    background: #000;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    overflow: hidden;
    line-height: 0;
}

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

.video-label {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 5;
    background: rgba(0,0,0,0.7);
    padding: 4px 10px;
    font-size: 0.65rem;
    color: var(--primary-red);
    border: 1px solid var(--primary-red);
    font-family: 'Orbitron', sans-serif;
    letter-spacing: 1px;
    pointer-events: none;
    box-shadow: 0 0 10px rgba(255,0,0,0.2);
}

.breach-video {
    width: 100%;
    height: auto;
    cursor: pointer;
    display: block;
}

.video-controls {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, transparent 100%);
    padding: 20px 15px 10px;
    opacity: 0;
    transition: opacity 0.3s ease;
    line-height: normal;
}

.video-container:hover .video-controls {
    opacity: 1;
}

.progress-bar {
    width: 100%;
    height: 4px;
    background: rgba(255,255,255,0.1);
    cursor: pointer;
    margin-bottom: 10px;
    position: relative;
}

.progress-filled {
    width: 0%;
    height: 100%;
    background: var(--primary-red);
    box-shadow: 0 0 10px var(--primary-red);
}

.control-main {
    display: flex;
    align-items: center;
    gap: 15px;
}

.player-btn {
    background: transparent;
    border: 1px solid var(--primary-red);
    color: var(--primary-red);
    padding: 4px 12px;
    border-radius: 2px;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.7rem;
    cursor: pointer;
    transition: all 0.2s;
}

.player-btn:hover {
    background: var(--primary-red);
    color: #fff;
    box-shadow: 0 0 10px var(--primary-red);
}

.video-time {
    font-size: 0.75rem;
    color: #eee;
    font-family: 'Inter', sans-serif;
}

.volume-control {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 8px;
}

#volume-slider {
    width: 60px;
    height: 3px;
    accent-color: var(--primary-red);
    cursor: pointer;
}

/* Data Viewer Styling */
.data-view-wrapper {
    height: 520px; /* Altura fixa para evitar saltos na paginação */
    background: #050505;
    border: 1px solid var(--border-color);
    padding: 0.5rem;
    position: relative;
    overflow-x: auto;
    overflow-y: auto; /* Scroll vertical se necessário */
}

#data-loading {
    padding: 2rem;
    text-align: center;
    color: var(--primary-red);
    font-family: 'Orbitron', sans-serif;
    letter-spacing: 2px;
}

#enterprise-table {
    width: 100%;
    border-collapse: collapse;
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
}

#enterprise-table th {
    background: #111;
    color: var(--primary-red);
    padding: 12px;
    text-align: left;
    border-bottom: 2px solid var(--border-color);
    white-space: nowrap;
}

#enterprise-table td {
    padding: 10px 12px;
    border-bottom: 1px solid #1a1a1a;
    color: #eee;
}

#enterprise-table tr:hover {
    background: rgba(255,0,0,0.05);
}

.pagination-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 1.5rem;
    background: #0a0a0a;
    padding: 10px;
    border: 1px solid #222;
}

.pager-btn {
    background: transparent;
    border: 1px solid #333;
    color: #888;
    padding: 6px 15px;
    cursor: pointer;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.65rem;
    transition: all 0.2s;
}

.pager-btn:not(:disabled):hover {
    border-color: var(--primary-red);
    color: #fff;
    box-shadow: 0 0 5px var(--primary-red);
}

.pager-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

#page-info {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* Animations */
@keyframes pulse {
    0% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.02); }
    100% { opacity: 1; transform: scale(1); }
}

@media (max-width: 768px) {
    h1 { font-size: 2rem; }
    .breach-container { padding: 1rem; }
    .timer { font-size: 2.5rem; }
    .critical-header { flex-direction: column; align-items: flex-start; gap: 0.5rem; }
}

/* Bypass Loader Overlay */
.bypass-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.5s ease;
    font-family: 'Courier New', Courier, monospace;
}

.terminal-loader {
    width: 80%;
    max-width: 600px;
    color: #0f0;
    font-size: 1.2rem;
    text-shadow: 0 0 5px #0f0;
}

.terminal-loader p {
    margin: 0.5rem 0;
    overflow: hidden;
    white-space: nowrap;
    border-right: 2px solid #0f0;
    animation: typing 2.5s steps(40, end), blink-caret 0.75s step-end infinite;
}

@keyframes typing {
    from { width: 0 }
    to { width: 100% }
}

@keyframes blink-caret {
    from, to { border-color: transparent }
    50% { border-color: #0f0 }
}

/* Chat Styling */
.chat-wrapper {
    background: #050505;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.chat-box {
    height: 350px;
    overflow-y: scroll;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    scroll-behavior: smooth;
    background: radial-gradient(circle, #0a0000 0%, #000 100%);
}

/* Custom Scrollbar — Chat */
.chat-box::-webkit-scrollbar {
    width: 6px;
}

.chat-box::-webkit-scrollbar-track {
    background: #0a0a0a;
}

.chat-box::-webkit-scrollbar-thumb {
    background: #331111;
    border-radius: 3px;
    transition: background 0.2s;
}

.chat-box::-webkit-scrollbar-thumb:hover {
    background: var(--primary-red);
    box-shadow: 0 0 6px rgba(255, 51, 51, 0.4);
}

.chat-input-area {
    background: #111;
    border-top: 1px solid #222;
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 15px;
}

#chat-input {
    flex-grow: 1;
    background: #1a1a1a;
    border: 1px solid #333;
    color: #eee;
    padding: 10px 15px;
    border-radius: 4px;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
}

#chat-input:focus {
    border-color: var(--primary-red);
    outline: none;
    box-shadow: 0 0 10px rgba(255,0,0,0.1);
}

.codename-badge {
    background: #222;
    color: var(--primary-red);
    padding: 6px 12px;
    border-radius: 4px;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.65rem;
    font-weight: 800;
    border: 1px solid #444;
    white-space: nowrap;
}

.chat-msg {
    max-width: 85%;
    padding: 10px 15px;
    border-radius: 4px;
    font-size: 0.85rem;
    line-height: 1.4;
    position: relative;
    animation: fadeIn 0.3s ease;
}

.msg-received {
    align-self: flex-start;
    background: #1a1a1a;
    border-left: 3px solid #444;
    color: #ccc;
}

.msg-sent {
    align-self: flex-end;
    background: rgba(255,0,0,0.05);
    border-right: 3px solid var(--primary-red);
    color: #eee;
    text-align: right;
}

.msg-caos {
    align-self: flex-start;
    max-width: 85%;
    background: #400 !important;
    color: #fff !important;
    border: 1px solid var(--primary-red);
    box-shadow: 0 0 10px rgba(255,0,0,0.3);
    font-weight: 600;
    text-align: left;
    margin: 10px 0;
    animation: fadeIn 0.3s;
}

.msg-caos .msg-user { color: var(--primary-red) !important; font-size: 0.75rem; letter-spacing: 2px; }
.msg-caos .msg-content { font-size: 1rem; letter-spacing: 1px; }

/* Static Exposure Table Styling */
.static-dump-table {
    width: 100%;
    border-collapse: collapse;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    color: #eee;
    background: #050505;
}

.static-dump-table th {
    background: #111;
    color: var(--primary-red);
    padding: 12px;
    text-align: left;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 1px;
    border-bottom: 2px solid #222;
}

.static-dump-table td {
    padding: 12px;
    border-bottom: 1px solid #111;
    line-height: 1.4;
}

.static-dump-table tr:hover {
    background: rgba(255, 0, 0, 0.03);
}

.static-dump-table tr td:first-child {
    font-family: 'Orbitron', sans-serif;
    color: var(--primary-red);
    font-weight: 900;
}

.static-highlight {
    color: #ffaa00;
    font-weight: 600;
}

@media (max-width: 768px) {
    .static-dump-table {
        font-size: 0.75rem;
    }
}

.msg-header {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    margin-bottom: 5px;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.6rem;
    letter-spacing: 1px;
}

.msg-user { color: var(--primary-red); font-weight: 900; }
.msg-time { color: #555; }

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(5px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Modal Styling */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
    backdrop-filter: blur(5px);
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeIn 0.4s ease;
}

.modal-content {
    background: #050505;
    border: 1px solid var(--primary-red);
    padding: 2.5rem;
    max-width: 450px;
    width: 90%;
    text-align: center;
    box-shadow: 0 0 30px rgba(255,0,0,0.2);
}

.modal-content h2 {
    font-family: 'Orbitron', sans-serif;
    color: #fff;
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.modal-content input {
    width: 100%;
    background: #111;
    border: 1px solid #333;
    padding: 15px;
    color: #fff;
    font-family: 'Inter', sans-serif;
    margin-bottom: 10px;
    box-sizing: border-box;
    font-size: 1rem;
}

.modal-content input:focus {
    border-color: var(--primary-red);
    outline: none;
}

/* CEO Section Styling */
.ceo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 1.5rem;
}

.ceo-card {
    background: rgba(0,0,0,0.5);
    border: 1px solid #222;
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s;
}

.ceo-card:hover {
    border-color: var(--primary-red);
    box-shadow: inset 0 0 15px rgba(255,0,0,0.1);
}

.ceo-image-wrapper {
    position: relative;
    width: 100px;
    height: 100px;
    flex-shrink: 0;
    border: 1px solid #444;
    overflow: hidden;
}

.ceo-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(1) contrast(1.2);
    opacity: 0.8;
}

.ceo-card:hover .ceo-photo {
    filter: grayscale(0.2) contrast(1.1);
    opacity: 1;
}

.target-overlay {
    position: absolute;
    top: 5px;
    left: 5px;
    background: var(--primary-red);
    color: #fff;
    font-size: 0.5rem;
    padding: 2px 5px;
    font-family: 'Orbitron', sans-serif;
}

.ceo-info h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: #fff;
}

.ceo-role {
    font-size: 0.7rem;
    color: var(--text-muted);
    margin-bottom: 5px;
}

.ceo-status {
    font-size: 0.65rem;
    font-weight: 800;
}

@media (max-width: 768px) {
    .ceo-grid {
        grid-template-columns: 1fr;
    }
}

/* Data Tier Tabs */
.data-header {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.data-tabs {
    display: flex;
    gap: 5px;
    border-bottom: 1px solid #222;
}

.tab-btn {
    background: transparent;
    border: 1px solid #333;
    border-bottom: none;
    color: #888;
    padding: 10px 25px;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.75rem;
    cursor: pointer;
    transition: 0.3s;
    letter-spacing: 1px;
}

.tab-btn:hover {
    color: var(--primary-red);
    background: rgba(255,0,0,0.05);
}

.tab-btn.active {
    background: var(--primary-red);
    color: #fff;
    border-color: var(--primary-red);
    box-shadow: 0 0 15px rgba(255,0,0,0.3);
}

#data-search {
    background: #000;
    border: 1px solid #333;
    color: var(--primary-red);
    padding: 12px 20px;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.8rem;
    width: 100%;
    box-sizing: border-box;
}

#data-search:focus {
    outline: none;
    border-color: var(--primary-red);
    box-shadow: 0 0 10px rgba(255,0,0,0.2);
}

@media (min-width: 768px) {
    .data-header {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
    #data-search {
        width: 300px;
    }
}

/* Modern Crypto Payment Gateway */
.payment-section-modern {
    background: rgba(10, 0, 0, 0.8) !important;
    border: 1px solid var(--primary-red) !important;
    padding: 3rem !important;
    position: relative;
    overflow: hidden;
}

.payment-badge {
    position: absolute;
    top: 20px;
    right: -30px;
    background: var(--primary-red);
    color: #fff;
    padding: 5px 40px;
    font-size: 0.6rem;
    font-weight: 900;
    transform: rotate(45deg);
    font-family: 'Orbitron', sans-serif;
    box-shadow: 0 0 10px rgba(255,0,0,0.5);
}

.crypto-payment-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-top: 2rem;
    align-items: flex-start;
}

@media (min-width: 992px) {
    .crypto-payment-grid {
        grid-template-columns: 280px 1fr;
    }
}

/* QR Column */
.qr-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    background: #000;
    border: 1px solid #333;
    padding: 15px;
    box-sizing: border-box;
}

.qr-skeleton {
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    background: linear-gradient(90deg, #050505 25%, #150000 50%, #050505 75%);
    background-size: 200% 100%;
    animation: qrPulse 1.5s infinite linear;
}

@keyframes qrPulse {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

.qr-image {
    width: 100%;
    height: 100%;
    display: block;
    filter: brightness(1.2) contrast(1.1);
}

.qr-scan-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary-red);
    box-shadow: 0 0 15px var(--primary-red);
    animation: qrScan 2.5s infinite linear;
}

@keyframes qrScan {
    0% { top: 0; }
    100% { top: 100%; }
}

.network-status {
    margin-top: 1.5rem;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.7rem;
    color: #666;
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
}

.status-dot.pulse {
    width: 8px;
    height: 8px;
    background: var(--primary-red);
    border-radius: 50%;
    animation: statusPulse 1.5s infinite;
}

@keyframes statusPulse {
    0% { opacity: 0.3; transform: scale(0.8); }
    50% { opacity: 1; transform: scale(1.2); }
    100% { opacity: 0.3; transform: scale(0.8); }
}

/* Terminal de Liquidação (Premium Amount Card) */
.amount-card {
    background: radial-gradient(circle at top left, #0a0a0a, #000);
    border: 1px solid #331111;
    border-left: 5px solid var(--primary-red);
    padding: 2rem;
    margin-bottom: 2rem;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.8), inset 0 0 20px rgba(255,0,0,0.05);
    overflow: hidden;
}

.amount-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    background: var(--primary-red);
    width: var(--sync-progress, 0%);
    transition: width 1s linear;
    box-shadow: 0 0 10px var(--primary-red);
}

.amount-label {
    font-size: 0.7rem;
    color: #888;
    margin-bottom: 10px;
    letter-spacing: 2px;
    font-family: 'Orbitron', sans-serif;
    display: flex;
    justify-content: space-between;
}

.amount-value {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.2rem;
    color: #fff;
    font-weight: 900;
    letter-spacing: -1px;
    display: flex;
    align-items: baseline;
    gap: 10px;
}

.amount-value span#ransom-eth-total {
    text-shadow: 0 0 15px rgba(255,255,255,0.2);
}

.brl-val {
    font-size: 1rem;
    color: #666;
    font-weight: 400;
    font-family: 'Inter', sans-serif;
    letter-spacing: 0;
}

.price-status {
    margin-top: 15px;
    font-size: 0.65rem;
    color: #00ff00;
    font-family: 'Courier New', Courier, monospace;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 8px;
}

.price-status::before {
    content: '';
    width: 6px;
    height: 6px;
    background: #0f0;
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 8px #0f0;
}

.address-box {
    background: #0a0a0a;
    border: 1px solid #222;
    padding: 12px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    margin-top: 5px;
}

.address-box code {
    color: #0f0;
    font-size: 0.85rem;
    word-break: break-all;
}

.copy-btn-modern {
    background: transparent;
    border: 1px solid #333;
    color: #888;
    padding: 5px 15px;
    cursor: pointer;
    font-size: 0.7rem;
}

.copy-btn-modern:hover {
    border-color: var(--primary-red);
    color: #fff;
}

.payment-steps {
    margin: 2rem 0;
    counter-reset: step-counter;
}

.warning-step {
    border: 1px solid var(--primary-red);
    background: rgba(255, 30, 30, 0.05);
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 4px;
    color: #fff;
    font-weight: 600;
    animation: warningPulse 3s infinite ease-in-out;
}

@keyframes warningPulse {
    0% { border-color: #600; box-shadow: none; }
    50% { border-color: var(--primary-red); box-shadow: 0 0 10px rgba(255, 0, 0, 0.2); }
    100% { border-color: #600; box-shadow: none; }
}

.step {
    font-size: 0.85rem;
    color: #ccc;
    margin-bottom: 10px;
    display: flex;
    gap: 10px;
}

.honor-note {
    font-size: 0.72rem;
    color: #bbb;
    border: 1px solid rgba(255, 184, 0, 0.15);
    background: rgba(255, 184, 0, 0.03);
    padding: 15px;
    border-radius: 4px;
    margin: 20px 0;
    line-height: 1.6;
    font-style: italic;
    font-family: 'Inter', sans-serif;
}

.honor-note strong {
    color: rgba(255, 184, 0, 0.8);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.step::before {
    content: ">";
    color: var(--primary-red);
    font-family: 'Orbitron', sans-serif;
}

.verify-btn {
    width: 100%;
    background: transparent;
    border: 1px solid var(--primary-red);
    color: var(--primary-red);
    padding: 15px;
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
    letter-spacing: 2px;
}

.verify-btn:hover {
    background: var(--primary-red);
    color: #fff;
    box-shadow: 0 0 20px rgba(255,0,0,0.4);
}

.verify-output {
    margin-top: 1rem;
    background: #111;
    padding: 10px;
    font-size: 0.7rem;
    font-family: monospace;
    border: 1px solid #222;
    color: #555;
    animation: fadeIn 0.3s;
}

/* Identidade Modal — Admin Force ID */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 100000;
    display: flex;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(8px);
}

.modal-content {
    background: #050505;
    border: 2px solid var(--primary-red);
    padding: 3rem 2rem;
    max-width: 500px;
    width: 90%;
    text-align: center;
    box-shadow: 0 0 40px rgba(255, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.modal-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-red), transparent);
    animation: scanLine 2.5s infinite linear;
}

#ident-name {
    width: 100%;
    background: #111;
    border: 1px solid #333;
    color: #fff;
    padding: 15px;
    margin-top: 1.5rem;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    text-align: center;
    text-transform: uppercase;
}

#ident-name:focus {
    outline: none;
    border-color: var(--primary-red);
    box-shadow: 0 0 10px rgba(255, 0, 0, 0.1);
}

@keyframes scanLine {
    0% { transform: translateY(-100%); }
    100% { transform: translateY(100vh); }
}

/* Real-Time Toast Notifications */
#toast-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 100000;
    display: flex;
    flex-direction: column;
    gap: 12px;
    pointer-events: none;
}

.toast {
    background: rgba(5, 5, 5, 0.95);
    border-left: 3px solid var(--primary-red);
    color: #fff;
    padding: 15px 20px;
    min-width: 280px;
    max-width: 350px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 10px rgba(255, 0, 0, 0.1);
    backdrop-filter: blur(5px);
    display: flex;
    flex-direction: column;
    gap: 4px;
    pointer-events: auto;
    animation: toastSlideIn 0.4s cubic-bezier(0.18, 0.89, 0.32, 1.28) forwards;
    border: 1px solid rgba(255, 30, 30, 0.1);
    position: relative;
    overflow: hidden;
}

.toast-header {
    font-size: 0.65rem;
    font-family: 'Orbitron', sans-serif;
    color: var(--primary-red);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
}

.toast-body {
    font-size: 0.85rem;
    color: #eee;
    line-height: 1.4;
    word-break: break-word;
}

.toast.system-toast {
    background: rgba(20, 0, 0, 0.98);
    border-left: 3px solid #ffcc00; /* Gold accent for system/admin alerts */
}

.toast.system-toast .toast-header {
    color: #ffcc00;
}

@keyframes toastSlideIn {
    from { transform: translateX(110%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

.toast-fade-out {
    animation: toastFadeOut 0.5s ease-in forwards;
}

@keyframes toastFadeOut {
    from { transform: translateX(0); opacity: 1; }
    to { transform: translateX(110%); opacity: 0; }
}

/* Lucide Icon Standard Styling */
.lucide-icon {
    width: 1.2em;
    height: 1.2em;
    vertical-align: middle;
    display: inline-block;
    margin-right: 0.5rem;
    stroke-width: 2.5px;
}

.icon-red { color: var(--primary-red); }
.icon-amber { color: #f59e0b; }
.icon-white { color: #fff; }
.icon-gold { color: rgba(255, 184, 0, 0.8); }

/* Responsividade do Terminal de Pagamento (Mobile Fix) */
@media (max-width: 768px) {
    .payment-section-modern {
        padding: 2rem 1.2rem !important;
    }
    
    .payment-badge {
        display: none;
    }

    .crypto-payment-grid {
        gap: 2rem !important;
        margin-top: 1rem !important;
    }

    .amount-card {
        padding: 1.5rem !important;
        margin-bottom: 1.5rem !important;
    }

    .amount-label {
        font-size: 0.55rem !important;
        letter-spacing: 1px !important;
        flex-direction: column;
        gap: 5px;
        align-items: flex-start !important;
    }

    .amount-value {
        font-size: 1.5rem !important;
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 4px !important;
    }

    .brl-val {
        font-size: 0.8rem !important;
        color: #888 !important;
        display: block !important;
    }

    .address-box {
        padding: 10px !important;
        gap: 12px !important;
        flex-direction: column !important;
        align-items: stretch !important;
    }

    .address-box code {
        font-size: 0.7rem !important;
        word-break: break-all !important;
        background: rgba(0,0,0,0.5);
        padding: 10px;
        border: 1px solid #222;
        display: block;
        text-align: center;
    }

    .copy-btn-modern {
        width: 100% !important;
        padding: 12px !important;
        font-size: 0.75rem !important;
        background: rgba(255, 30, 30, 0.05) !important;
    }

    .qr-column {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .qr-wrapper {
        max-width: 280px;
        width: 100%;
    }

    .price-status {
        font-size: 0.5rem !important;
        line-height: 1.4;
        text-align: center;
        justify-content: center;
    }

    .payment-section-modern h2.glitch-text {
        font-size: 1.3rem !important;
        text-align: center;
    }
}

/* ======================================================
   CORREÇÕES DE RESPONSIVIDADE — MOBILE
   ====================================================== */

/* 1. Terminal loader — evita overflow horizontal no mobile */
@media (max-width: 768px) {
    .terminal-loader {
        width: 94%;
        font-size: 0.8rem;
    }

    .terminal-loader p {
        font-size: 0.75rem;
        /* Mantém white-space:nowrap para o efeito de digitação,
           mas garante que o container não ultrapasse a tela */
        max-width: 100%;
        box-sizing: border-box;
    }

    .bypass-overlay {
        padding: 1rem;
        box-sizing: border-box;
    }
}

/* 2. PREJUÍZO ESTIMADO TOTAL — reduz fonte do valor monetário */
@media (max-width: 768px) {
    .damage-total-value {
        font-size: 1.6rem !important;
        word-break: break-word;
    }
}

@media (max-width: 480px) {
    .damage-total-value {
        font-size: 1.2rem !important;
    }
}

/* 3. VALOR TOTAL DO PAGAMENTO — corrige label e valor ETH */
@media (max-width: 768px) {
    .amount-label {
        display: block !important;
        word-break: break-word !important;
        white-space: normal !important;
        line-height: 1.5 !important;
    }

    .amount-card {
        overflow: hidden;
    }
}

@media (max-width: 480px) {
    .amount-label {
        font-size: 0.6rem !important;
        letter-spacing: 0.5px !important;
    }

    .amount-value {
        font-size: 1.3rem !important;
    }

    /* Countdown não quebra em telas muito pequenas */
    #countdown {
        font-size: 2.5rem !important;
        letter-spacing: 2px !important;
    }
}

/* ======================================================
   CHAT — INPUT AREA (badge + input + botão)
   ====================================================== */
@media (max-width: 768px) {
    .chat-input-area {
        flex-wrap: wrap;
        gap: 8px;
        padding: 0.75rem;
    }

    /* Linha 1: badge + campo de texto */
    .codename-badge {
        order: 0;
        flex: 0 0 auto;
    }

    #chat-input {
        order: 1;
        flex: 1 1 0;
        min-width: 0;
        font-size: 0.8rem;
        padding: 8px 10px;
    }

    /* Linha 2: botão ocupa largura total */
    #send-chat {
        order: 2;
        flex: 1 1 100%;
        padding: 10px;
        font-size: 0.7rem;
    }
}

/* ======================================================
   AMOSTRA DE DADOS — abas e tabela
   ====================================================== */
@media (max-width: 768px) {
    .data-tabs {
        flex-wrap: wrap;
        gap: 4px;
    }

    .tab-btn {
        flex: 1 1 auto;
        padding: 8px 10px;
        font-size: 0.6rem;
        letter-spacing: 0.5px;
        text-align: center;
        white-space: nowrap;
    }

    /* Tabela: permite scroll horizontal e células não estouram */
    .data-view-wrapper {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    #enterprise-table {
        min-width: 500px; /* garante que o scroll apareça ao invés de quebrar */
    }

    /* Cards de seção — padding menor */
    .section-card {
        padding: 1.2rem;
    }
}

/* ======================================================
   IMPACT CARDS V2 — ANÁLISE DE DANOS (LGPD)
   ====================================================== */

.impact-grid-v2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.2rem;
    margin-bottom: 2rem;
}

.impact-card {
    background: #080808;
    border: 1px solid #222;
    border-top: 3px solid var(--primary-red);
    padding: 1.4rem;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.impact-card:hover {
    border-color: var(--primary-red);
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.08);
}

.impact-card-header {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.4rem;
}

.impact-card-icon {
    width: 36px;
    height: 36px;
    background: rgba(255, 0, 0, 0.08);
    border: 1px solid rgba(255, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--primary-red);
}

.impact-card-icon .lucide-icon {
    width: 1rem;
    height: 1rem;
    margin: 0;
}

.impact-card-cat {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.6rem;
    color: #888;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 4px;
}

/* Severity badges */
.impact-badge {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.55rem;
    font-weight: 900;
    padding: 2px 8px;
    letter-spacing: 1px;
    display: inline-block;
}

.badge-critical {
    background: rgba(255, 0, 0, 0.15);
    color: var(--primary-red);
    border: 1px solid rgba(255, 0, 0, 0.4);
}

.badge-high {
    background: rgba(255, 120, 0, 0.1);
    color: #ff7800;
    border: 1px solid rgba(255, 120, 0, 0.3);
}

.badge-total {
    background: rgba(255, 0, 0, 0.25);
    color: #fff;
    border: 1px solid var(--primary-red);
    animation: warningPulse 2s infinite;
}

.impact-card-metric {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.6rem;
    font-weight: 900;
    color: #fff;
    line-height: 1;
    margin-top: 0.4rem;
    letter-spacing: -0.5px;
}

.impact-card-metric-label {
    font-size: 0.6rem;
    color: #555;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-family: 'Orbitron', sans-serif;
    margin-bottom: 0.6rem;
}

.impact-card-bullets {
    list-style: none;
    padding: 0;
    border-top: 1px solid #1a1a1a;
    padding-top: 0.8rem;
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}

.impact-card-bullets li {
    font-size: 0.78rem;
    color: #aaa;
    line-height: 1.4;
    padding-left: 1rem;
    position: relative;
}

.impact-card-bullets li::before {
    content: '›';
    position: absolute;
    left: 0;
    color: var(--primary-red);
    font-weight: 900;
}

.bullet-highlight {
    color: #fff;
    font-weight: 600;
}

/* ======================================================
   DAMAGE TOTAL BOX
   ====================================================== */

.damage-total-box {
    margin-top: 1.5rem;
    background: radial-gradient(ellipse at top left, #100000, #050505);
    border: 1px dashed var(--primary-red);
    border-radius: 4px;
    padding: 2rem;
    box-shadow: 0 0 30px rgba(255, 0, 0, 0.06);
}

.damage-total-top {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 1.5rem;
}

.damage-total-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.85rem;
    color: var(--primary-red);
    letter-spacing: 3px;
    text-transform: uppercase;
}

.damage-total-range {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.damage-range-item {
    flex: 1;
    min-width: 140px;
}

.damage-range-label {
    font-size: 0.6rem;
    color: #555;
    letter-spacing: 2px;
    font-family: 'Orbitron', sans-serif;
    margin-bottom: 4px;
}

.damage-range-value {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    font-weight: 900;
    color: #ccc;
    text-shadow: 0 0 8px rgba(255, 0, 0, 0.2);
}

.damage-range-max {
    color: #fff;
    text-shadow: 0 0 15px rgba(255, 0, 0, 0.5);
}

.damage-range-sep {
    font-size: 2rem;
    color: #333;
    flex-shrink: 0;
    align-self: center;
}

/* Breakdown bars */
.damage-breakdown {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    margin-bottom: 1.2rem;
    padding: 1.2rem;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid #1a1a1a;
}

.breakdown-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.breakdown-label {
    font-size: 0.65rem;
    color: #666;
    font-family: 'Orbitron', sans-serif;
    letter-spacing: 0.5px;
    width: 110px;
    flex-shrink: 0;
}

.breakdown-bar-wrap {
    flex: 1;
    height: 4px;
    background: #111;
    border-radius: 2px;
    overflow: hidden;
}

.breakdown-bar {
    display: block;
    height: 100%;
    background: linear-gradient(to right, #600, var(--primary-red));
    box-shadow: 0 0 6px rgba(255, 0, 0, 0.4);
    border-radius: 2px;
}

.breakdown-val {
    font-size: 0.65rem;
    color: #999;
    font-family: 'Orbitron', sans-serif;
    width: 80px;
    text-align: right;
    flex-shrink: 0;
}

.damage-total-note {
    font-size: 0.7rem;
    color: #444;
    line-height: 1.6;
    border-top: 1px solid #1a1a1a;
    padding-top: 1rem;
}

/* Responsivo */
@media (max-width: 768px) {
    .impact-grid-v2 {
        grid-template-columns: 1fr;
    }

    .impact-card-metric {
        font-size: 1.3rem;
    }

    .damage-total-range {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }

    .damage-range-sep {
        display: none;
    }

    .damage-range-value {
        font-size: 1.4rem;
    }

    .damage-range-max {
        font-size: 1.6rem;
    }

    .breakdown-label {
        width: 80px;
        font-size: 0.55rem;
    }

    .breakdown-val {
        width: 65px;
        font-size: 0.55rem;
    }

    .damage-total-box {
        padding: 1.2rem;
    }
}

/* ======================================================
   DESIGN APRIMORADO — MELHORIAS VISUAIS
   ====================================================== */

/* Page scrollbar */
::-webkit-scrollbar { width: 5px; height: 5px; }
::-webkit-scrollbar-track { background: #050505; }
::-webkit-scrollbar-thumb { background: #330000; border-radius: 2px; }
::-webkit-scrollbar-thumb:hover { background: var(--primary-red); box-shadow: 0 0 6px var(--primary-red); }

/* Background dot matrix */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255, 30, 30, 0.05) 1px, transparent 1px);
    background-size: 30px 30px;
    pointer-events: none;
    z-index: 1;
}

/* Ambient red glow from top */
body::after {
    content: '';
    position: fixed;
    top: -250px;
    left: 50%;
    transform: translateX(-50%);
    width: 1000px;
    height: 700px;
    background: radial-gradient(ellipse at center top, rgba(200, 0, 0, 0.07) 0%, transparent 65%);
    pointer-events: none;
    z-index: 1;
}

/* Alert bar */
.alert-bar {
    background: linear-gradient(90deg, #0d0000, #1f0000 40%, #1f0000 60%, #0d0000);
    color: var(--primary-red);
    text-align: center;
    padding: 9px 1rem;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.58rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(255, 0, 0, 0.25);
    position: sticky;
    top: 0;
    z-index: 200;
    animation: alertBarPulse 3s ease-in-out infinite alternate;
}

@keyframes alertBarPulse {
    from { opacity: 0.75; }
    to { opacity: 1; border-bottom-color: rgba(255, 0, 0, 0.5); }
}

/* Text muted utility (ausente do CSS anterior) */
.text-muted {
    color: #999;
    font-size: 0.9rem;
    line-height: 1.75;
}

/* Main warning section */
.main-warning {
    padding: 3.5rem 0 1.5rem;
}

.main-warning h1 {
    animation: titleBreath 5s ease-in-out infinite alternate;
}

@keyframes titleBreath {
    from { filter: drop-shadow(0 0 6px rgba(255, 255, 255, 0.05)); }
    to   { filter: drop-shadow(0 0 22px rgba(255, 30, 30, 0.18)); }
}

/* Glitch text animation (faltava no CSS) */
.glitch-text {
    position: relative;
    display: inline-block;
}

.glitch-text::before,
.glitch-text::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    pointer-events: none;
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
    line-height: inherit;
}

.glitch-text::before {
    color: #ff1155;
    clip-path: polygon(0 0, 100% 0, 100% 38%, 0 38%);
    animation: glitchTop 6s infinite;
    opacity: 0.75;
}

.glitch-text::after {
    color: #00e5ff;
    clip-path: polygon(0 62%, 100% 62%, 100% 100%, 0 100%);
    animation: glitchBottom 6s infinite;
    opacity: 0.55;
}

@keyframes glitchTop {
    0%, 85%, 100% { transform: translate(0, 0); }
    87% { transform: translate(-4px, -2px); clip-path: polygon(0 0, 100% 0, 100% 42%, 0 42%); }
    89% { transform: translate(4px,  1px); clip-path: polygon(0 0, 100% 0, 100% 22%, 0 22%); }
    91% { transform: translate(-2px, 2px); clip-path: polygon(0 8%, 100% 8%, 100% 38%, 0 38%); }
    93% { transform: translate(2px, -1px); }
    95% { transform: translate(0, 0); }
}

@keyframes glitchBottom {
    0%, 85%, 100% { transform: translate(0, 0); }
    87% { transform: translate(4px,  1px); clip-path: polygon(0 58%, 100% 58%, 100% 100%, 0 100%); }
    89% { transform: translate(-4px, -2px); clip-path: polygon(0 70%, 100% 70%, 100% 100%, 0 100%); }
    91% { transform: translate(2px, -1px); }
    93% { transform: translate(-2px, 2px); }
    95% { transform: translate(0, 0); }
}

/* Blinking indicator on threat level */
.threat-level::before {
    content: '▌';
    margin-right: 0.5rem;
    animation: blink 0.85s step-end infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50%       { opacity: 0; }
}

/* Section card depth + corner accent */
.section-card {
    position: relative;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.7);
}

.section-card::before {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    width: 14px;
    height: 14px;
    border-top: 2px solid var(--primary-red);
    border-left: 2px solid var(--primary-red);
    opacity: 0.35;
    transition: opacity 0.3s;
    pointer-events: none;
}

.section-card::after {
    content: '';
    position: absolute;
    bottom: -1px;
    right: -1px;
    width: 14px;
    height: 14px;
    border-bottom: 2px solid var(--primary-red);
    border-right: 2px solid var(--primary-red);
    opacity: 0.35;
    transition: opacity 0.3s;
    pointer-events: none;
}

.section-card:hover {
    box-shadow: 0 4px 28px rgba(255, 0, 0, 0.08), 0 2px 16px rgba(0, 0, 0, 0.9);
}

.section-card:hover::before,
.section-card:hover::after {
    opacity: 1;
}

/* Countdown timer glow */
#countdown {
    display: inline-block;
    padding: 0.6rem 2.5rem;
    background: rgba(255, 0, 0, 0.03);
    border: 1px solid rgba(255, 0, 0, 0.12);
    border-radius: 4px;
    animation: timerGlow 2.5s ease-in-out infinite alternate;
}

@keyframes timerGlow {
    from { text-shadow: 0 0 12px rgba(255, 0, 0, 0.3); box-shadow: none; }
    to   { text-shadow: 0 0 30px rgba(255, 0, 0, 0.7), 0 0 60px rgba(255, 0, 0, 0.2); box-shadow: 0 0 20px rgba(255, 0, 0, 0.06); }
}

/* Payment section outer glow */
.payment-section-modern {
    box-shadow: 0 0 60px rgba(255, 0, 0, 0.1),
                inset 0 0 40px rgba(255, 0, 0, 0.025) !important;
}

/* Highlight text */
.highlight {
    color: var(--primary-red);
    font-weight: 600;
    text-shadow: 0 0 10px rgba(255, 0, 0, 0.4);
}

/* Proof images grid */
.proof-divider {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 2rem 0 1.5rem;
    color: #444;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.6rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.proof-divider::before,
.proof-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, #222);
}

.proof-divider::after {
    background: linear-gradient(90deg, #222, transparent);
}

.proof-img-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 10px;
    margin-top: 0.5rem;
}

.proof-img-container {
    position: relative;
    background: #000;
    border: 1px solid var(--border-color);
    overflow: hidden;
    cursor: pointer;
    line-height: 0;
    transition: border-color 0.25s, box-shadow 0.25s;
}

.proof-img-container:hover {
    border-color: var(--primary-red);
    box-shadow: 0 0 14px rgba(255, 0, 0, 0.2);
}

.proof-img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    display: block;
    filter: brightness(0.9) contrast(1.05);
    transition: filter 0.25s, transform 0.3s;
}

.proof-img-container:hover .proof-img {
    filter: brightness(1) contrast(1.1);
    transform: scale(1.03);
}

.proof-img-container .video-label {
    position: absolute;
    top: 6px;
    left: 6px;
}

/* Lightbox */
.lightbox-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 99999;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 1rem;
    cursor: zoom-out;
    backdrop-filter: blur(6px);
    animation: fadeIn 0.2s ease;
}

.lightbox-overlay img {
    max-width: 92vw;
    max-height: 82vh;
    object-fit: contain;
    border: 1px solid #333;
    box-shadow: 0 0 40px rgba(255, 0, 0, 0.1);
}

.lightbox-label {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.65rem;
    color: var(--primary-red);
    letter-spacing: 2px;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 24px;
    font-size: 1.4rem;
    color: #555;
    cursor: pointer;
    transition: color 0.2s;
    line-height: 1;
}

.lightbox-close:hover { color: #fff; }

@media (max-width: 768px) {
    .proof-img-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Subtle red line under h2 */
h2::after {
    content: '';
    display: block;
    width: 2.5rem;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-red), transparent);
    margin-top: 0.5rem;
    opacity: 0.6;
}
