.claim-main {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px;
}

.viewport-container {
    width: 100%;
    max-width: 700px;
    height: 450px;
    background: #000;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.camera-sim {
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #0f1c2e 0%, #071221 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--muted);
    font-family: 'Courier Prime', monospace;
    font-size: 0.8rem;
    position: relative;
}

.sim-noise {
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.6' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.05;
    pointer-events: none;
}

.viewport-overlay {
    position: absolute;
    inset: 0;
    z-index: 5;
    pointer-events: none;
}

.scan-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--foam), transparent);
    animation: scanMove 4s infinite linear;
    box-shadow: 0 0 10px var(--foam);
}

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

.corners .corner {
    position: absolute;
    width: 30px;
    height: 30px;
    border: 2px solid var(--foam);
}

.corner.tl { top: 20px; left: 20px; border-right: 0; border-bottom: 0; }
.corner.tr { top: 20px; right: 20px; border-left: 0; border-bottom: 0; }
.corner.bl { bottom: 20px; left: 20px; border-right: 0; border-top: 0; }
.corner.br { bottom: 20px; right: 20px; border-left: 0; border-top: 0; }

.viewport-meta {
    position: absolute;
    bottom: 25px;
    left: 40px;
    right: 40px;
    display: flex;
    justify-content: space-between;
    font-family: 'Courier Prime', monospace;
    font-size: 0.7rem;
    color: var(--foam);
    letter-spacing: 0.05em;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.viewport-controls {
    position: absolute;
    bottom: 30px;
    left: 0;
    width: 100%;
    z-index: 10;
    display: flex;
    justify-content: space-around;
    padding: 0 50px;
}

.capture-btn {
    width: 65px;
    height: 65px;
    background: transparent;
    border: 4px solid var(--white);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    box-shadow: 0 0 20px rgba(0,0,0,0.5);
}

.capture-btn:hover {
    transform: scale(1.1);
}

.capture-btn:active {
    transform: scale(0.95);
}

.inner-circle {
    width: 44px;
    height: 44px;
    background: var(--white);
    border-radius: 50%;
}

.prev-box {
    width: 180px;
    height: 120px;
    flex-shrink: 0;
    background: #000;
    border: 1px solid var(--foam);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.prev-box img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* Don't cut off the baked UI */
}

.evidence-tag {
    position: absolute;
    top: 5px;
    right: 5px;
    background: var(--foam);
    color: #000;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 0.7rem;
    padding: 2px 6px;
    border-radius: 2px;
}

#evidenceGallery::-webkit-scrollbar {
    height: 6px;
}
#evidenceGallery::-webkit-scrollbar-track {
    background: rgba(255,255,255,0.05);
}
#evidenceGallery::-webkit-scrollbar-thumb {
    background: var(--foam);
    border-radius: 3px;
}

.assessment-panel {
    margin-top: 30px;
    width: 100%;
    max-width: 700px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 24px;
    animation: slideUp 0.4s ease-out;
}

@media (max-width: 600px) {
    .report-form {
        grid-template-columns: 1fr !important;
    }
    
    .prev-box {
        width: 140px;
        height: 100px;
    }
}

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

.panel-header {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.2rem;
    letter-spacing: 0.1em;
    color: var(--foam);
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 8px;
}

.audit-entry {
    background: rgba(0,0,0,0.2);
    border-left: 3px solid #2ecc71;
    padding: 12px 16px;
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.audit-entry .info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.audit-entry .label {
    font-family: 'Courier Prime', monospace;
    font-size: 0.75rem;
    color: var(--foam);
}

.audit-entry .detail {
    font-size: 0.85rem;
}

.audit-entry .hash {
    font-family: 'Courier Prime', monospace;
    font-size: 0.65rem;
    color: var(--muted);
}

.flash {
    position: absolute;
    inset: 0;
    background: #fff;
    z-index: 100;
    opacity: 0;
    pointer-events: none;
}

.flash.active {
    animation: captureFlash 0.3s ease-out;
}

@keyframes captureFlash {
    0% { opacity: 1; }
    100% { opacity: 0; }
}
