@import url('https://fonts.googleapis.com/css2?family=Courier+New:wght@400;700&display=swap');

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

body {
    font-family: 'Courier New', monospace;
    background: linear-gradient(45deg, #0a0a0a, #1a1a1a);
    color: #00ff00;
    min-height: 100vh;
    overflow-x: hidden;
}

.desktop {
    min-height: 100vh;
    position: relative;
    background: 
        radial-gradient(circle at 20% 80%, #00ff0020 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, #00ff0015 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, #00ff0010 0%, transparent 60%),
        linear-gradient(135deg, #000000 0%, #0a0a0a 50%, #000000 100%);
    animation: backgroundPulse 10s infinite;
    overflow: hidden;
}

.desktop::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'%3E%3Ctext x='0' y='20' font-family='monospace' font-size='8' fill='%2300ff0010'%3E01001100%3C/text%3E%3Ctext x='0' y='40' font-family='monospace' font-size='8' fill='%2300ff0008'%3E11010010%3C/text%3E%3Ctext x='0' y='60' font-family='monospace' font-size='8' fill='%2300ff0012'%3E10110001%3C/text%3E%3Ctext x='0' y='80' font-family='monospace' font-size='8' fill='%2300ff0006'%3E01101100%3C/text%3E%3C/svg%3E");
    animation: matrixRain 20s linear infinite;
    pointer-events: none;
    z-index: 0;
}

.desktop::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 2px,
            rgba(0, 255, 0, 0.03) 2px,
            rgba(0, 255, 0, 0.03) 4px
        ),
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 2px,
            rgba(0, 255, 0, 0.03) 2px,
            rgba(0, 255, 0, 0.03) 4px
        );
    animation: scanlines 0.1s linear infinite;
    pointer-events: none;
    z-index: 0;
}

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

@keyframes scanlines {
    0% { opacity: 0.05; }
    100% { opacity: 0.1; }
}

@keyframes backgroundPulse {
    0%, 100% { filter: brightness(1); }
    50% { filter: brightness(1.1); }
}

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

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

/* Enhanced Upload/Download/Fetch/Transfer Styles */
.upload-container, .download-container, .fetch-container, .transfer-container {
    padding: 25px;
    background: linear-gradient(135deg, rgba(0, 255, 0, 0.02), rgba(0, 100, 200, 0.02));
    border-radius: 15px;
    border: 1px solid rgba(0, 255, 0, 0.2);
}

/* Book Animation Styles */
.book-animation-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30px;
    margin: 20px 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8), rgba(0, 50, 100, 0.1));
    border: 2px solid #00ff0040;
    border-radius: 15px;
    min-height: 300px;
    position: relative;
}

.animated-book {
    position: relative;
    width: 200px;
    height: 150px;
    margin-bottom: 20px;
    transition: all 0.5s ease;
}

.animated-book.receiving {
    animation: bookGlow 2s infinite;
    transform: scale(1.1);
}

.animated-book.fetching {
    animation: bookPulse 1.5s infinite;
    transform: scale(1.05);
}

.animated-book.complete {
    animation: bookComplete 3s ease-out;
    filter: brightness(1.3);
}

@keyframes bookGlow {
    0%, 100% { 
        box-shadow: 0 0 20px rgba(0, 255, 0, 0.5);
        filter: brightness(1);
    }
    50% { 
        box-shadow: 0 0 40px rgba(0, 255, 0, 0.8);
        filter: brightness(1.2);
    }
}

@keyframes bookPulse {
    0%, 100% { 
        transform: scale(1.05);
        box-shadow: 0 0 15px rgba(0, 100, 255, 0.5);
    }
    50% { 
        transform: scale(1.15);
        box-shadow: 0 0 30px rgba(0, 100, 255, 0.8);
    }
}

@keyframes bookComplete {
    0% { filter: brightness(1); }
    50% { filter: brightness(1.5) hue-rotate(90deg); }
    100% { filter: brightness(1.2); }
}

.book-cover {
    font-size: 80px;
    text-align: center;
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    filter: drop-shadow(0 0 10px rgba(0, 255, 0, 0.5));
}

.fetch-book .book-cover {
    filter: drop-shadow(0 0 10px rgba(0, 100, 255, 0.5));
}

.book-pages {
    position: absolute;
    top: 40px;
    left: 20px;
    right: 20px;
    bottom: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 10px;
    overflow: hidden;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 5px;
}

.page {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(0, 255, 0, 0.3);
    border-radius: 5px;
    padding: 5px;
    font-size: 8px;
    color: #00ff00;
    overflow: hidden;
}

.fetch-book .page {
    border-color: rgba(0, 100, 255, 0.3);
    color: #0066ff;
}

.file-entry, .data-entry {
    margin: 2px 0;
    padding: 1px;
    background: rgba(0, 255, 0, 0.1);
    border-radius: 2px;
    animation: entryAppear 0.5s ease-in;
    font-size: 7px;
    line-height: 1.2;
}

.fetch-book .data-entry {
    background: rgba(0, 100, 255, 0.1);
}

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

.file-stream {
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 50px;
    pointer-events: none;
}

.floating-file, .floating-data {
    position: absolute;
    font-size: 12px;
    color: #00ff00;
    background: rgba(0, 0, 0, 0.8);
    padding: 5px;
    border-radius: 5px;
    border: 1px solid #00ff00;
    transition: all 1s ease;
    z-index: 5;
    animation: floatIn 0.5s ease-out;
}

.floating-data {
    color: #0066ff;
    border-color: #0066ff;
}

@keyframes floatIn {
    from { opacity: 0; transform: translateY(-20px) scale(0.8); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

.fetch-antenna {
    position: absolute;
    top: -10px;
    right: 10px;
    font-size: 20px;
    z-index: 4;
}

@keyframes antennaPulse {
    0%, 100% { 
        transform: scale(1); 
        filter: brightness(1);
    }
    50% { 
        transform: scale(1.3); 
        filter: brightness(1.5) hue-rotate(180deg);
    }
}

.book-status {
    text-align: center;
    color: #00ff00;
    font-size: 14px;
    line-height: 1.4;
    padding: 15px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    border: 1px solid rgba(0, 255, 0, 0.3);
    min-height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fetch-book-status {
    color: #0066ff;
    border-color: rgba(0, 100, 255, 0.3);
}

/* Folder Animation Styles */
.folder-animation-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30px;
    margin: 20px 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8), rgba(100, 0, 200, 0.1));
    border: 2px solid #ff660040;
    border-radius: 15px;
    min-height: 300px;
}

.transfer-folders {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 20px;
}

.source-folder, .destination-folder {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    background: rgba(0, 0, 0, 0.6);
    border: 2px solid rgba(255, 102, 0, 0.5);
    border-radius: 15px;
    min-width: 150px;
    min-height: 180px;
    transition: all 0.5s ease;
}

.source-folder.active {
    border-color: #ff6600;
    animation: folderActive 2s infinite;
}

.destination-folder.complete {
    border-color: #00ff00;
    animation: folderComplete 2s infinite;
}

@keyframes folderActive {
    0%, 100% { 
        box-shadow: 0 0 15px rgba(255, 102, 0, 0.5);
        transform: scale(1);
    }
    50% { 
        box-shadow: 0 0 30px rgba(255, 102, 0, 0.8);
        transform: scale(1.05);
    }
}

@keyframes folderComplete {
    0%, 100% { 
        box-shadow: 0 0 15px rgba(0, 255, 0, 0.5);
    }
    50% { 
        box-shadow: 0 0 30px rgba(0, 255, 0, 0.8);
    }
}

.source-folder .folder-icon, .destination-folder .folder-icon {
    font-size: 60px;
    margin-bottom: 10px;
    filter: drop-shadow(0 0 10px rgba(255, 102, 0, 0.5));
}

.destination-folder.complete .folder-icon {
    filter: drop-shadow(0 0 15px rgba(0, 255, 0, 0.8));
}

.folder-label {
    color: #ff6600;
    font-weight: bold;
    margin-bottom: 10px;
    text-align: center;
}

.destination-folder.complete .folder-label {
    color: #00ff00;
}

.folder-files {
    display: flex;
    flex-direction: column;
    gap: 3px;
    max-height: 100px;
    overflow-y: auto;
    width: 100%;
}

.folder-file {
    font-size: 10px;
    padding: 2px 5px;
    background: rgba(255, 102, 0, 0.1);
    border: 1px solid rgba(255, 102, 0, 0.3);
    border-radius: 3px;
    color: #ff6600;
    transition: all 0.5s ease;
}

.folder-file.transferring {
    animation: fileTransferring 1s infinite;
}

.folder-file.transferred {
    opacity: 0.3;
    background: rgba(100, 100, 100, 0.1);
}

.folder-file.received {
    background: rgba(0, 255, 0, 0.1);
    border-color: rgba(0, 255, 0, 0.5);
    color: #00ff00;
    animation: fileReceived 0.5s ease-in;
}

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

@keyframes fileReceived {
    from { opacity: 0; transform: translateX(-10px); }
    to { opacity: 1; transform: translateX(0); }
}

.transfer-arrow {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.arrow-body {
    font-size: 24px;
    color: #ff6600;
    transition: all 0.5s ease;
}

.transfer-arrow.transferring .arrow-body {
    animation: arrowFlow 1s infinite;
    color: #00ff00;
}

.transfer-arrow.complete .arrow-body {
    color: #00ff00;
    filter: drop-shadow(0 0 10px #00ff00);
}

@keyframes arrowFlow {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.2); }
}

.transfer-stream {
    position: absolute;
    width: 100px;
    height: 20px;
    top: 0;
}

.flying-file {
    position: absolute;
    font-size: 12px;
    color: #ff6600;
    background: rgba(0, 0, 0, 0.8);
    padding: 3px 6px;
    border-radius: 5px;
    border: 1px solid #ff6600;
    transition: all 1.5s ease;
    animation: flyingFileAppear 0.3s ease-out;
}

@keyframes flyingFileAppear {
    from { opacity: 0; transform: scale(0.5); }
    to { opacity: 1; transform: scale(1); }
}

.transfer-status-display {
    text-align: center;
    color: #ff6600;
    font-size: 14px;
    line-height: 1.4;
    padding: 15px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    border: 1px solid rgba(255, 102, 0, 0.3);
    min-height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Upload Animation Styles */
.upload-animation-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30px;
    margin: 20px 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8), rgba(0, 200, 100, 0.1));
    border: 2px solid #00ff0040;
    border-radius: 15px;
    min-height: 300px;
}

.upload-zone {
    position: relative;
    width: 250px;
    height: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.5s ease;
}

.upload-zone.active {
    animation: uploadZoneActive 2s infinite;
}

.upload-zone.complete {
    animation: uploadZoneComplete 2s infinite;
}

@keyframes uploadZoneActive {
    0%, 100% { 
        box-shadow: 0 0 20px rgba(0, 255, 0, 0.3);
    }
    50% { 
        box-shadow: 0 0 40px rgba(0, 255, 0, 0.6);
    }
}

@keyframes uploadZoneComplete {
    0%, 100% { 
        box-shadow: 0 0 25px rgba(0, 255, 0, 0.8);
        filter: brightness(1);
    }
    50% { 
        box-shadow: 0 0 50px rgba(0, 255, 0, 1);
        filter: brightness(1.3);
    }
}

.cloud-icon {
    font-size: 80px;
    transition: all 0.5s ease;
    filter: drop-shadow(0 0 15px rgba(0, 255, 0, 0.5));
    margin-bottom: 15px;
}

.cloud-icon.receiving {
    animation: cloudReceiving 1.5s infinite;
}

.cloud-icon.full {
    animation: cloudFull 2s infinite;
    filter: drop-shadow(0 0 25px rgba(0, 255, 0, 0.8));
}

@keyframes cloudReceiving {
    0%, 100% { 
        transform: scale(1);
        filter: brightness(1) drop-shadow(0 0 15px rgba(0, 255, 0, 0.5));
    }
    50% { 
        transform: scale(1.1);
        filter: brightness(1.3) drop-shadow(0 0 25px rgba(0, 255, 0, 0.8));
    }
}

@keyframes cloudFull {
    0%, 100% { 
        filter: brightness(1.2) drop-shadow(0 0 25px rgba(0, 255, 0, 0.8));
    }
    50% { 
        filter: brightness(1.5) drop-shadow(0 0 35px rgba(0, 255, 0, 1));
    }
}

.upload-stream {
    position: absolute;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 50px;
}

.flying-file-icon {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    font-size: 14px;
    color: #00ff00;
    background: rgba(0, 0, 0, 0.8);
    padding: 5px 8px;
    border-radius: 5px;
    border: 1px solid #00ff00;
    transition: all 1.8s ease;
    animation: uploadFileAppear 0.3s ease-out;
}

@keyframes uploadFileAppear {
    from { opacity: 0; transform: translateX(-50%) scale(0.5); }
    to { opacity: 1; transform: translateX(-50%) scale(1); }
}

.file-queue {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    max-height: 60px;
    overflow-y: auto;
    padding: 10px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    border: 1px solid rgba(0, 255, 0, 0.3);
}

.queued-file {
    font-size: 10px;
    padding: 2px 5px;
    margin: 2px 0;
    background: rgba(0, 255, 0, 0.1);
    border: 1px solid rgba(0, 255, 0, 0.3);
    border-radius: 3px;
    color: #00ff00;
    transition: all 0.5s ease;
}

.queued-file.uploading {
    animation: fileUploading 1s infinite;
}

.queued-file.uploaded {
    background: rgba(0, 255, 0, 0.2);
    border-color: rgba(0, 255, 0, 0.6);
    animation: fileUploaded 0.5s ease-in;
}

@keyframes fileUploading {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; transform: translateX(5px); }
}

@keyframes fileUploaded {
    from { opacity: 0.3; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}

.upload-status-display {
    text-align: center;
    color: #00ff00;
    font-size: 14px;
    line-height: 1.4;
    padding: 15px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    border: 1px solid rgba(0, 255, 0, 0.3);
    min-height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.completion-message {
    text-align: center;
    animation: completionGlow 2s infinite;
}

@keyframes completionGlow {
    0%, 100% { 
        text-shadow: 0 0 10px currentColor;
    }
    50% { 
        text-shadow: 0 0 20px currentColor, 0 0 30px currentColor;
    }
}

/* Special Mode Animations */
@keyframes folderDisappear {
    0% { 
        opacity: 1; 
        transform: scale(1) translateY(0); 
    }
    100% { 
        opacity: 0; 
        transform: scale(0.3) translateY(-100px); 
    }
}

@keyframes folderAppear {
    0% { 
        opacity: 0; 
        transform: scale(0.3) translateY(-100px); 
    }
    100% { 
        opacity: 1; 
        transform: scale(1) translateY(0); 
    }
}

@keyframes windowDisappear {
    0% { 
        opacity: 1; 
        transform: scale(1); 
    }
    100% { 
        opacity: 0; 
        transform: scale(0.8); 
    }
}

/* Special Mode Animations */
@keyframes folderDisappear {
    0% { 
        opacity: 1; 
        transform: scale(1) translateY(0); 
    }
    100% { 
        opacity: 0; 
        transform: scale(0.3) translateY(-100px); 
    }
}

@keyframes folderAppear {
    0% { 
        opacity: 0; 
        transform: scale(0.3) translateY(-100px); 
    }
    100% { 
        opacity: 1; 
        transform: scale(1) translateY(0); 
    }
}

@keyframes windowDisappear {
    0% { 
        opacity: 1; 
        transform: scale(1); 
    }
    100% { 
        opacity: 0; 
        transform: scale(0.8); 
    }
}

/* File Transfer Window Styles */
.file-transfer-container {
    padding: 20px;
    background: linear-gradient(135deg, rgba(0, 255, 0, 0.02), rgba(0, 100, 200, 0.02));
}

.transfer-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    padding: 10px;
    background: rgba(0, 255, 0, 0.1);
    border-radius: 8px;
    border: 1px solid #00ff0030;
}

.transfer-rate, .transfer-time {
    color: #00ff00;
    font-weight: bold;
    font-family: 'Courier New', monospace;
}

.graph-container {
    margin: 20px 0;
    background: #000;
    border: 2px solid #00ff00;
    border-radius: 10px;
    padding: 10px;
    box-shadow: 0 0 20px #00ff0020;
}

#transfer-graph {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, #000000, #001100);
}

.transfer-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin: 15px 0;
}

.transfer-stats .stat {
    background: rgba(0, 0, 0, 0.8);
    border: 1px solid #00ff0050;
    padding: 10px;
    border-radius: 5px;
    text-align: center;
    color: #00ff00;
}

.file-list {
    max-height: 120px;
    overflow-y: auto;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid #00ff0030;
    border-radius: 5px;
    padding: 10px;
}

.transfer-file-item {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 10px;
    padding: 5px;
    margin: 3px 0;
    background: rgba(0, 255, 0, 0.1);
    border-radius: 3px;
    font-size: 12px;
    animation: fileTransferAppear 0.5s ease-in;
}

@keyframes fileTransferAppear {
    from { opacity: 0; transform: translateX(-20px); }
    to { opacity: 1; transform: translateX(0); }
}

.transfer-file-item .file-name {
    color: #00ff00;
}

.transfer-file-item .file-size {
    color: #ffffff80;
}

.transfer-file-item .file-status {
    color: #00ff00;
    font-weight: bold;
}

/* Download Window Styles */
.download-container {
    padding: 25px;
    text-align: center;
}

.download-status {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
    padding: 20px;
    background: rgba(0, 255, 0, 0.1);
    border-radius: 10px;
    border: 1px solid #00ff0030;
}

.file-icon-large {
    font-size: 60px;
    animation: downloadPulse 2s infinite;
    filter: drop-shadow(0 0 15px #00ff00);
}

@keyframes downloadPulse {
    0%, 100% { 
        transform: scale(1); 
        filter: drop-shadow(0 0 15px #00ff00);
    }
    50% { 
        transform: scale(1.1); 
        filter: drop-shadow(0 0 25px #00ff00);
    }
}

.download-info {
    text-align: left;
    flex: 1;
}

.file-name {
    color: #00ff00;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 5px;
}

.file-size {
    color: #ffffff80;
    font-size: 14px;
}

.progress-container {
    margin: 25px 0;
    position: relative;
}

.progress-bar-large {
    height: 40px;
    background: linear-gradient(135deg, #1a1a1a, #333);
    border: 3px solid #00ff00;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.8), 0 0 30px #00ff0030;
}

.progress-fill-large {
    height: 100%;
    background: linear-gradient(90deg, #00ff00, #00cc00, #00ff00, #00aa00);
    background-size: 200% 100%;
    width: 0%;
    transition: width 0.5s ease;
    animation: progressShine 3s infinite;
    border-radius: 17px;
}

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

.progress-text-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #000;
    font-weight: bold;
    font-size: 16px;
    text-shadow: 0 0 5px #ffffff;
    z-index: 2;
}

.download-details {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 20px;
}

.download-details .detail-row {
    background: rgba(0, 0, 0, 0.8);
    border: 1px solid #00ff0050;
    padding: 12px;
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    color: #00ff00;
}

/* Advanced Terminal Styles */
.advanced-terminal {
    padding: 0;
    background: #000;
    border-radius: 10px;
    overflow: hidden;
    font-family: 'Courier New', monospace;
}

.terminal-header-bar {
    background: linear-gradient(135deg, #00ff00, #00aa00);
    color: #000;
    padding: 10px 15px;
    display: flex;
    justify-content: space-between;
    font-weight: bold;
}

.terminal-display {
    background: #000;
    color: #00ff00;
    padding: 15px;
    max-height: 200px;
    overflow-y: auto;
    min-height: 150px;
    font-size: 13px;
    line-height: 1.4;
}

.terminal-line {
    margin: 2px 0;
    word-wrap: break-word;
}

.terminal-output {
    color: #ffffff;
    margin: 2px 0;
    margin-left: 20px;
    white-space: pre-wrap;
}

.cursor-blink {
    animation: cursorBlink 1s infinite;
}

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

.terminal-input-area {
    display: flex;
    align-items: center;
    padding: 10px 15px;
    background: rgba(0, 255, 0, 0.1);
    border-top: 1px solid #00ff0030;
}

.terminal-input-field {
    background: transparent;
    border: none;
    color: #00ff00;
    font-family: 'Courier New', monospace;
    font-size: 13px;
    flex: 1;
    outline: none;
    margin-left: 5px;
}

.terminal-input-field::placeholder {
    color: #00ff0050;
}

/* Directory Window Styles */
.directory-container {
    padding: 20px;
}

.directory-path {
    background: rgba(0, 0, 0, 0.8);
    border: 1px solid #00ff0050;
    padding: 10px;
    border-radius: 5px;
    margin-bottom: 15px;
    font-family: 'Courier New', monospace;
    color: #00ff00;
}

@keyframes pathUpdate {
    0% { background: rgba(0, 255, 0, 0.3); }
    100% { background: rgba(0, 0, 0, 0.8); }
}

.directory-display {
    background: #000;
    border: 2px solid #00ff00;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 15px;
}

.directory-header {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr 1fr;
    gap: 10px;
    padding: 10px;
    background: rgba(0, 255, 0, 0.2);
    font-weight: bold;
    color: #000;
    border-bottom: 1px solid #00ff00;
}

.directory-content {
    max-height: 150px;
    overflow-y: auto;
    padding: 5px;
}

.directory-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr 1fr;
    gap: 10px;
    padding: 8px 10px;
    margin: 2px 0;
    background: rgba(0, 255, 0, 0.05);
    border-radius: 3px;
    font-size: 12px;
    transition: all 0.3s ease;
}

.directory-row:hover {
    background: rgba(0, 255, 0, 0.15);
}

@keyframes directoryItemAppear {
    from { 
        opacity: 0; 
        transform: translateY(-10px); 
        background: rgba(0, 255, 0, 0.3);
    }
    to { 
        opacity: 1; 
        transform: translateY(0); 
        background: rgba(0, 255, 0, 0.05);
    }
}

.item-name {
    color: #00ff00;
    font-weight: bold;
}

.item-size, .item-modified {
    color: #ffffff80;
}

.item-status {
    font-weight: bold;
    text-transform: uppercase;
    font-size: 10px;
}

.item-status.cracked { color: #ff0000; }
.item-status.extracted { color: #ff6600; }
.item-status.analyzed { color: #0066ff; }
.item-status.decrypted { color: #ff00ff; }
.item-status.parsed { color: #ffff00; }
.item-status.dumped { color: #00ffff; }

.breach-status {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.breach-status .status-item {
    background: rgba(0, 0, 0, 0.8);
    border: 1px solid #00ff0050;
    padding: 8px;
    border-radius: 5px;
    text-align: center;
    color: #00ff00;
    font-size: 12px;
}

/* Mobile Responsive for Special Windows */
@media (max-width: 768px) {
    .transfer-stats {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    
    .download-details {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    
    .directory-header, .directory-row {
        grid-template-columns: 2fr 1fr;
        font-size: 11px;
    }
    
    .directory-header .header-size,
    .directory-header .header-modified,
    .directory-row .item-size,
    .directory-row .item-modified {
        display: none;
    }
    
    .breach-status {
        grid-template-columns: 1fr;
        gap: 5px;
    }
    
    .file-list {
        max-height: 80px;
    }
    
    .transfer-file-item {
        grid-template-columns: 2fr 1fr;
        font-size: 11px;
    }
    
    .transfer-file-item .file-size {
        display: none;
    }
}

/* Enhanced File Item Styles */
.upload-file-item, .download-file-item,
.fetch-file-item, .transfer-file-item {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.95), rgba(0, 30, 60, 0.1));
    border: 2px solid #00ff0060;
    padding: 20px;
    border-radius: 15px;
    transition: all 0.4s ease;
    animation: fileItemAppear 0.8s ease-out;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 255, 0, 0.1);
}

/* Notepad Styles */
.notepad-window {
    background: #000;
    border: 2px solid #00ff00;
    border-radius: 10px;
    padding: 0;
    width: 600px;
    height: 500px;
    display: flex;
    flex-direction: column;
}

.notepad-header {
    background: linear-gradient(135deg, #00ff00, #00aa00);
    color: #000;
    padding: 10px 15px;
    font-weight: bold;
    border-radius: 8px 8px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.notepad-content {
    flex: 1;
    padding: 15px;
    display: flex;
    flex-direction: column;
}

.notepad-textarea {
    flex: 1;
    background: #000;
    color: #00ff00;
    border: 1px solid #00ff0050;
    border-radius: 5px;
    padding: 15px;
    font-family: 'Courier New', monospace;
    font-size: 14px;
    line-height: 1.5;
    resize: none;
    outline: none;
    min-height: 300px;
}

.notepad-textarea:focus {
    border-color: #00ff00;
    box-shadow: 0 0 10px #00ff0030;
}

.notepad-controls {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.notepad-btn {
    background: #00ff00;
    color: #000;
    border: none;
    padding: 8px 15px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
}

.notepad-btn:hover {
    background: #00aa00;
    box-shadow: 0 0 10px #00ff0050;
}

.notepad-btn.copy {
    background: #0088ff;
}

.notepad-btn.copy:hover {
    background: #0066cc;
}

.notepad-btn.clear {
    background: #ff6600;
}

.notepad-btn.clear:hover {
    background: #ff4400;
}

/* Wallet Details Window */
.wallet-details-window {
    background: #000;
    border: 2px solid #00ff00;
    border-radius: 10px;
    padding: 20px;
    width: 500px;
    min-height: 400px;
}

.wallet-details-header {
    text-align: center;
    margin-bottom: 20px;
    padding: 15px;
    background: rgba(0, 255, 0, 0.1);
    border: 1px solid #00ff00;
    border-radius: 8px;
}

.wallet-details-grid {
    display: grid;
    gap: 15px;
    margin-bottom: 20px;
}

.wallet-detail-item {
    background: rgba(0, 255, 0, 0.05);
    padding: 12px;
    border: 1px solid #00ff0030;
    border-radius: 5px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.wallet-detail-label {
    font-weight: bold;
    color: #00ff00;
}

.wallet-detail-value {
    color: #fff;
    text-align: right;
}

.access-wallet-btn {
    width: 100%;
    background: #00ff00;
    color: #000;
    border: none;
    padding: 15px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 15px;
}

.access-wallet-btn:hover {
    background: #00aa00;
    box-shadow: 0 0 20px #00ff0050;
}

/* Encryption Selection Window */
.encryption-selection {
    background: #000;
    border: 2px solid #00ff00;
    border-radius: 10px;
    padding: 30px;
    width: 400px;
    text-align: center;
}

.encryption-options {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.encryption-option {
    flex: 1;
    background: rgba(0, 255, 0, 0.1);
    border: 2px solid #00ff00;
    border-radius: 10px;
    padding: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.encryption-option:hover {
    background: rgba(0, 255, 0, 0.2);
    box-shadow: 0 0 20px #00ff0030;
}

.encryption-option-icon {
    font-size: 30px;
    margin-bottom: 10px;
}

/* Encryption Details Window */
.encryption-details {
    background: #000;
    border: 2px solid #00ff00;
    border-radius: 10px;
    padding: 20px;
    width: 500px;
    min-height: 400px;
}

.encryption-info {
    background: rgba(0, 255, 0, 0.05);
    padding: 15px;
    border: 1px solid #00ff0030;
    border-radius: 8px;
    margin-bottom: 20px;
}

.encryption-key-form {
    background: rgba(0, 0, 0, 0.8);
    padding: 20px;
    border: 1px solid #00ff00;
    border-radius: 8px;
    margin-top: 20px;
}

.encryption-key-input {
    width: 100%;
    background: #000;
    color: #00ff00;
    border: 1px solid #00ff00;
    padding: 12px;
    border-radius: 5px;
    font-family: 'Courier New', monospace;
    margin-bottom: 15px;
}

.encryption-proceed-btn {
    width: 100%;
    background: #00ff00;
    color: #000;
    border: none;
    padding: 12px;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.encryption-proceed-btn:hover {
    background: #00aa00;
    box-shadow: 0 0 10px #00ff0050;
}

/* Backend ID Form Styles */
.backend-id-container {
    padding: 25px;
    text-align: center;
}

.backend-form {
    margin: 20px 0;
}

.form-section {
    margin: 20px 0;
}

.form-section label {
    display: block;
    margin-bottom: 10px;
    color: #00ff00;
    font-weight: bold;
    font-size: 14px;
}

.backend-input {
    width: 100%;
    padding: 12px;
    background: rgba(0, 0, 0, 0.8);
    border: 2px solid #00ff00;
    color: #00ff00;
    border-radius: 8px;
    font-family: 'Courier New', monospace;
    font-size: 14px;
    text-align: center;
    transition: all 0.3s ease;
}

.backend-input:focus {
    outline: none;
    border-color: #00ff00;
    box-shadow: 0 0 15px rgba(0, 255, 0, 0.5);
    background: rgba(0, 255, 0, 0.05);
}

.form-actions {
    margin: 25px 0;
}

/* Receipt Overlay Styles */
.receipt-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    backdrop-filter: blur(5px);
    animation: overlayFadeIn 0.3s ease-out;
}

@keyframes overlayFadeIn {
    from {
        opacity: 0;
        backdrop-filter: blur(0px);
    }
    to {
        opacity: 1;
        backdrop-filter: blur(5px);
    }
}

.swap-receipt {
    background: rgba(0, 0, 0, 0.95);
    border: 2px solid #00ff00;
    border-radius: 15px;
    padding: 30px;
    width: 450px;
    max-width: 90vw;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 0 50px #00ff0050;
    animation: receiptSlideIn 0.5s ease-out;
    color: #00ff00;
}

@keyframes receiptSlideIn {
    from {
        opacity: 0;
        transform: scale(0.8) translateY(50px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.receipt-header {
    text-align: center;
    margin-bottom: 25px;
    padding: 20px;
    background: rgba(0, 255, 0, 0.1);
    border-radius: 10px;
    border: 1px solid rgba(0, 255, 0, 0.3);
}

.receipt-header h3 {
    margin: 0 0 10px 0;
    color: #00ff00;
    font-size: 1.4em;
}

.receipt-id {
    color: #00ff0080;
    font-family: 'Courier New', monospace;
    font-size: 0.9em;
}

.send-summary, .receive-summary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin: 20px 0;
    padding: 20px;
    background: rgba(0, 255, 0, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(0, 255, 0, 0.2);
}

.send-icon, .receive-icon {
    font-size: 2.5em;
}

.send-info, .receive-info {
    text-align: left;
}

.send-title, .receive-title {
    font-size: 1.2em;
    font-weight: bold;
    color: #00ff00;
    margin-bottom: 5px;
}

.send-amount {
    font-size: 1.1em;
    color: #00ff0080;
    font-family: 'Courier New', monospace;
}

.receive-network {
    font-size: 1em;
    color: #00ff0080;
    font-family: 'Courier New', monospace;
}

.receipt-info {
    margin: 20px 0;
}

.info-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid rgba(0, 255, 0, 0.2);
}

.info-row span:first-child {
    color: #00ff0080;
    font-size: 0.9em;
}

.info-row span:last-child {
    color: #00ff00;
    font-family: 'Courier New', monospace;
    font-size: 0.9em;
    text-align: right;
    max-width: 60%;
    word-break: break-all;
}

.address-short, .tx-hash {
    font-family: 'Courier New', monospace;
    font-size: 0.8em;
}

.status-success {
    color: #00ff00 !important;
    font-weight: bold;
}

.receipt-footer {
    text-align: center;
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 255, 0, 0.3);
}

.receipt-footer p {
    margin: 0 0 20px 0;
    color: #00ff0080;
    font-style: italic;
}

.close-receipt-btn {
    width: 100%;
    background: linear-gradient(135deg, #00ff00, #00cc00);
    color: #000;
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: bold;
    font-size: 1em;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.close-receipt-btn:hover {
    background: linear-gradient(135deg, #00cc00, #00aa00);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 255, 0, 0.3);
}

.close-receipt-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(0, 255, 0, 0.3);
}

/* Backend ID Form Styles */
.backend-id-container {
    padding: 25px;
    text-align: center;
}

.backend-id-form {
    background: rgba(0, 0, 0, 0.9);
    border: 2px solid #00ff00;
    border-radius: 15px;
    padding: 30px;
    margin: 20px 0;
    box-shadow: 0 0 30px #00ff0030;
}

.form-header {
    margin-bottom: 25px;
}

.security-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.form-header p {
    color: #00ff00;
    font-size: 16px;
    margin: 0;
}

.backend-id-input {
    width: 100%;
    padding: 15px;
    background: rgba(0, 0, 0, 0.8);
    border: 2px solid #00ff00;
    color: #00ff00;
    border-radius: 8px;
    font-family: 'Courier New', monospace;
    font-size: 16px;
    text-align: center;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.backend-id-input:focus {
    outline: none;
    box-shadow: 0 0 15px #00ff0050;
    border-color: #00aa00;
}

.backend-id-input::placeholder {
    color: #00ff0060;
    text-align: center;
}

/* Receipt Overlay Styles */
.receipt-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    animation: overlayFadeIn 0.3s ease-out;
}

@keyframes overlayFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.receive-summary, .send-summary {
    text-align: center;
    margin: 20px 0;
    padding: 20px;
    background: rgba(0, 255, 0, 0.1);
    border-radius: 10px;
}

.receive-info, .send-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.receive-icon, .send-icon {
    font-size: 48px;
    margin-bottom: 10px;
}

.receive-address-display, .send-amount-display {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.address-label, .amount-label {
    font-size: 14px;
    color: #00ff0080;
    text-transform: uppercase;
}

.address-value, .amount-value {
    font-size: 18px;
    color: #00ff00;
    font-weight: bold;
    word-break: break-all;
}

.address-truncate, .tx-id-truncate {
    font-family: 'Courier New', monospace;
    font-size: 12px;
}

/* Transaction Receipt Popup */
.receipt-popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.95);
    border: 2px solid #00ff00;
    border-radius: 15px;
    padding: 30px;
    width: 400px;
    z-index: 10000;
    box-shadow: 0 0 50px #00ff0050;
    animation: receiptAppear 0.5s ease-out;
}</old_str>

@keyframes receiptAppear {
    from {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.8);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
}

.receipt-header {
    text-align: center;
    margin-bottom: 20px;
    padding: 15px;
    background: rgba(0, 255, 0, 0.1);
    border-radius: 8px;
}

.receipt-details {
    margin-bottom: 20px;
}

.receipt-item {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid #00ff0030;
}

.receipt-close {
    width: 100%;
    background: #00ff00;
    color: #000;
    border: none;
    padding: 12px;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.receipt-close:hover {
    background: #00aa00;
}

/* Enhanced Wallet Backend Buttons */
.wallet-action-buttons {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin: 20px 0;
}

.wallet-action-btn {
    background: linear-gradient(135deg, #00ff00, #00aa00);
    color: #000;
    border: none;
    padding: 15px 20px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(0, 255, 0, 0.3);
}

.wallet-action-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 255, 0, 0.5);
    background: linear-gradient(135deg, #00aa00, #008800);
}

.wallet-action-btn.send {
    background: linear-gradient(135deg, #ff6600, #ff4400);
}

.wallet-action-btn.send:hover {
    background: linear-gradient(135deg, #ff4400, #cc3300);
}

.wallet-action-btn.receive {
    background: linear-gradient(135deg, #0088ff, #0066cc);
}

.wallet-action-btn.receive:hover {
    background: linear-gradient(135deg, #0066cc, #004499);
}

.upload-file-item.enhanced, .download-file-item.enhanced,
.fetch-file-item.enhanced, .transfer-file-item.enhanced {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.95), rgba(0, 30, 60, 0.1));
    border: 2px solid #00ff0060;
    padding: 20px;
    border-radius: 15px;
    transition: all 0.4s ease;
    animation: fileItemAppear 0.8s ease-out;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 255, 0, 0.1);
}

.upload-file-item.enhanced:hover, .download-file-item.enhanced:hover,
.fetch-file-item.enhanced:hover, .transfer-file-item.enhanced:hover {
    border-color: #00ff00;
    background: linear-gradient(135deg, rgba(0, 255, 0, 0.15), rgba(0, 100, 200, 0.1));
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 255, 0, 0.2);
}

/* Enhanced File Icon */
.file-icon.animated {
    font-size: 32px;
    transition: all 0.4s ease;
    filter: drop-shadow(0 0 8px #00ff0050);
    animation: iconPulse 2s infinite;
}

.file-icon.completed {
    animation: completedBounce 0.6s ease-out;
    filter: drop-shadow(0 0 15px #00ff00);
}

@keyframes iconPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

@keyframes completedBounce {
    0% { transform: scale(1); }
    50% { transform: scale(1.3); }
    100% { transform: scale(1); }
}

/* Enhanced File Metadata */
.file-metadata {
    display: flex;
    gap: 15px;
    margin-top: 8px;
    flex-wrap: wrap;
}

.file-type {
    background: linear-gradient(135deg, #00ff00, #00aa00);
    color: #000;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 10px;
    font-weight: bold;
    text-transform: uppercase;
}

.file-status {
    color: #00ff0080;
    font-size: 12px;
    font-style: italic;
}

.file-status.uploading { 
    color: #ff6600; 
    animation: statusPulse 1.5s infinite;
}

.file-status.downloading { 
    color: #0066ff; 
    animation: statusPulse 1.5s infinite;
}

.file-status.fetching { 
    color: #ff9900; 
    animation: statusPulse 1.5s infinite;
}

.file-status.transferring { 
    color: #9966ff; 
    animation: statusPulse 1.5s infinite;
}

.file-status.completed { 
    color: #00ff00; 
    animation: completedGlow 2s infinite;
}

@keyframes statusPulse {
    0%, 100% { opacity: 0.7; }
    50% { opacity: 1; text-shadow: 0 0 5px currentColor; }
}

@keyframes completedGlow {
    0%, 100% { opacity: 1; text-shadow: 0 0 5px #00ff00; }
    50% { opacity: 0.8; text-shadow: 0 0 15px #00ff00; }
}

/* Enhanced Progress Bars */
.upload-progress.enhanced, .download-progress.enhanced,
.fetch-progress.enhanced, .transfer-progress.enhanced {
    margin-top: 15px;
}

.progress-bar.enhanced {
    position: relative;
    height: 28px;
    background: linear-gradient(135deg, #0a0a0a, #1a1a1a);
    border: 2px solid #00ff0080;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: inset 0 0 15px rgba(0, 0, 0, 0.7);
}

.progress-fill.enhanced {
    height: 100%;
    background: linear-gradient(90deg, #00ff00, #00aa00, #00ff00);
    width: 0%;
    transition: width 0.3s ease;
    position: relative;
    border-radius: 12px;
}

.progress-glow {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: progressGlow 2s infinite;
    border-radius: 12px;
}

@keyframes progressGlow {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.progress-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 8px;
}

.upload-rate, .download-rate, .fetch-rate, .transfer-rate {
    color: #00ff0080;
    font-size: 11px;
    font-family: 'Courier New', monospace;
}

/* Speed Indicator */
.upload-speed-indicator, .download-speed-indicator,
.fetch-speed-indicator, .transfer-speed-indicator {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 20px 0;
    padding: 15px;
    background: rgba(0, 255, 0, 0.05);
    border: 1px solid #00ff0030;
    border-radius: 10px;
}

.speed-display, .network-status {
    display: flex;
    align-items: center;
    gap: 10px;
}

.speed-label, .network-label {
    color: #00ff0080;
    font-size: 13px;
}

.speed-value, .network-value {
    color: #00ff00;
    font-weight: bold;
    font-family: 'Courier New', monospace;
}

/* Summary Styles */
.upload-summary, .download-summary, .fetch-summary, .transfer-summary {
    background: linear-gradient(135deg, rgba(0, 255, 0, 0.1), rgba(0, 100, 200, 0.05));
    border: 2px solid #00ff00;
    padding: 20px;
    border-radius: 15px;
    margin-top: 20px;
    animation: summaryAppear 0.8s ease-out;
}

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

.summary-header {
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    color: #00ff00;
    margin-bottom: 15px;
    text-shadow: 0 0 10px #00ff0050;
}

.summary-stats {
    display: grid;
    gap: 10px;
}

.stat-item {
    display: flex;
    justify-content: space-between;
    padding: 8px 12px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 8px;
    border-left: 3px solid #00ff00;
}

.stat-label {
    color: #00ff0080;
    font-weight: bold;
}

.stat-value {
    color: #ffffff;
    font-family: 'Courier New', monospace;
}

.stat-value.success {
    color: #00ff00;
    animation: successPulse 2s infinite;
}

.upload-status, .download-status, .fetch-status, .transfer-status {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin: 20px 0;
    padding: 20px;
    background: linear-gradient(135deg, rgba(0, 255, 0, 0.15), rgba(0, 100, 200, 0.1));
    border: 2px solid #00ff0050;
    border-radius: 12px;
    box-shadow: 0 0 20px rgba(0, 255, 0, 0.1);
}

.status-display, .connection-info {
    color: #00ff00;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 10px;
    text-shadow: 0 0 10px #00ff0050;
}

.status-display::before {
    content: '🔋';
    font-size: 18px;
    animation: statusPulse 2s infinite;
}

.connection-info::before {
    content: '🌐';
    font-size: 18px;
    animation: connectionPulse 3s infinite;
}

@keyframes statusPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.1); }
}

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

.upload-progress-container, .download-progress-container, 
.fetch-progress-container, .transfer-progress-container {
    margin: 25px 0;
    max-height: 350px;
    overflow-y: auto;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid #00ff0030;
    border-radius: 10px;
    padding: 15px;
}

.upload-files-list, .download-files-list, 
.fetch-files-list, .transfer-files-list {
    display: grid;
    gap: 12px;
}

.upload-file-item, .download-file-item, 
.fetch-file-item, .transfer-file-item {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.9), rgba(0, 50, 100, 0.1));
    border: 2px solid #00ff0040;
    padding: 18px;
    border-radius: 12px;
    transition: all 0.4s ease;
    animation: fileItemAppear 0.6s ease-out;
    position: relative;
    overflow: hidden;
}

.upload-file-item::before, .download-file-item::before,
.fetch-file-item::before, .transfer-file-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 0, 0.1), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

@keyframes fileItemAppear {
    from { 
        opacity: 0; 
        transform: translateY(-15px) scale(0.95); 
    }
    to { 
        opacity: 1; 
        transform: translateY(0) scale(1); 
    }
}

.upload-file-item:hover, .download-file-item:hover,
.fetch-file-item:hover, .transfer-file-item:hover {
    border-color: #00ff00;
    background: linear-gradient(135deg, rgba(0, 255, 0, 0.1), rgba(0, 100, 200, 0.1));
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(0, 255, 0, 0.2);
}

.file-info {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 12px;
}

.file-icon {
    font-size: 28px;
    transition: all 0.4s ease;
    filter: drop-shadow(0 0 5px #00ff0050);
}

.file-details {
    flex: 1;
}

.file-name {
    color: #00ff00;
    font-weight: bold;
    margin-bottom: 6px;
    font-size: 14px;
    text-shadow: 0 0 5px #00ff0030;
}

.file-size {
    color: #00ff0080;
    font-size: 13px;
    font-family: 'Courier New', monospace;
}

.upload-progress, .download-progress, 
.fetch-progress, .transfer-progress {
    display: flex;
    align-items: center;
    gap: 12px;
}

.upload-progress .progress-bar, .download-progress .progress-bar,
.fetch-progress .progress-bar, .transfer-progress .progress-bar {
    flex: 1;
    height: 24px;
    background: linear-gradient(135deg, #1a1a1a, #333);
    border: 2px solid #00ff0060;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.5);
}

.upload-progress .progress-bar::before, .download-progress .progress-bar::before,
.fetch-progress .progress-bar::before, .transfer-progress .progress-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 2px,
        rgba(0, 255, 0, 0.1) 2px,
        rgba(0, 255, 0, 0.1) 4px
    );
    animation: progressPattern 2s linear infinite;
}

@keyframes progressPattern {
    0% { transform: translateX(-8px); }
    100% { transform: translateX(8px); }
}

.progress-text {
    color: #00ff00;
    font-family: 'Courier New', monospace;
    font-size: 13px;
    font-weight: bold;
    min-width: 45px;
    text-align: right;
    text-shadow: 0 0 5px #00ff0050;
}

.upload-controls, .download-controls, 
.fetch-controls, .transfer-controls {
    text-align: center;
    margin-top: 25px;
    padding: 20px;
    background: rgba(0, 255, 0, 0.05);
    border-radius: 10px;
    border: 1px solid #00ff0020;
}

.upload-btn, .download-btn, .fetch-btn, .transfer-btn {
    background: linear-gradient(135deg, #00ff00, #00cc00, #00aa00);
    color: #000;
    border: none;
    padding: 18px 40px;
    border-radius: 12px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.4s ease;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(0, 255, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.upload-btn::before, .download-btn::before, 
.fetch-btn::before, .transfer-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.upload-btn:hover, .download-btn:hover, 
.fetch-btn:hover, .transfer-btn:hover {
    background: linear-gradient(135deg, #00cc00, #00aa00, #008800);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 255, 0, 0.4);
}

.upload-btn:hover::before, .download-btn:hover::before,
.fetch-btn:hover::before, .transfer-btn:hover::before {
    left: 100%;
}

.upload-btn:active, .download-btn:active,
.fetch-btn:active, .transfer-btn:active {
    transform: translateY(-1px) scale(1.02);
    box-shadow: 0 4px 15px rgba(0, 255, 0, 0.5);
}

/* Enhanced Encryption Display Styles */
.encryption-type {
    color: #00ff00 !important;
    font-weight: bold !important;
    text-shadow: 0 0 5px #00ff00 !important;
    animation: encryptionGlow 2s infinite !important;
}

.encryption-desc {
    color: #00ff0080 !important;
    font-style: italic !important;
    line-height: 1.4 !important;
    padding: 10px !important;
    background: rgba(0, 255, 0, 0.05) !important;
    border-left: 3px solid #00ff00 !important;
    border-radius: 5px !important;
    margin-top: 5px !important;
}

.encryption-details {
    background: rgba(0, 255, 0, 0.05) !important;
    border: 1px solid #00ff0030 !important;
    border-radius: 10px !important;
    padding: 15px !important;
    margin: 15px 0 !important;
}

.encryption-details h4 {
    color: #00ff00 !important;
    margin: 0 0 10px 0 !important;
    text-shadow: 0 0 5px #00ff00 !important;
}

@keyframes encryptionGlow {
    0%, 100% { 
        text-shadow: 0 0 5px #00ff00;
    }
    50% { 
        text-shadow: 0 0 15px #00ff00, 0 0 25px #00ff00;
    }
}

/* Enhanced Wallet Backend Styles */
.wallet-backend-container {
    padding: 25px;
}

.crypto-type {
    color: #00ff00 !important;
    font-weight: bold !important;
    text-transform: uppercase !important;
    background: rgba(0, 255, 0, 0.1) !important;
    padding: 2px 8px !important;
    border-radius: 4px !important;
    border: 1px solid #00ff0050 !important;
    display: inline-block !important;
    font-size: 12px !important;
    letter-spacing: 1px !important;
}

.crypto-balance {
    color: #00ff00 !important;
    font-weight: bold !important;
    font-size: 16px !important;
}

.usd-equivalent {
    color: #ffaa00 !important;
    font-size: 12px !important;
    font-weight: normal !important;
    display: block !important;
    margin-top: 4px !important;
    opacity: 0.9 !important;
    font-style: italic !important;
}

.usd-amount {
    color: #ffaa00 !important;
    font-size: 11px !important;
    font-weight: normal !important;
    opacity: 0.8 !important;
}

.detail-item .detail-value {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
}

.transaction-item .tx-amount {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
}

.wallet-input-section {
    margin: 20px 0;
}

.input-group {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.wallet-address-input {
    flex: 1;
    padding: 12px;
    background: rgba(0, 0, 0, 0.8);
    border: 2px solid #00ff00;
    color: #00ff00;
    border-radius: 8px;
    font-family: 'Courier New', monospace;
    font-size: 14px;
}

.scan-address-btn {
    background: linear-gradient(135deg, #00ff00, #00aa00);
    color: #000;
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.scan-address-btn:hover {
    background: linear-gradient(135deg, #00aa00, #008800);
    transform: scale(1.05);
}

.scanning-process {
    padding: 20px;
    text-align: center;
}

.scan-address-display {
    background: rgba(0, 0, 0, 0.8);
    border: 1px solid #00ff00;
    padding: 10px;
    margin: 15px 0;
    border-radius: 5px;
    font-family: 'Courier New', monospace;
    color: #00ff00;
    word-break: break-all;
}

.scan-percentage {
    color: #00ff00;
    font-weight: bold;
    margin-top: 10px;
}

.scan-details {
    color: #00ff0080;
    margin: 15px 0;
    font-style: italic;
}

.access-wallet-btn {
    background: linear-gradient(135deg, #00ff00, #00aa00);
    color: #000;
    border: none;
    padding: 15px 30px;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    font-size: 16px;
    margin-top: 15px;
    transition: all 0.3s ease;
}

.access-wallet-btn:hover {
    background: linear-gradient(135deg, #00aa00, #008800);
    transform: scale(1.05);
}

.transaction-buttons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
    justify-content: center;
}

.transaction-btn {
    background: linear-gradient(135deg, #00ff00, #00aa00);
    color: #000;
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    flex: 1;
}

.transaction-btn:hover {
    background: linear-gradient(135deg, #00aa00, #008800);
    transform: translateY(-2px);
}

.transaction-progress {
    padding: 20px;
    text-align: center;
}

/* Wallet Dashboard Popup Styles */
.dashboard-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    backdrop-filter: blur(5px);
}

.wallet-dashboard-popup {
    background: rgba(0, 0, 0, 0.95);
    border: 2px solid #00ff00;
    border-radius: 15px;
    padding: 30px;
    max-width: 800px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 0 50px #00ff0080;
    animation: popupSlideIn 0.5s ease-out;
    position: relative;
}

.popup-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 1px solid #00ff0040;
    padding-bottom: 15px;
}

.popup-header h3 {
    color: #00ff00;
    margin: 0;
    font-size: 24px;
    text-shadow: 0 0 10px #00ff00;
}

.popup-close-btn {
    background: transparent;
    border: 2px solid #ff0000;
    color: #ff0000;
    font-size: 24px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.popup-close-btn:hover {
    background: #ff0000;
    color: #000;
    transform: scale(1.1);
}

@keyframes popupSlideIn {
    0% {
        opacity: 0;
        transform: scale(0.7) translateY(-50px);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

/* Responsive popup */
@media (max-width: 768px) {
    .wallet-dashboard-popup {
        width: 95%;
        max-height: 90vh;
        padding: 20px;
    }
    
    .popup-header h3 {
        font-size: 18px;
    }
    
    .popup-close-btn {
        width: 35px;
        height: 35px;
        font-size: 20px;
    }
}

/* Wallet Scanning Form Styles */
.crypto-wallet-form, .bank-account-form {
    padding: 20px;
}

.wallet-form-step, .bank-form-step {
    margin: 20px 0;
}

.wallet-form-step label {
    display: block;
    color: #00ff00;
    margin-bottom: 10px;
    font-weight: bold;
}

.input-group {
    display: flex;
    gap: 10px;
    align-items: center;
}

.wallet-input, .bank-input {
    flex: 1;
    background: #000;
    border: 2px solid #00ff00;
    color: #00ff00;
    padding: 12px;
    border-radius: 5px;
    font-family: 'Courier New', monospace;
}

.wallet-input:focus {
    outline: none;
    box-shadow: 0 0 10px #00ff0050;
}

.next-btn, .scan-btn {
    background: linear-gradient(135deg, #00ff00, #00aa00);
    color: #000;
    border: none;
    padding: 12px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
}

.next-btn:hover, .scan-btn:hover {
    background: linear-gradient(135deg, #00aa00, #008800);
    transform: translateY(-2px);
}

.wallet-scanning, .bank-scanning {
    padding: 20px;
    text-align: center;
}

.scan-animation {
    margin: 20px 0;
}

.scan-radar {
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
    border: 3px solid #00ff00;
    border-radius: 50%;
    border-top: 3px solid transparent;
    animation: radar-spin 2s linear infinite;
}

@keyframes radar-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.scan-progress-bar {
    width: 100%;
    height: 20px;
    background: #000;
    border: 2px solid #00ff00;
    border-radius: 10px;
    overflow: hidden;
    margin: 20px 0;
}

.scan-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #00ff00, #00aa00);
    width: 0%;
    transition: width 0.3s ease;
}

.scan-status {
    color: #00ff00;
    font-family: 'Courier New', monospace;
    margin: 10px 0;
}

.access-key-form {
    padding: 20px;
}

.key-form-grid {
    display: grid;
    gap: 20px;
    margin: 20px 0;
}

.key-input-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.key-input-group label {
    color: #00ff00;
    font-weight: bold;
}

.access-key-input {
    background: #000;
    border: 2px solid #00ff00;
    color: #00ff00;
    padding: 12px;
    border-radius: 5px;
    font-family: 'Courier New', monospace;
}

.access-key-input:focus {
    outline: none;
    box-shadow: 0 0 10px #00ff0050;
}

.crypto-breaking {
    padding: 20px;
    text-align: center;
}

.breaking-animation {
    margin: 20px 0;
}

.crypto-breaking-visual {
    position: relative;
    margin: 20px 0;
}

.encryption-shield {
    font-size: 48px;
    animation: shield-break 2s infinite;
}

@keyframes shield-break {
    0%, 100% { transform: scale(1); filter: brightness(1); }
    50% { transform: scale(1.1); filter: brightness(1.5); }
}

.breaking-waves {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    border: 2px solid #ff0000;
    border-radius: 50%;
    animation: wave-pulse 1.5s infinite;
}

@keyframes wave-pulse {
    0% { opacity: 1; transform: translate(-50%, -50%) scale(0.5); }
    100% { opacity: 0; transform: translate(-50%, -50%) scale(2); }
}

.break-success-details {
    text-align: left;
    margin-top: 20px;
}

.success-info {
    background: rgba(0, 255, 0, 0.1);
    border: 1px solid #00ff00;
    padding: 20px;
    border-radius: 10px;
}

.success-status {
    color: #00ff00;
    font-weight: bold;
    text-shadow: 0 0 10px #00ff00;
}

.backend-id {
    color: #ffaa00;
    font-weight: bold;
    font-family: 'Courier New', monospace;
}

/* Enhanced Encryption Breaker Styles */
.target-selection-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin: 20px 0;
}

.encryption-target {
    background: rgba(0, 0, 0, 0.8);
    border: 2px solid #00ff0050;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.encryption-target:hover {
    border-color: #00ff00;
    background: rgba(0, 255, 0, 0.1);
    transform: translateY(-5px);
}

.target-icon {
    font-size: 36px;
    margin-bottom: 10px;
}

.target-name {
    color: #00ff00;
    font-weight: bold;
    margin-bottom: 5px;
    font-size: 16px;
}

.target-desc {
    color: #00ff0080;
    font-size: 12px;
}

.encryption-process {
    padding: 20px;
}

.encryption-progress {
    margin: 20px 0;
    text-align: center;
}

.encryption-log {
    background: #000;
    border: 1px solid #00ff00;
    padding: 15px;
    max-height: 150px;
    overflow-y: auto;
    font-family: 'Courier New', monospace;
    font-size: 12px;
    margin-top: 15px;
}

.log-error {
    color: #ff6600;
    margin: 5px 0;
    animation: logError 0.5s ease-in;
}

@keyframes logError {
    from { opacity: 0; transform: translateX(-10px); }
    to { opacity: 1; transform: translateX(0); }
}

.decryption-details {
    text-align: left;
    margin: 15px 0;
}

.decryption-details p {
    margin: 8px 0;
    color: #00ff00;
}

/* Mobile responsive updates */
@media (max-width: 768px) {
    .input-group {
        flex-direction: column;
    }
    
    .transaction-buttons {
        flex-direction: column;
    }
    
    .target-selection-grid {
        grid-template-columns: 1fr;
    }
    
    .upload-progress, .download-progress,
    .fetch-progress, .transfer-progress {
        flex-direction: column;
        gap: 5px;
    }
    
    .progress-text {
        text-align: center;
    }
}

.nsa-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 2;
    animation: logoGlow 3s infinite;
}

.desktop .hacker-overlay {
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 20px;
    background: rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 255, 0, 0.1);
    border-radius: 10px;
    z-index: 1;
    pointer-events: none;
}

.desktop .hacker-overlay::before {
    content: 'QUANTUM SECURITY PROTOCOLS ACTIVE...\\A⚡ NEURAL FIREWALL ENGAGED...\\A🛡️ ENCRYPTION MATRIX INITIALIZED...\\A🔐 BIOMETRIC SCANNERS ONLINE...\\A💀 INTRUDER DETECTION SYSTEMS ARMED...\\A🌐 GLOBAL SURVEILLANCE NETWORK CONNECTED...';
    position: absolute;
    top: 20px;
    left: 20px;
    font-family: 'Courier New', monospace;
    font-size: 10px;
    color: rgba(0, 255, 0, 0.4);
    white-space: pre;
    animation: terminalText 20s linear infinite;
    line-height: 1.6;
    text-shadow: 0 0 5px rgba(0, 255, 0, 0.3);
}

@keyframes terminalText {
    0% { opacity: 0; }
    15% { opacity: 0.6; }
    85% { opacity: 0.6; }
    100% { opacity: 0; }
}

@keyframes logoGlow {
    0%, 100% { 
        filter: drop-shadow(0 0 25px #00ff00) drop-shadow(0 0 50px #00ff0050);
        transform: translate(-50%, -50%) scale(1);
    }
    50% { 
        filter: drop-shadow(0 0 40px #00ff00) drop-shadow(0 0 80px #00ff0080);
        transform: translate(-50%, -50%) scale(1.02);
    }
}

.nsa-shield {
    position: relative;
    font-size: 140px;
    background: linear-gradient(45deg, #00ff00, #00aa00, #00ff00, #00cc00);
    background-size: 400% 400%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shieldPulse 4s ease-in-out infinite, gradientShift 8s ease-in-out infinite;
    filter: drop-shadow(0 0 30px #00ff00);
}

/* Skeleton Head Animation for Malware */
.skeleton-head-container {
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.skeleton-head {
    font-size: 60px;
    animation: skeletonFloat 3s ease-in-out infinite, skeletonGlow 2s infinite;
    filter: drop-shadow(0 0 20px #ff0000);
}

@keyframes skeletonFloat {
    0%, 100% { 
        transform: translateY(0px) rotate(-5deg);
        filter: drop-shadow(0 0 20px #ff0000);
    }
    50% { 
        transform: translateY(-15px) rotate(5deg);
        filter: drop-shadow(0 0 30px #ff0000) drop-shadow(0 0 40px #ff6600);
    }
}

@keyframes skeletonGlow {
    0%, 100% { 
        opacity: 1;
        text-shadow: 0 0 20px #ff0000;
    }
    50% { 
        opacity: 0.8;
        text-shadow: 0 0 40px #ff0000, 0 0 60px #ff6600;
    }
}

.deployment-progress {
    position: relative;
    padding-top: 40px;
}

/* Enhanced Malware Styles */
.deployment-complete {
    background: linear-gradient(135deg, rgba(0, 255, 0, 0.1), rgba(0, 200, 0, 0.05));
    border: 2px solid #00ff00;
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    animation: deploymentSuccess 3s ease-out;
}

@keyframes deploymentSuccess {
    0% { 
        opacity: 0; 
        transform: scale(0.8); 
        box-shadow: 0 0 0 #00ff00;
    }
    50% { 
        opacity: 1; 
        transform: scale(1.05); 
        box-shadow: 0 0 30px #00ff00;
    }
    100% { 
        opacity: 1; 
        transform: scale(1); 
        box-shadow: 0 0 20px #00ff00;
    }
}

.deployment-summary {
    display: grid;
    gap: 8px;
    margin-top: 15px;
    text-align: left;
}

.deployment-summary p {
    padding: 8px 12px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 5px;
    border-left: 3px solid #00ff00;
}

/* Fetch Graph Styles */
.fetch-graph-container {
    padding: 20px;
    background: linear-gradient(135deg, rgba(0, 255, 0, 0.02), rgba(0, 100, 200, 0.02));
    border-radius: 15px;
}

.fetch-graph-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding: 10px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 8px;
    border: 1px solid rgba(0, 255, 0, 0.3);
}

.fetch-server-info {
    display: flex;
    gap: 15px;
    align-items: center;
}

.server-status {
    color: #00ff00;
    font-weight: bold;
    animation: statusPulse 2s infinite;
}

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

.fetch-rate {
    color: #00aaff;
    font-family: 'Courier New', monospace;
    font-weight: bold;
}

.fetch-chart-display {
    background: #000;
    border: 2px solid rgba(0, 255, 0, 0.3);
    border-radius: 10px;
    padding: 10px;
    margin-bottom: 15px;
}

.fetch-progress-bars {
    margin-bottom: 15px;
}

.progress-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    color: #00ff00;
}

.progress-item span {
    min-width: 120px;
    font-size: 12px;
}

.progress-item .progress-bar {
    flex: 1;
    margin-left: 10px;
}

.fetch-file-stream {
    background: rgba(0, 0, 0, 0.7);
    border: 1px solid rgba(0, 255, 0, 0.3);
    border-radius: 8px;
    padding: 10px;
    max-height: 120px;
    overflow-y: auto;
}

.stream-item {
    font-size: 11px;
    color: #00ff00;
    padding: 3px 0;
    border-bottom: 1px solid rgba(0, 255, 0, 0.1);
}

.stream-item.fetching {
    animation: fetchingGlow 1.5s infinite;
}

@keyframes fetchingGlow {
    0%, 100% { 
        color: #00ff00; 
        text-shadow: 0 0 5px #00ff00;
    }
    50% { 
        color: #00aaff; 
        text-shadow: 0 0 10px #00aaff;
    }
}

/* Enhanced Transaction Styles */
.transaction-complete {
    background: linear-gradient(135deg, rgba(0, 255, 0, 0.15), rgba(0, 200, 0, 0.05));
    border: 2px solid #00ff00;
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    animation: transactionSuccess 2s ease-out;
}

@keyframes transactionSuccess {
    0% { 
        opacity: 0; 
        transform: translateY(20px); 
    }
    100% { 
        opacity: 1; 
        transform: translateY(0); 
    }
}

.transaction-summary {
    display: grid;
    gap: 10px;
    margin-top: 15px;
    text-align: left;
}

.transaction-summary p {
    padding: 10px 15px;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 8px;
    border-left: 4px solid #00ff00;
    font-family: 'Courier New', monospace;
}

/* Enhanced QR Code Styles */
.qr-code {
    background: #fff;
    padding: 15px;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 15px rgba(0, 255, 0, 0.3);
}

.qr-pattern {
    color: #000;
    font-family: 'Courier New', monospace;
    font-size: 10px;
    line-height: 1;
}

.qr-blocks {
    display: grid;
    gap: 1px;
}

.qr-row {
    font-size: 8px;
    letter-spacing: 1px;
}

.address-text.clickable {
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 10px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 8px;
    border: 1px solid rgba(0, 255, 0, 0.3);
    word-break: break-all;
    margin-bottom: 10px;
}

.address-text.clickable:hover {
    background: rgba(0, 255, 0, 0.1);
    border-color: #00ff00;
    box-shadow: 0 0 10px rgba(0, 255, 0, 0.3);
}

.receive-actions {
    text-align: center;
    margin-top: 20px;
}

.done-button {
    background: linear-gradient(135deg, #00ff00, #00aa00);
    color: #000;
    border: none;
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.done-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 255, 0, 0.4);
}

/* Mobile Responsive Updates */
@media (max-width: 768px) {
    .fetch-graph-header {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .fetch-server-info {
        justify-content: center;
    }
    
    .progress-item {
        flex-direction: column;
        gap: 5px;
    }
    
    .progress-item .progress-bar {
        margin-left: 0;
        width: 100%;
    }
    
    .qr-pattern {
        font-size: 8px;
    }
    
    .address-text.clickable {
        font-size: 12px;
        padding: 8px;
    }
}


.nsa-shield::before {
    content: '⚡';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 60px;
    color: #00ff00;
    animation: innerBolt 3s ease-in-out infinite;
    text-shadow: 0 0 20px #00ff00, 0 0 40px #00ff00;
    z-index: 1;
}

.nsa-shield::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    border: 3px solid rgba(0, 255, 0, 0.3);
    border-radius: 50%;
    animation: outerRing 6s linear infinite;
}

@keyframes shieldPulse {
    0%, 100% { 
        transform: rotate(0deg) scale(1);
        filter: drop-shadow(0 0 30px #00ff00);
    }
    25% { 
        transform: rotate(90deg) scale(1.05);
        filter: drop-shadow(0 0 40px #00ff00) drop-shadow(0 0 60px #00aa00);
    }
    50% { 
        transform: rotate(180deg) scale(1);
        filter: drop-shadow(0 0 50px #00ff00) drop-shadow(0 0 80px #00cc00);
    }
    75% { 
        transform: rotate(270deg) scale(1.05);
        filter: drop-shadow(0 0 40px #00ff00) drop-shadow(0 0 60px #00aa00);
    }
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes innerBolt {
    0%, 100% { 
        opacity: 0.8;
        transform: translate(-50%, -50%) scale(1);
    }
    50% { 
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.2);
        text-shadow: 0 0 30px #00ff00, 0 0 60px #00ff00, 0 0 90px #00aa00;
    }
}

@keyframes outerRing {
    0% { 
        transform: translate(-50%, -50%) rotate(0deg) scale(1);
        opacity: 0.6;
        border-color: rgba(0, 255, 0, 0.3);
    }
    25% { 
        transform: translate(-50%, -50%) rotate(90deg) scale(1.1);
        opacity: 0.8;
        border-color: rgba(0, 255, 0, 0.6);
    }
    50% { 
        transform: translate(-50%, -50%) rotate(180deg) scale(1.2);
        opacity: 1;
        border-color: rgba(0, 255, 0, 0.9);
    }
    75% { 
        transform: translate(-50%, -50%) rotate(270deg) scale(1.1);
        opacity: 0.8;
        border-color: rgba(0, 255, 0, 0.6);
    }
    100% { 
        transform: translate(-50%, -50%) rotate(360deg) scale(1);
        opacity: 0.6;
        border-color: rgba(0, 255, 0, 0.3);
    }
}

.nsa-logo h1 {
    margin-top: 30px;
    font-size: 28px;

/* Wallet Loading Indicator Styles */
.loading-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px;
    text-align: center;
}

.loading-animation {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.loading-spinner {
    width: 60px;
    height: 60px;
    border: 4px solid #333;
    border-top: 4px solid #00ff00;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.loading-text {
    color: #00ff00;
    font-size: 16px;
    font-weight: bold;
    margin: 10px 0;
}

.loading-progress {
    width: 300px;
    text-align: center;
}

.loading-progress .progress-bar {
    width: 100%;
    height: 20px;
    background: #333;
    border-radius: 10px;
    overflow: hidden;
    margin: 10px 0;
    border: 2px solid #00ff00;
}

.loading-progress .progress-fill {
    height: 100%;
    background: linear-gradient(45deg, #00ff00, #00aa00);
    width: 0%;
    transition: width 0.3s ease;
}

.loading-progress .progress-text {
    color: #00ff00;
    font-size: 14px;
    font-weight: bold;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

    background: linear-gradient(45deg, #00ff00, #00aa00, #00cc00, #00ff00);
    background-size: 400% 400%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: textPulse 2s infinite, gradientShift 6s ease-in-out infinite;
    letter-spacing: 4px;
    font-weight: bold;
    position: relative;
}

.nsa-logo h1::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: textShine 3s infinite;
    z-index: 1;
}

@keyframes textPulse {
    0%, 100% { 
        opacity: 1;
        transform: scale(1);
        filter: drop-shadow(0 0 20px #00ff00);
    }
    50% { 
        opacity: 0.9;
        transform: scale(1.02);
        filter: drop-shadow(0 0 30px #00ff00) drop-shadow(0 0 50px #00aa00);
    }
}

@keyframes textShine {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.desktop-folders {
    position: absolute;
    top: 50px;
    left: 50px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
    z-index: 2;
    max-width: calc(100% - 100px);
}

.folder {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    padding: 20px;
    border-radius: 15px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.folder:hover {
    transform: translateY(-8px) scale(1.05);
    filter: brightness(1.2);
}

.folder-icon {
    font-size: 48px;
    margin-bottom: 15px;
    filter: sepia(1) hue-rotate(90deg) saturate(2);
    transition: all 0.3s ease;
}

.folder:hover .folder-icon {
    transform: scale(1.2);
    filter: sepia(1) hue-rotate(90deg) saturate(3) brightness(1.2);
}

.folder span {
    font-size: 14px;
    text-align: center;
    text-shadow: 0 0 10px #00ff00;
    font-weight: bold;
    transition: all 0.3s ease;
}

.folder:hover span {
    text-shadow: 0 0 20px #00ff00;
    transform: scale(1.1);
}

.window {
    position: fixed;
    background: rgba(0, 0, 0, 0.95);
    border: 3px solid #00ff00;
    border-radius: 15px;
    min-width: 400px;
    max-width: 95vw;
    min-height: 300px;
    max-height: 90vh;
    z-index: 1000;
    box-shadow: 0 0 40px #00ff0080, inset 0 0 20px #00ff0020;
    backdrop-filter: blur(10px);
    animation: windowAppear 0.5s ease-out;
    display: flex;
    flex-direction: column;
    resize: none;
    overflow: hidden;
}

.enhanced-window {
    min-width: 500px;
    min-height: 400px;
    background: rgba(0, 0, 0, 0.98);
    border: 3px solid #00ff00;
}

.enhanced-window .window-content {
    padding: 25px;
    overflow-y: auto;
    overflow-x: hidden;
    max-height: calc(100% - 60px);
    scrollbar-width: thin;
    scrollbar-color: #00ff00 transparent;
}

.enhanced-window .window-content::-webkit-scrollbar {
    width: 8px;
}

.enhanced-window .window-content::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 4px;
}

.enhanced-window .window-content::-webkit-scrollbar-thumb {
    background: #00ff00;
    border-radius: 4px;
}

.enhanced-window .window-content::-webkit-scrollbar-thumb:hover {
    background: #00aa00;
}

.window.minimized {
    display: none !important;
}

@keyframes windowAppear {
    from { 
        opacity: 0;
        transform: scale(0.8);
    }
    to { 
        opacity: 1;
        transform: scale(1);
    }
}

.window-header {
    background: linear-gradient(135deg, #00ff00, #00aa00, #00ff00);
    color: #000;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: bold;
    border-radius: 12px 12px 0 0;
    position: relative;
    overflow: hidden;
    cursor: move;
    user-select: none;
}

.window-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: headerShine 3s infinite;
}

@keyframes headerShine {
    0% { left: -100%; }
    100% { left: 100%; }
}

.window-controls {
    display: flex;
    gap: 5px;
}

.minimize-btn, .close-btn {
    border: none;
    padding: 8px 12px;
    cursor: pointer;
    border-radius: 5px;
    font-weight: bold;
    transition: all 0.3s ease;
    user-select: none;
}

.minimize-btn {
    background: #ffaa00;
    color: #000;
}

.minimize-btn:hover {
    background: #ff8800;
    transform: scale(1.1);
    box-shadow: 0 0 10px #ffaa00;
}

.close-btn {
    background: #ff0000;
    color: white;
}

.close-btn:hover {
    background: #cc0000;
    transform: scale(1.1);
    box-shadow: 0 0 10px #ff0000;
}

.window-resize-handle {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 20px;
    height: 20px;
    background: linear-gradient(-45deg, transparent 40%, #00ff00 40%, #00ff00 60%, transparent 60%);
    cursor: nw-resize;
    z-index: 10;
    border-bottom-right-radius: 12px;
}

.window-content {
    padding: 20px;
    color: #00ff00;
    overflow-y: auto;
    overflow-x: hidden;
    position: relative;
    word-wrap: break-word;
    box-sizing: border-box;
    flex: 1;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* Internet Explorer 10+ */
}

.window-content::-webkit-scrollbar {
    display: none; /* WebKit browsers */
}

/* Make all scrollbars invisible */
* {
    scrollbar-width: none !important; /* Firefox */
    -ms-overflow-style: none !important; /* Internet Explorer 10+ */
}

*::-webkit-scrollbar {
    display: none !important; /* WebKit browsers */
    width: 0 !important;
    height: 0 !important;
}

*::-webkit-scrollbar-track {
    display: none !important;
}

*::-webkit-scrollbar-thumb {
    display: none !important;
}

*::-webkit-scrollbar-corner {
    display: none !important;
}

/* Ensure all scrollable areas still function but with invisible scrollbars */
.console-window, .miner-terminal, .drainer-console, .interpol-terminal,
.transaction-grid, .mining-stats, .password-attempts, .log-display,
.firewall-logs, .server-logs, .interception-log, .captured-codes,
.terminal-body, .funds-terminal, .window-content, .enhanced-window .window-content,
.upload-progress-container, .download-progress-container, .fetch-progress-container,
.transfer-progress-container, .upload-files-list, .download-files-list,
.fetch-files-list, .transfer-files-list, .file-list, .directory-content,
.malware-terminal, .encryption-log, .scan-result, .wallet-details-grid,
.receipt-overlay, .swap-receipt, .address-container {
    overflow-y: auto !important;
    overflow-x: hidden !important;
    scrollbar-width: none !important;
    -ms-overflow-style: none !important;
}

.console-window::-webkit-scrollbar, .miner-terminal::-webkit-scrollbar,
.drainer-console::-webkit-scrollbar, .interpol-terminal::-webkit-scrollbar,
.transaction-grid::-webkit-scrollbar, .mining-stats::-webkit-scrollbar,
.password-attempts::-webkit-scrollbar, .log-display::-webkit-scrollbar,
.firewall-logs::-webkit-scrollbar, .server-logs::-webkit-scrollbar,
.interception-log::-webkit-scrollbar, .captured-codes::-webkit-scrollbar,
.terminal-body::-webkit-scrollbar, .funds-terminal::-webkit-scrollbar,
.window-content::-webkit-scrollbar, .enhanced-window .window-content::-webkit-scrollbar,
.upload-progress-container::-webkit-scrollbar, .download-progress-container::-webkit-scrollbar,
.fetch-progress-container::-webkit-scrollbar, .transfer-progress-container::-webkit-scrollbar,
.upload-files-list::-webkit-scrollbar, .download-files-list::-webkit-scrollbar,
.fetch-files-list::-webkit-scrollbar, .transfer-files-list::-webkit-scrollbar,
.file-list::-webkit-scrollbar, .directory-content::-webkit-scrollbar,
.malware-terminal::-webkit-scrollbar, .encryption-log::-webkit-scrollbar,
.scan-result::-webkit-scrollbar, .wallet-details-grid::-webkit-scrollbar,
.receipt-overlay::-webkit-scrollbar, .swap-receipt::-webkit-scrollbar,
.address-container::-webkit-scrollbar {
    display: none !important;
    width: 0 !important;
    height: 0 !important;
}

.terminal-text {
    font-family: 'Courier New', monospace;
    line-height: 1.6;
    white-space: pre-wrap;
    text-shadow: 0 0 5px #00ff00;
}

.bitcoin-logo {
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 60px;
    color: #ffa500;
    animation: bitcoinSpin 4s linear infinite;
    text-shadow: 0 0 20px #ffa500;
}

@keyframes bitcoinSpin {
    from { transform: translateY(-50%) rotate(0deg); }
    to { transform: translateY(-50%) rotate(360deg); }
}

.start-btn {
    background: linear-gradient(135deg, #00ff00, #00aa00);
    color: #000;
    border: none;
    padding: 18px 35px;
    margin: 20px 0;
    cursor: pointer;
    border-radius: 10px;
    font-weight: bold;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px #00ff0050;
}

.start-btn:hover {
    background: linear-gradient(135deg, #00aa00, #008800);
    transform: translateY(-2px);
    box-shadow: 0 0 30px #00ff0080;
}

.mining-animation {
    display: flex;
    align-items: center;
    margin: 25px 0;
    padding: 20px;
    background: rgba(0, 255, 0, 0.1);
    border-radius: 10px;
    border: 1px solid #00ff00;
}

.miner-axe {
    font-size: 40px;
    animation: mining 1.5s infinite;
    margin-right: 30px;
    filter: drop-shadow(0 0 10px #00ff00);
}

@keyframes mining {
    0%, 100% { transform: rotate(-45deg); }
    50% { transform: rotate(45deg); }
}

.bitcoin-rock {
    font-size: 32px;
    color: #ffa500;
    animation: rockShake 1.5s infinite;
    text-shadow: 0 0 15px #ffa500;
}

@keyframes rockShake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-2px); }
    75% { transform: translateX(2px); }
}

.progress-bar {
    width: 100%;
    height: 35px;
    background: #333;
    border: 3px solid #00ff00;
    margin: 25px 0;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: inset 0 0 20px #00000080;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #00ff00, #00aa00, #00ff00);
    width: 0%;
    transition: width 0.4s ease;
    animation: progressGlow 2s infinite;
}

@keyframes progressGlow {
    0%, 100% { box-shadow: 0 0 20px #00ff00; }
    50% { box-shadow: 0 0 40px #00ff00; }
}

.success-box {
    background: rgba(0, 255, 0, 0.2);
    border: 3px solid #00ff00;
    padding: 25px;
    text-align: center;
    margin: 25px 0;
    border-radius: 15px;
    animation: successPulse 2s infinite;
    backdrop-filter: blur(5px);
}

@keyframes successPulse {
    0%, 100% { 
        box-shadow: 0 0 20px #00ff00;
        transform: scale(1);
    }
    50% { 
        box-shadow: 0 0 40px #00ff00;
        transform: scale(1.02);
    }
}

.wallet-details {
    background: rgba(0, 255, 0, 0.1);
    border: 2px solid #00ff00;
    padding: 20px;
    margin: 15px 0;
    border-radius: 10px;
    backdrop-filter: blur(5px);
}

.wallet-details h3 {
    margin-bottom: 15px;
    text-shadow: 0 0 10px #00ff00;
}

.wallet-details p {
    margin: 8px 0;
    padding: 5px 0;
    border-bottom: 1px solid #00ff0030;
}

.console-window {
    background: #000;
    color: #00ff00;
    font-family: 'Courier New', monospace;
    padding: 25px;
    height: 400px;
    overflow-y: auto;
    border: 1px solid #00ff00;
    border-radius: 10px;
    box-shadow: inset 0 0 20px #00000080;
}

.keyboard-visual {
    display: grid;
    grid-template-columns: repeat(10, 1fr);
    gap: 8px;
    margin: 25px 0;
    padding: 20px;
    background: rgba(0, 255, 0, 0.1);
    border-radius: 10px;
    border: 1px solid #00ff00;
}

.key {
    background: #333;
    color: #00ff00;
    padding: 12px;
    text-align: center;
    border: 1px solid #555;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.key.active {
    background: #00ff00;
    color: #000;
    box-shadow: 0 0 15px #00ff00;
    transform: scale(1.1);
}

.access-denied {
    background: rgba(255, 0, 0, 0.2);
    border: 3px solid #ff0000;
    color: #ff0000;
    padding: 25px;
    text-align: center;
    animation: shake 0.5s;
    border-radius: 10px;
    backdrop-filter: blur(5px);
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-10px); }
    75% { transform: translateX(10px); }
}

.access-granted {
    background: rgba(0, 255, 0, 0.2);
    border: 3px solid #00ff00;
    color: #00ff00;
    padding: 25px;
    text-align: center;
    animation: glow 2s infinite;
    border-radius: 10px;
    backdrop-filter: blur(5px);
}

@keyframes glow {
    0%, 100% { box-shadow: 0 0 30px #00ff00; }
    50% { box-shadow: 0 0 50px #00ff00; }
}

.padlock {
    font-size: 60px;
    animation: unlock 2s ease-in-out;
    margin-bottom: 15px;
    filter: drop-shadow(0 0 20px #00ff00);
}

@keyframes unlock {
    0% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(180deg) scale(1.2); }
    100% { transform: rotate(360deg) scale(1); }
}

.nuclear-diagram {
    width: 100%;
    height: 300px;
    background: radial-gradient(circle, #ffff00, #ff6600, #ff0000);
    position: relative;
    border-radius: 50%;
    animation: nuclear-pulse 3s infinite;
    box-shadow: 0 0 50px #ff6600;
}

@keyframes nuclear-pulse {
    0%, 100% { 
        box-shadow: 0 0 30px #ffff00;
        transform: scale(1);
    }
    50% { 
        box-shadow: 0 0 80px #ff0000;
        transform: scale(1.05);
    }
}

.download-progress {
    text-align: center;
    font-size: 28px;
    margin: 25px 0;
    text-shadow: 0 0 20px #00ff00;
    animation: downloadPulse 1s infinite;
}

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

.drainer-btn {
    background: linear-gradient(45deg, #00ff00, #00aa00);
    color: #000;
    border: none;
    padding: 20px 40px;
    font-size: 18px;
    font-weight: bold;
    border-radius: 10px;
    cursor: pointer;
    margin: 20px 0;
    animation: pulse 2s infinite;
    box-shadow: 0 0 20px #00ff00;
}

.category-btn {
    background: #333;
    color: #00ff00;
    border: 1px solid #00ff00;
    padding: 10px 20px;
    margin: 5px;
    cursor: pointer;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.category-btn:hover {
    background: #00ff00;
    color: #000;
}

.subcategory {
    margin-top: 20px;
    padding: 15px;
    background: rgba(0, 255, 0, 0.1);
    border-radius: 5px;
    font-size: 12px;
}

.error-box {
    background: rgba(255, 0, 0, 0.2);
    border: 2px solid #ff0000;
    color: #ff0000;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    margin: 20px 0;
}

.info-box {
    background: rgba(0, 100, 255, 0.2);
    border: 2px solid #0066ff;
    color: #0066ff;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    margin: 20px 0;
    animation: infoPulse 2s infinite;
}

@keyframes infoPulse {
    0%, 100% { 
        box-shadow: 0 0 20px #0066ff50;
        transform: scale(1);
    }
    50% { 
        box-shadow: 0 0 30px #0066ff80;
        transform: scale(1.01);
    }
}

.send-btn {
    background: #00ff00;
    color: #000;
    border: none;
    padding: 15px 30px;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 20px;
}

.tracking-display {
    text-align: center;
    font-size: 18px;
    color: #00ff00;
    animation: pulse 1s infinite;
}

.map-display, .triangulation-display {
    background: rgba(0, 255, 0, 0.1);
    border: 1px solid #00ff00;
    padding: 20px;
    margin: 10px 0;
    text-align: center;
    font-size: 16px;
}

.crack-options {
    display: flex;
    gap: 20px;
    margin: 25px 0;
    flex-wrap: wrap;
}

.option-btn {
    background: rgba(51, 51, 51, 0.8);
    color: #00ff00;
    border: 2px solid #00ff00;
    padding: 18px 30px;
    cursor: pointer;
    border-radius: 10px;
    transition: all 0.4s ease;
    font-weight: bold;
    backdrop-filter: blur(5px);
    flex: 1;
    min-width: 120px;
}

.option-btn:hover {
    background: #00ff00;
    color: #000;
    transform: translateY(-3px);
    box-shadow: 0 0 25px #00ff00;
}

.video-container {
    width: 100%;
    height: 350px;
    background: linear-gradient(135deg, #000, #0a0a0a);
    border: 3px solid #00ff00;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00ff00;
    font-size: 18px;
    text-align: center;
    border-radius: 15px;
    animation: videoFlicker 2s infinite;
    box-shadow: 0 0 40px #00ff0050;
}

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

/* Wallet Backend Styles */
.wallet-dashboard {
    padding: 20px;
}

.wallet-grid {
    display: grid;
    gap: 15px;
    margin: 20px 0;
}

.detail-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px;
    background: rgba(0, 255, 0, 0.1);
    border: 1px solid #00ff0050;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.detail-item:hover {
    background: rgba(0, 255, 0, 0.2);
    border-color: #00ff00;
}

.detail-label {
    font-weight: bold;
    color: #00ff00;
}

.detail-value {
    color: #ffffff;
    font-family: 'Courier New', monospace;
}

.transaction-section {
    margin-top: 30px;
}

.transaction-grid {
    display: grid;
    gap: 10px;
    margin: 15px 0;
    max-height: 200px;
    overflow-y: auto;
}

.transaction-item {
    display: flex;
    justify-content: space-between;
    padding: 10px;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid #00ff0030;
    border-radius: 5px;
}

.tx-day {
    color: #00ff00;
    font-weight: bold;
}

.tx-amount.positive {
    color: #00ff00;
}

.tx-amount.negative {
    color: #ff6600;
}

/* Encryption Breaker Styles */
.encryption-container {
    padding: 25px;
}

.encryption-status-box {
    background: rgba(0, 0, 0, 0.8);
    border: 2px solid #00ff00;
    padding: 20px;
    margin: 20px 0;
    border-radius: 10px;
    min-height: 100px;
}

.encryption-controls {
    text-align: center;
    margin: 20px 0;
}

.encryption-result {
    margin-top: 20px;
}

/* Password Decryptor Styles */
.decryptor-container {
    padding: 25px;
}

.decrypt-result {
    margin-top: 20px;
    min-height: 200px;
}

/* Crypto Drainer Styles */
.drainer-container {
    padding: 25px;
}

.drainer-console {
    background: rgba(0, 0, 0, 0.9);
    border: 2px solid #00ff00;
    padding: 20px;
    margin: 20px 0;
    border-radius: 10px;
    min-height: 150px;
    max-height: 300px;
    overflow-y: auto;
}

.drainer-controls {
    text-align: center;
    margin: 20px 0;
}

.drainer-btn {
    background: linear-gradient(45deg, #ff6600, #ff9900);
    color: #fff;
    border: none;
    padding: 15px 30px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 10px;
    cursor: pointer;
    animation: pulse 2s infinite;
    box-shadow: 0 0 20px #ff6600;
    transition: all 0.3s ease;
}

.drainer-btn:hover {
    background: linear-gradient(45deg, #ff9900, #ffcc00);
    transform: scale(1.05);
}

.drainer-status {
    margin-top: 20px;
}

/* Advanced Interpol Styles */
.interpol-container {
    padding: 25px;
}

/* Funds Tracing Styles */
.funds-trace {
    padding: 20px;
}

.blockchain-network {
    text-align: center;
    margin: 20px 0;
}

.blockchain-visualization {
    background: rgba(0, 100, 200, 0.1);
    border: 1px solid #0064c8;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 15px;
}

.blockchain-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin: 15px 0;
}

.block-node {
    font-size: 24px;
    opacity: 0.3;
    transition: all 0.3s ease;
}

.block-node.active {
    opacity: 1;
    animation: blockPulse 2s infinite;
    color: #00ff00;
}

.connection-line {
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, #0064c8, #00ff00);
    animation: connectionFlow 3s infinite;
}

@keyframes blockPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.3); }
}

@keyframes connectionFlow {
    0% { opacity: 0.3; }
    50% { opacity: 1; box-shadow: 0 0 10px #00ff00; }
    100% { opacity: 0.3; }
}

.funds-flow {
    margin: 15px 0;
}

.flow-arrow {
    font-size: 20px;
    color: #00ff00;
    animation: flowPulse 2s infinite;
}

@keyframes flowPulse {
    0%, 100% { opacity: 0.7; }
    50% { opacity: 1; text-shadow: 0 0 10px #00ff00; }
}

.trace-status {
    color: #0064c8;
    font-weight: bold;
    animation: pulse 1s infinite;
    margin: 10px 0;
}

.funds-terminal {
    background: #000;
    border: 1px solid #00ff00;
    border-radius: 8px;
    padding: 15px;
    margin: 20px 0;
    max-height: 150px;
    overflow-y: auto;
}

.terminal-output {
    color: #00ff00;
    font-family: 'Courier New', monospace;
    font-size: 12px;
    line-height: 1.4;
}

.funds-details {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 20px;
    margin: 20px 0;
}

.wallet-visualization {
    background: rgba(0, 100, 200, 0.1);
    border: 1px solid #0064c8;
    padding: 30px 20px;
    text-align: center;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.wallet-icon {
    font-size: 60px;
    margin-bottom: 15px;
    animation: walletPulse 3s infinite;
}

@keyframes walletPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); filter: drop-shadow(0 0 20px #0064c8); }
}

.funds-path {
    margin-top: 15px;
}

.path-arrow {
    font-size: 18px;
    margin-bottom: 8px;
    animation: pathFlow 2s infinite;
}

@keyframes pathFlow {
    0%, 100% { opacity: 0.7; }
    50% { opacity: 1; text-shadow: 0 0 10px #ff6600; }
}

.path-label {
    font-size: 12px;
    color: #0064c880;
}

.wallet-data {
    display: grid;
    gap: 15px;
}

.data-section h4 {
    color: #0064c8;
    margin-bottom: 15px;
    text-align: center;
    border-bottom: 1px solid #0064c830;
    padding-bottom: 10px;
}

.wallet-address {
    font-family: 'Courier New', monospace !important;
    font-size: 12px !important;
    word-break: break-all;
}

.balance {
    color: #00ff00 !important;
    font-weight: bold;
}

.tx-hash {
    font-family: 'Courier New', monospace !important;
    font-size: 11px !important;
}

.risk-high {
    color: #ff0000 !important;
    font-weight: bold;
    animation: riskBlink 2s infinite;
}

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

.funds-actions {
    display: flex;
    gap: 15px;
    margin-top: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Interpol Styles */
.interpol-options {
    margin: 20px 0;
    text-align: center;
}

.interpol-result {
    margin-top: 20px;
}

/* Bitcoin Miner Styles */
.miner-container {
    padding: 25px;
}

.miner-terminal {
    background: rgba(0, 0, 0, 0.9);
    border: 2px solid #00ff00;
    padding: 20px;
    margin: 20px 0;
    border-radius: 10px;
    min-height: 100px;
    max-height: 200px;
    overflow-y: auto;
}

.miner-controls {
    text-align: center;
    margin: 20px 0;
}

.mining-display {
    margin-top: 20px;
}

.mining-stats {
    background: rgba(0, 0, 0, 0.8);
    border: 1px solid #00ff00;
    padding: 15px;
    border-radius: 8px;
    max-height: 150px;
    overflow-y: auto;
    font-size: 14px;
    line-height: 1.4;
}

/* Enhanced Address Insider Styles */
.address-insider-container {
    padding: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.95), rgba(0, 50, 100, 0.1));
    border-radius: 0;
    min-height: 100%;
    overflow: hidden;
}

/* Professional Header Panel */
.professional-header-panel {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 20px;
    padding: 20px;
    background: linear-gradient(135deg, rgba(0, 100, 200, 0.15), rgba(0, 255, 0, 0.05));
    border-bottom: 3px solid rgba(0, 100, 200, 0.4);
    position: relative;
    overflow: hidden;
}

.professional-header-panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(90deg, transparent, transparent 50px, rgba(0, 255, 0, 0.05) 50px, rgba(0, 255, 0, 0.05) 52px),
        repeating-linear-gradient(0deg, transparent, transparent 30px, rgba(0, 100, 200, 0.03) 30px, rgba(0, 100, 200, 0.03) 32px);
    animation: headerGrid 20s linear infinite;
    pointer-events: none;
}

@keyframes headerGrid {
    0% { transform: translate(0, 0); }
    100% { transform: translate(52px, 32px); }
}

.nsa-certified-badge {
    display: flex;
    align-items: center;
    gap: 15px;
    background: linear-gradient(135deg, rgba(0, 255, 0, 0.2), rgba(0, 200, 0, 0.1));
    padding: 15px 20px;
    border-radius: 15px;
    border: 2px solid rgba(0, 255, 0, 0.4);
    box-shadow: 0 0 25px rgba(0, 255, 0, 0.3);
    animation: badgePulse 3s infinite;
}

@keyframes badgePulse {
    0%, 100% { 
        box-shadow: 0 0 25px rgba(0, 255, 0, 0.3);
        transform: scale(1);
    }
    50% { 
        box-shadow: 0 0 40px rgba(0, 255, 0, 0.5);
        transform: scale(1.02);
    }
}

.badge-icon {
    font-size: 32px;
    filter: drop-shadow(0 0 10px rgba(0, 255, 0, 0.8));
    animation: badgeIconSpin 8s linear infinite;
}

@keyframes badgeIconSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.badge-info {
    display: flex;
    flex-direction: column;
}

.badge-title {
    color: #00ff00;
    font-size: 16px;
    font-weight: bold;
    letter-spacing: 2px;
    text-shadow: 0 0 10px rgba(0, 255, 0, 0.8);
}

.badge-subtitle {
    color: #00aa00;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-top: 2px;
}

.system-status-panel {
    background: rgba(0, 0, 0, 0.8);
    border: 2px solid rgba(0, 100, 200, 0.4);
    border-radius: 15px;
    padding: 15px;
    backdrop-filter: blur(10px);
}

.status-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.status-item {
    text-align: center;
    padding: 10px;
    background: rgba(0, 100, 200, 0.1);
    border-radius: 8px;
    border: 1px solid rgba(0, 100, 200, 0.3);
}

.status-label {
    color: #0064c8;
    font-size: 10px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.status-value {
    color: #00ff00;
    font-size: 12px;
    font-weight: bold;
    text-shadow: 0 0 8px rgba(0, 255, 0, 0.6);
}

.status-value.online {
    animation: onlineStatus 2s infinite;
}

.status-value.active {
    animation: activeStatus 1.5s infinite;
}

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

@keyframes activeStatus {
    0%, 100% { 
        text-shadow: 0 0 8px rgba(255, 255, 0, 0.6);
        color: #ffff00;
    }
    50% { 
        text-shadow: 0 0 12px rgba(255, 255, 0, 0.9);
        color: #ffaa00;
    }
}

/* Scanner Animation */
.scanner-animation {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 100px;
    height: 100px;
}

.quantum-rings {
    position: absolute;
    width: 100%;
    height: 100%;
}

.ring {
    position: absolute;
    border: 2px solid rgba(0, 255, 0, 0.3);
    border-radius: 50%;
    border-top-color: #00ff00;
    animation: quantumRingSpin 3s linear infinite;
}

.ring-1 {
    width: 80px;
    height: 80px;
    top: 10px;
    left: 10px;
    animation-duration: 2s;
}

.ring-2 {
    width: 60px;
    height: 60px;
    top: 20px;
    left: 20px;
    animation-duration: 3s;
    animation-direction: reverse;
}

.ring-3 {
    width: 40px;
    height: 40px;
    top: 30px;
    left: 30px;
    animation-duration: 4s;
}

@keyframes quantumRingSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.scanner-core {
    font-size: 24px;
    color: #00ff00;
    text-shadow: 0 0 15px rgba(0, 255, 0, 0.8);
    animation: coreGlow 2s infinite;
    z-index: 5;
}

@keyframes coreGlow {
    0%, 100% { 
        transform: scale(1);
        filter: drop-shadow(0 0 15px #00ff00);
    }
    50% { 
        transform: scale(1.2);
        filter: drop-shadow(0 0 25px #00ff00);
    }
}

/* Advanced Dashboard Layout */
.advanced-dashboard {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 20px;
    padding: 20px;
    min-height: 600px;
}

.dashboard-sidebar {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.9), rgba(0, 50, 100, 0.1));
    border: 2px solid rgba(0, 100, 200, 0.3);
    border-radius: 15px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.capability-panel h4 {
    color: #0064c8;
    margin: 0 0 15px 0;
    font-size: 16px;
    text-align: center;
    border-bottom: 2px solid rgba(0, 100, 200, 0.4);
    padding-bottom: 10px;
    text-shadow: 0 0 10px rgba(0, 100, 200, 0.5);
}

.capability-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.capability-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: rgba(0, 100, 200, 0.1);
    border: 1px solid rgba(0, 100, 200, 0.3);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.capability-item.active {
    background: rgba(0, 255, 0, 0.1);
    border-color: rgba(0, 255, 0, 0.4);
    animation: capabilityActive 3s infinite;
}

@keyframes capabilityActive {
    0%, 100% { 
        box-shadow: 0 0 10px rgba(0, 255, 0, 0.2);
    }
    50% { 
        box-shadow: 0 0 20px rgba(0, 255, 0, 0.4);
    }
}

.cap-icon {
    font-size: 18px;
    filter: drop-shadow(0 0 5px rgba(0, 255, 0, 0.6));
}

.cap-text {
    color: #00ff00;
    font-size: 13px;
    font-weight: 600;
    text-shadow: 0 0 5px rgba(0, 255, 0, 0.4);
}

/* Network Visualization */
.network-visualization h4 {
    color: #0064c8;
    margin: 0 0 15px 0;
    font-size: 16px;
    text-align: center;
    border-bottom: 2px solid rgba(0, 100, 200, 0.4);
    padding-bottom: 10px;
    text-shadow: 0 0 10px rgba(0, 100, 200, 0.5);
}

.network-map {
    position: relative;
    height: 150px;
    background: radial-gradient(circle, rgba(0, 100, 200, 0.1) 0%, rgba(0, 0, 0, 0.8) 70%);
    border: 2px solid rgba(0, 100, 200, 0.3);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 15px;
}

.network-nodes {
    position: relative;
    width: 100%;
    height: 100%;
}

.node {
    position: absolute;
    font-size: 16px;
    animation: nodeFloat 4s ease-in-out infinite;
}

.node-1 { top: 20%; left: 20%; animation-delay: 0s; }
.node-2 { top: 30%; left: 70%; animation-delay: 0.8s; }
.node-3 { top: 60%; left: 15%; animation-delay: 1.6s; }
.node-4 { top: 70%; left: 60%; animation-delay: 2.4s; }
.node-5 { top: 45%; left: 40%; animation-delay: 3.2s; }

@keyframes nodeFloat {
    0%, 100% { 
        transform: scale(1) translateY(0px);
        filter: brightness(1);
    }
    25% { 
        transform: scale(1.1) translateY(-5px);
        filter: brightness(1.3);
    }
    50% { 
        transform: scale(1.2) translateY(-10px);
        filter: brightness(1.5);
    }
    75% { 
        transform: scale(1.1) translateY(-5px);
        filter: brightness(1.3);
    }
}

.network-connections {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.connection {
    position: absolute;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 0, 0.6), transparent);
    animation: connectionPulse 2s infinite;
}

.con-1 { top: 25%; left: 25%; width: 40%; transform: rotate(15deg); animation-delay: 0s; }
.con-2 { top: 50%; left: 20%; width: 35%; transform: rotate(-20deg); animation-delay: 0.5s; }
.con-3 { top: 65%; left: 25%; width: 30%; transform: rotate(25deg); animation-delay: 1s; }
.con-4 { top: 40%; left: 45%; width: 25%; transform: rotate(-10deg); animation-delay: 1.5s; }

@keyframes connectionPulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; box-shadow: 0 0 10px rgba(0, 255, 0, 0.8); }
}

.network-stats {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.stat {
    display: flex;
    justify-content: space-between;
    padding: 8px 12px;
    background: rgba(0, 100, 200, 0.1);
    border: 1px solid rgba(0, 100, 200, 0.2);
    border-radius: 5px;
}

.stat-label {
    color: #0064c8;
    font-size: 12px;
    font-weight: 600;
}

.stat-value {
    color: #00ff00;
    font-size: 12px;
    font-weight: bold;
    font-family: 'Courier New', monospace;
}

/* Main Analysis Area */
.main-analysis-area {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.9), rgba(0, 50, 100, 0.1));
    border: 2px solid rgba(0, 100, 200, 0.3);
    border-radius: 15px;
    padding: 25px;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

/* Quantum Scanner Interface */
.quantum-scanner-interface {
    background: linear-gradient(135deg, rgba(0, 255, 0, 0.05), rgba(0, 100, 200, 0.03));
    border: 2px solid rgba(0, 255, 0, 0.3);
    border-radius: 15px;
    padding: 25px;
    position: relative;
    overflow: hidden;
}

.quantum-scanner-interface::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(0, 255, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(0, 100, 200, 0.1) 0%, transparent 50%);
    animation: quantumField 8s infinite;
    pointer-events: none;
}

@keyframes quantumField {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.6; }
}

.scanner-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(0, 255, 0, 0.3);
}

.scanner-header h3 {
    color: #00ff00;
    margin: 0;
    font-size: 20px;
    text-shadow: 0 0 15px rgba(0, 255, 0, 0.8);
    letter-spacing: 2px;
}

.control-panel {
    display: flex;
    gap: 20px;
}

.control-group {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.control-group label {
    color: #0064c8;
    font-size: 11px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.control-select {
    background: rgba(0, 0, 0, 0.8);
    border: 1px solid rgba(0, 100, 200, 0.4);
    color: #0064c8;
    padding: 6px 10px;
    border-radius: 5px;
    font-size: 11px;
    outline: none;
}

.control-select:focus {
    border-color: #0064c8;
    box-shadow: 0 0 10px rgba(0, 100, 200, 0.3);
}

/* Target Input Section */
.target-input-section {
    margin: 25px 0;
}

.target-input-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.input-label {
    color: #00ff00;
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-align: center;
    text-shadow: 0 0 10px rgba(0, 255, 0, 0.6);
}

.advanced-input-wrapper {
    display: flex;
    align-items: center;
    background: rgba(0, 0, 0, 0.8);
    border: 3px solid rgba(0, 255, 0, 0.4);
    border-radius: 15px;
    padding: 5px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.advanced-input-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 0, 0.2), transparent);
    animation: inputScan 3s infinite;
}

@keyframes inputScan {
    0% { left: -100%; }
    100% { left: 100%; }
}

.advanced-input-wrapper:focus-within {
    border-color: #00ff00;
    box-shadow: 0 0 25px rgba(0, 255, 0, 0.4);
}

.input-prefix {
    color: #00ff00;
    font-size: 20px;
    padding: 0 15px;
    filter: drop-shadow(0 0 10px rgba(0, 255, 0, 0.8));
}

.target-address-input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    color: #00ff00;
    font-size: 16px;
    font-family: 'Courier New', monospace;
    padding: 15px 10px;
    font-weight: 600;
    text-shadow: 0 0 8px rgba(0, 255, 0, 0.4);
}

.target-address-input::placeholder {
    color: rgba(0, 255, 0, 0.4);
    font-style: italic;
}

.input-validation {
    color: #00ff00;
    font-size: 18px;
    padding: 0 15px;
    animation: validationPulse 2s infinite;
}

@keyframes validationPulse {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; transform: scale(1.2); }
}

.input-actions {
    text-align: center;
    margin-top: 15px;
}

.scan-btn-advanced {
    background: linear-gradient(135deg, #00ff00, #00aa00, #008800);
    border: none;
    border-radius: 15px;
    padding: 18px 40px;
    cursor: pointer;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 255, 0, 0.3);
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.scan-btn-advanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.scan-btn-advanced:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 35px rgba(0, 255, 0, 0.5);
}

.scan-btn-advanced:hover::before {
    left: 100%;
}

.scan-btn-advanced:active {
    transform: translateY(-1px) scale(1.02);
}

.btn-icon {
    font-size: 20px;
    filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.8));
}

.btn-text {
    color: #000;
    font-weight: bold;
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}

/* Quantum Core Display */
.quantum-core-display {
    margin: 30px 0;
    height: 200px;
    position: relative;
}

.quantum-field {
    position: relative;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(0, 255, 0, 0.1) 0%, rgba(0, 0, 0, 0.8) 70%);
    border: 2px solid rgba(0, 255, 0, 0.3);
    border-radius: 15px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.quantum-particles {
    position: absolute;
    width: 100%;
    height: 100%;
}

.particle {
    position: absolute;
    font-size: 20px;
    animation: particleFloat 6s ease-in-out infinite;
}

.particle-1 { top: 20%; left: 20%; animation-delay: 0s; }
.particle-2 { top: 30%; right: 20%; animation-delay: 1.5s; }
.particle-3 { bottom: 30%; left: 30%; animation-delay: 3s; }
.particle-4 { bottom: 20%; right: 30%; animation-delay: 4.5s; }

@keyframes particleFloat {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg);
        opacity: 0.6;
    }
    25% { 
        transform: translateY(-15px) rotate(90deg);
        opacity: 0.8;
    }
    50% { 
        transform: translateY(-30px) rotate(180deg);
        opacity: 1;
    }
    75% { 
        transform: translateY(-15px) rotate(270deg);
        opacity: 0.8;
    }
}

.energy-waves {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.wave {
    position: absolute;
    border: 2px solid rgba(0, 255, 0, 0.4);
    border-radius: 50%;
    animation: waveExpand 4s infinite;
}

.wave-1 {
    width: 50px;
    height: 50px;
    top: 50%;
    left: 50%;
    margin: -25px 0 0 -25px;
    animation-delay: 0s;
}

.wave-2 {
    width: 80px;
    height: 80px;
    top: 50%;
    left: 50%;
    margin: -40px 0 0 -40px;
    animation-delay: 1.3s;
}

.wave-3 {
    width: 120px;
    height: 120px;
    top: 50%;
    left: 50%;
    margin: -60px 0 0 -60px;
    animation-delay: 2.6s;
}

@keyframes waveExpand {
    0% { 
        transform: scale(0.5);
        opacity: 1;
    }
    100% { 
        transform: scale(3);
        opacity: 0;
    }
}

.quantum-beam {
    position: absolute;
    width: 4px;
    height: 0;
    background: linear-gradient(180deg, #00ff00, #00aa00, transparent);
    left: 50%;
    top: 50%;
    transform: translateX(-50%);
    transition: height 0.5s ease;
    box-shadow: 0 0 15px rgba(0, 255, 0, 0.8);
}

/* Professional Results Area */
.professional-results-area {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.95), rgba(0, 50, 100, 0.1));
    border: 3px solid rgba(0, 100, 200, 0.4);
    border-radius: 20px;
    padding: 30px;
    margin-top: 25px;
    position: relative;
    overflow: hidden;
}

.professional-results-area::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #00ff00, #0064c8, #00ff00, #0064c8);
    background-size: 400% 400%;
    animation: borderFlow 8s ease-in-out infinite;
    border-radius: 20px;
    z-index: -1;
}

@keyframes borderFlow {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .professional-header-panel {
        grid-template-columns: 1fr;
        gap: 15px;
        text-align: center;
    }
    
    .advanced-dashboard {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .dashboard-sidebar {
        order: 2;
    }
    
    .main-analysis-area {
        order: 1;
    }
    
    .control-panel {
        flex-direction: column;
        gap: 10px;
    }
    
    .target-address-input {
        font-size: 14px;
    }
    
    .scan-btn-advanced {
        padding: 15px 25px;
        font-size: 14px;
    }
    
    .quantum-core-display {
        height: 150px;
        margin: 20px 0;
    }
}

/* Professional Analysis Results */
.analysis-results-professional {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.95), rgba(0, 50, 100, 0.1));
    border: 3px solid #0064c8;
    border-radius: 20px;
    padding: 35px;
    margin: 25px 0;
    animation: professionalResultsAppear 1s ease-out;
    box-shadow: 
        0 0 50px rgba(0, 100, 200, 0.3),
        inset 0 0 30px rgba(0, 255, 0, 0.05);
}

@keyframes professionalResultsAppear {
    from {
        opacity: 0;
        transform: translateY(40px) scale(0.95);
        filter: blur(5px);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0);
    }
}

.professional-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 35px;
    padding-bottom: 20px;
    border-bottom: 3px solid rgba(0, 100, 200, 0.4);
    position: relative;
}

.professional-header::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 30%;
    height: 3px;
    background: linear-gradient(90deg, #00ff00, transparent);
    animation: headerAccent 3s infinite;
}

@keyframes headerAccent {
    0%, 100% { width: 30%; opacity: 1; }
    50% { width: 70%; opacity: 0.7; }
}

.professional-title {
    display: flex;
    align-items: center;
    gap: 15px;
}

.professional-title h4 {
    color: #0064c8;
    margin: 0;
    font-size: 28px;
    font-weight: 700;
    text-shadow: 0 0 15px rgba(0, 100, 200, 0.6);
    background: linear-gradient(45deg, #0064c8, #00aaff, #0064c8);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: professionalTitleGlow 4s ease-in-out infinite;
}

@keyframes professionalTitleGlow {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.scan-completion-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, rgba(0, 255, 0, 0.25), rgba(0, 200, 0, 0.15));
    padding: 15px 25px;
    border-radius: 30px;
    border: 2px solid #00ff00;
    animation: completionBadgePulse 3s infinite;
    box-shadow: 0 0 25px rgba(0, 255, 0, 0.4);
}

@keyframes completionBadgePulse {
    0%, 100% { 
        box-shadow: 0 0 25px rgba(0, 255, 0, 0.4);
        transform: scale(1);
    }
    50% { 
        box-shadow: 0 0 40px rgba(0, 255, 0, 0.7);
        transform: scale(1.02);
    }
}

.completion-icon {
    color: #00ff00;
    font-size: 20px;
    animation: completionSpin 4s linear infinite;
}

@keyframes completionSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.completion-text {
    color: #00ff00;
    font-weight: bold;
    font-size: 16px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Professional Wallet Overview */
.professional-wallet-overview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.professional-overview-card {
    background: linear-gradient(135deg, rgba(0, 255, 0, 0.12), rgba(0, 100, 200, 0.08));
    border: 2px solid rgba(0, 100, 200, 0.4);
    border-radius: 18px;
    padding: 30px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 100, 200, 0.15);
}

.professional-overview-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 0, 0.15), transparent);
    transition: left 0.6s ease;
}

.professional-overview-card:hover {
    border-color: #0064c8;
    box-shadow: 0 12px 48px rgba(0, 100, 200, 0.25);
    transform: translateY(-5px) scale(1.02);
}

.professional-overview-card:hover::before {
    left: 100%;
}

.professional-card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.card-icon {
    font-size: 32px;
    filter: drop-shadow(0 0 10px rgba(0, 100, 200, 0.6));
    animation: cardIconFloat 3s ease-in-out infinite;
}

@keyframes cardIconFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-8px); }
}

.professional-card-header h5 {
    color: #0064c8;
    margin: 0;
    font-size: 20px;
    font-weight: 600;
    text-shadow: 0 0 10px rgba(0, 100, 200, 0.5);
}

/* Enhanced Address Display */
.professional-address-display {
    background: rgba(0, 0, 0, 0.8);
    border: 2px solid rgba(0, 100, 200, 0.4);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
    position: relative;
}

.professional-address-text {
    color: #00ff00;
    font-family: 'Courier New', monospace;
    font-size: 14px;
    font-weight: bold;
    word-break: break-all;
    line-height: 1.6;
    cursor: pointer;
    padding: 12px;
    border-radius: 8px;
    transition: all 0.3s ease;
    background: rgba(0, 255, 0, 0.05);
    border: 1px solid rgba(0, 255, 0, 0.2);
}

.professional-address-text:hover {
    background: rgba(0, 255, 0, 0.15);
    text-shadow: 0 0 10px #00ff00;
    border-color: #00ff00;
}

.professional-copy-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #0064c8;
    color: #fff;
    border: none;
    padding: 10px 15px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
    font-size: 14px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 100, 200, 0.3);
}

.professional-copy-btn:hover {
    background: #0088ff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 100, 200, 0.5);
}

/* Enhanced Balance Display */
.professional-balance-display {
    text-align: center;
    padding: 25px;
    background: radial-gradient(circle, rgba(0, 255, 0, 0.1) 0%, transparent 70%);
    border-radius: 15px;
    border: 1px solid rgba(0, 255, 0, 0.2);
}

.professional-balance-main {
    color: #00ff00;
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 12px;
    text-shadow: 0 0 20px #00ff00;
    font-family: 'Courier New', monospace;
    animation: balanceMainGlow 4s infinite;
}

@keyframes balanceMainGlow {
    0%, 100% { 
        text-shadow: 0 0 20px #00ff00;
        transform: scale(1);
    }
    50% { 
        text-shadow: 0 0 30px #00ff00, 0 0 40px #00ff00;
        transform: scale(1.05);
    }
}

.professional-balance-usd {
    color: #ffaa00;
    font-size: 18px;
    margin-bottom: 15px;
    font-weight: 600;
    text-shadow: 0 0 10px #ffaa00;
}

.professional-balance-pending {
    color: #ff6600;
    font-size: 16px;
    font-style: italic;
    opacity: 0.9;
    background: rgba(255, 102, 0, 0.1);
    padding: 8px 15px;
    border-radius: 20px;
    border: 1px solid rgba(255, 102, 0, 0.3);
}

/* Enhanced Risk Display */
.professional-risk-display {
    text-align: center;
    padding: 25px;
    border-radius: 15px;
    position: relative;
}

.professional-risk-level {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.professional-risk-indicator {
    font-size: 28px;
    animation: riskIndicatorPulse 2.5s infinite;
}

@keyframes riskIndicatorPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.3); }
}

.professional-risk-description {
    color: #ffffff90;
    font-size: 14px;
    font-style: italic;
    line-height: 1.5;
    background: rgba(0, 0, 0, 0.4);
    padding: 12px 20px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Enhanced Detailed Analysis */
.professional-detailed-analysis {
    margin-top: 40px;
}

.professional-analysis-section {
    background: rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(0, 100, 200, 0.3);
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.professional-analysis-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #0064c8, #00aaff, #0064c8);
    background-size: 200% 100%;
    animation: sectionHeaderFlow 3s linear infinite;
}

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

.professional-analysis-section:hover {
    border-color: rgba(0, 100, 200, 0.6);
    background: rgba(0, 100, 200, 0.08);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 100, 200, 0.2);
}

.professional-analysis-section h5 {
    color: #0064c8;
    margin: 0 0 25px 0;
    font-size: 20px;
    font-weight: 600;
    border-bottom: 2px solid rgba(0, 100, 200, 0.4);
    padding-bottom: 12px;
    text-shadow: 0 0 10px rgba(0, 100, 200, 0.5);
    display: flex;
    align-items: center;
    gap: 10px;
}

.section-icon {
    font-size: 24px;
    filter: drop-shadow(0 0 8px rgba(0, 100, 200, 0.6));
}

/* Enhanced Stats Grid */
.professional-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.professional-stat-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px;
    background: linear-gradient(135deg, rgba(0, 255, 0, 0.12), rgba(0, 100, 200, 0.08));
    border-radius: 12px;
    border-left: 5px solid #0064c8;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.professional-stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #00ff00, transparent);
    animation: statAccent 3s infinite;
}

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

.professional-stat-item:hover {
    background: linear-gradient(135deg, rgba(0, 255, 0, 0.2), rgba(0, 100, 200, 0.15));
    transform: translateX(8px) scale(1.02);
    box-shadow: 0 5px 20px rgba(0, 100, 200, 0.2);
}

.professional-stat-label {
    color: #0064c8;
    font-weight: 600;
    font-size: 15px;
    text-shadow: 0 0 5px rgba(0, 100, 200, 0.4);
}

.professional-stat-value {
    color: #00ff00;
    font-family: 'Courier New', monospace;
    font-weight: bold;
    font-size: 16px;
    text-align: right;
    text-shadow: 0 0 8px rgba(0, 255, 0, 0.5);
}

/* Enhanced Transaction Details */
.professional-transaction-details {
    display: grid;
    gap: 15px;
}

.professional-tx-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 16px;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 10px;
    border: 1px solid rgba(0, 100, 200, 0.3);
    transition: all 0.3s ease;
    position: relative;
}

.professional-tx-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #0064c8, transparent);
    animation: txItemAccent 4s infinite;
}

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

.professional-tx-item:hover {
    border-color: rgba(0, 100, 200, 0.6);
    background: rgba(0, 100, 200, 0.08);
    transform: scale(1.02);
}

.professional-tx-label {
    color: #0064c8;
    font-weight: 600;
    font-size: 15px;
    min-width: 160px;
    text-shadow: 0 0 5px rgba(0, 100, 200, 0.4);
}

.professional-tx-value {
    color: #00ff00;
    font-family: 'Courier New', monospace;
    font-size: 14px;
    text-align: right;
    word-break: break-all;
    max-width: 65%;
    line-height: 1.5;
    text-shadow: 0 0 5px rgba(0, 255, 0, 0.4);
}

/* Enhanced Services List */
.professional-services-list {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.professional-service-tag {
    background: linear-gradient(135deg, rgba(0, 100, 200, 0.4), rgba(0, 150, 255, 0.3));
    color: #00aaff;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    border: 2px solid rgba(0, 100, 200, 0.6);
    transition: all 0.4s ease;
    text-shadow: 0 0 5px rgba(0, 170, 255, 0.5);
    box-shadow: 0 4px 15px rgba(0, 100, 200, 0.2);
}

.professional-service-tag:hover {
    background: linear-gradient(135deg, rgba(0, 100, 200, 0.6), rgba(0, 150, 255, 0.5));
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 100, 200, 0.4);
}

/* Enhanced Security Metrics */
.professional-security-metrics {
    display: grid;
    gap: 15px;
}

.professional-security-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
    background: linear-gradient(135deg, rgba(0, 255, 0, 0.08), rgba(0, 200, 0, 0.05));
    border-radius: 10px;
    border: 1px solid rgba(0, 255, 0, 0.3);
    transition: all 0.3s ease;
}

.professional-security-item:hover {
    background: linear-gradient(135deg, rgba(0, 255, 0, 0.15), rgba(0, 200, 0, 0.1));
    border-color: rgba(0, 255, 0, 0.5);
    transform: scale(1.02);
}

.professional-security-label {
    color: #00ff00;
    font-weight: 600;
    font-size: 15px;
    text-shadow: 0 0 5px rgba(0, 255, 0, 0.4);
}

.professional-security-value {
    color: #00ff00;
    font-weight: bold;
    font-size: 15px;
    text-shadow: 0 0 8px rgba(0, 255, 0, 0.5);
}

/* Enhanced Analysis Footer */
.professional-analysis-footer {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 3px solid rgba(0, 100, 200, 0.4);
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.professional-analysis-footer::before {
    content: '';
    position: absolute;
    top: -3px;
    left: 0;
    width: 40%;
    height: 3px;
    background: linear-gradient(90deg, #00ff00, transparent);
    animation: footerAccent 4s infinite;
}

@keyframes footerAccent {
    0%, 100% { width: 40%; opacity: 1; }
    50% { width: 80%; opacity: 0.7; }
}

.professional-scan-timestamp small {
    color: #0064c8;
    font-size: 14px;
    font-style: italic;
    background: rgba(0, 100, 200, 0.1);
    padding: 8px 15px;
    border-radius: 20px;
    border: 1px solid rgba(0, 100, 200, 0.3);
}

.professional-action-buttons {
    display: flex;
    gap: 20px;
}

.professional-action-btn {
    padding: 15px 30px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-weight: bold;
    font-size: 15px;
    transition: all 0.4s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.professional-export-btn {
    background: linear-gradient(135deg, #ff6600, #ff8800);
    color: #fff;
    border: 2px solid transparent;
}

.professional-export-btn:hover {
    background: linear-gradient(135deg, #ff8800, #ffaa00);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(255, 102, 0, 0.4);
}

.professional-new-scan-btn {
    background: linear-gradient(135deg, #00ff00, #00aa00);
    color: #000;
    border: 2px solid transparent;
}

.professional-new-scan-btn:hover {
    background: linear-gradient(135deg, #00aa00, #008800);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 255, 0, 0.4);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .professional-wallet-overview {
        grid-template-columns: 1fr;
    }
    
    .professional-stats-grid {
        grid-template-columns: 1fr;
    }
    
    .professional-analysis-footer {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .professional-action-buttons {
        width: 100%;
        justify-content: center;
    }
    
    .professional-tx-item {
        flex-direction: column;
        gap: 10px;
    }
    
    .professional-tx-label {
        min-width: auto;
    }
    
    .professional-tx-value {
        max-width: 100%;
        text-align: left;
    }
}

/* Advanced UI Enhancements */
.welcome-screen {
    text-align: center;
    padding: 40px 20px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(0, 100, 200, 0.3);
    border-radius: 15px;
    margin: 20px 0;
}

.welcome-screen .blockchain-icon {
    font-size: 64px;
    margin-bottom: 20px;
    animation: blockchainPulse 3s infinite;
    filter: drop-shadow(0 0 20px rgba(0, 100, 200, 0.5));
}

@keyframes blockchainPulse {
    0%, 100% { 
        transform: scale(1);
        filter: drop-shadow(0 0 20px rgba(0, 100, 200, 0.5));
    }
    50% { 
        transform: scale(1.1);
        filter: drop-shadow(0 0 30px rgba(0, 100, 200, 0.8));
    }
}

.welcome-screen h4 {
    color: #0064c8;
    margin: 0 0 15px 0;
    font-size: 24px;
    text-shadow: 0 0 10px rgba(0, 100, 200, 0.5);
}

.welcome-screen p {
    color: #0064c8;
    margin: 0 0 20px 0;
    font-size: 16px;
}

.welcome-screen ul {
    list-style: none;
    padding: 0;
    max-width: 400px;
    margin: 0 auto;
}

.welcome-screen li {
    color: #00ff00;
    margin: 10px 0;
    padding: 8px 15px;
    background: rgba(0, 255, 0, 0.1);
    border-radius: 8px;
    border-left: 4px solid #00ff00;
    text-align: left;
}

.tool-title h3 {
    margin: 0;
    font-size: 20px;
    background: linear-gradient(45deg, #0064c8, #00aaff, #0064c8);
    background-size: 400% 400%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: titleGradient 3s ease-in-out infinite;
    text-shadow: 0 0 20px rgba(0, 100, 200, 0.5);
}

@keyframes titleGradient {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.insider-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding: 20px;
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid #0064c8;
    border-radius: 10px;
}

.tool-description p {
    color: #0064c8;
    margin: 0;
    font-size: 14px;
    font-style: italic;
}

.scan-status {
    display: flex;
    align-items: center;
    gap: 8px;
}

.status-indicator {
    color: #00ff00;
    font-size: 16px;
    animation: statusPulse 2s infinite;
}

.status-text {
    color: #00ff00;
    font-weight: bold;
    font-size: 14px;
}

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

.address-input-section {
    margin: 25px 0;
}

.input-wrapper {
    display: flex;
    gap: 15px;
    margin-bottom: 10px;
    align-items: center;
}

.address-input {
    flex: 1;
    padding: 15px;
    background: rgba(0, 0, 0, 0.8);
    border: 2px solid #0064c8;
    color: #00ff00;
    border-radius: 8px;
    font-family: 'Courier New', monospace;
    font-size: 14px;
    transition: all 0.3s ease;
}

.address-input:focus {
    outline: none;
    border-color: #00ff00;
    box-shadow: 0 0 15px rgba(0, 255, 0, 0.3);
}

.scan-btn {
    background: linear-gradient(135deg, #0064c8, #0088ff);
    color: #fff;
    border: none;
    padding: 15px 25px;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.scan-btn:hover {
    background: linear-gradient(135deg, #0088ff, #00aaff);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 100, 200, 0.4);
}

.input-help {
    text-align: center;
}

.input-help small {
    color: #0064c880;
    font-size: 12px;
}

/* Scanning Interface */
.scanning-interface {
    background: rgba(0, 0, 0, 0.9);
    border: 2px solid #0064c8;
    border-radius: 15px;
    padding: 30px;
    margin: 20px 0;
}

.scan-header {
    text-align: center;
    margin-bottom: 25px;
}

.scan-header h4 {
    color: #0064c8;
    margin: 0 0 10px 0;
    font-size: 20px;
}

.scan-target {
    color: #00ff00;
    font-family: 'Courier New', monospace;
    font-size: 12px;
    word-break: break-all;
    background: rgba(0, 255, 0, 0.1);
    padding: 8px;
    border-radius: 5px;
}

.scan-visualization {
    margin: 25px 0;
    position: relative;
}

.blockchain-network {
    position: relative;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 100, 200, 0.1);
    border-radius: 10px;
    overflow: hidden;
}

.network-nodes {
    display: flex;
    gap: 20px;
    z-index: 2;
}

.node {
    font-size: 24px;
    opacity: 0.3;
    transition: all 0.5s ease;
}

.node.active {
    opacity: 1;
    animation: nodeGlow 2s infinite;
    transform: scale(1.2);
}

@keyframes nodeGlow {
    0%, 100% { 
        filter: drop-shadow(0 0 10px #0064c8);
    }
    50% { 
        filter: drop-shadow(0 0 20px #00ff00);
    }
}

.scan-waves {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        90deg,
        transparent,
        transparent 20px,
        rgba(0, 255, 0, 0.1) 20px,
        rgba(0, 255, 0, 0.1) 25px
    );
    animation: scanWaves 3s linear infinite;
}

@keyframes scanWaves {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.scan-progress-container {
    margin: 25px 0;
}

.progress-bar-advanced {
    position: relative;
    height: 30px;
    background: rgba(0, 0, 0, 0.8);
    border: 2px solid #0064c8;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 10px;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #0064c8, #00aaff, #00ff00);
    width: 0%;
    transition: width 0.3s ease;
    position: relative;
    border-radius: 13px;
}

.progress-glow {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 30px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: progressGlow 2s infinite;
}

@keyframes progressGlow {
    0% { transform: translateX(-30px); }
    100% { transform: translateX(calc(100vw + 30px)); }
}

.progress-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.scan-percentage {
    color: #00ff00;
    font-weight: bold;
    font-size: 16px;
}

.scan-speed {
    color: #0064c8;
    font-size: 12px;
}

.scan-phases {
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid #0064c850;
    border-radius: 10px;
    padding: 20px;
    margin: 25px 0;
    max-height: 150px;
    overflow-y: auto;
}

.phase-item {
    color: #0064c8;
    margin: 8px 0;
    padding: 5px;
    border-radius: 3px;
    transition: all 0.3s ease;
    font-size: 14px;
}

.phase-item.active {
    color: #00ff00;
    background: rgba(0, 255, 0, 0.1);
    animation: phaseActive 2s infinite;
}

.phase-item.complete {
    color: #00aa00;
    opacity: 0.7;
}

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

.scan-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin: 25px 0;
}

.metric-item {
    background: rgba(0, 100, 200, 0.1);
    border: 1px solid #0064c8;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
}

.metric-label {
    display: block;
    color: #0064c880;
    font-size: 12px;
    margin-bottom: 5px;
}

.metric-value {
    color: #00ff00;
    font-weight: bold;
    font-size: 18px;
}

/* Analysis Results */
.analysis-results-advanced {
    background: rgba(0, 0, 0, 0.9);
    border: 2px solid #00ff00;
    border-radius: 15px;
    padding: 30px;
    margin: 20px 0;
}

.results-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 1px solid #00ff0030;
}

.results-header h4 {
    color: #00ff00;
    margin: 0;
    font-size: 22px;
}

.analysis-complete-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 255, 0, 0.2);
    padding: 8px 15px;
    border-radius: 20px;
    border: 1px solid #00ff00;
}

.badge-icon {
    color: #00ff00;
    font-size: 16px;
}

.badge-text {
    color: #00ff00;
    font-weight: bold;
    font-size: 12px;
}

.wallet-overview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.overview-card {
    background: rgba(0, 255, 0, 0.05);
    border: 1px solid #00ff0030;
    border-radius: 10px;
    padding: 20px;
}

.card-header h5 {
    color: #00ff00;
    margin: 0 0 15px 0;
    font-size: 16px;
}

.address-display {
    display: flex;
    align-items: center;
    gap: 10px;
}

.address-text {
    flex: 1;
    background: rgba(0, 0, 0, 0.6);
    padding: 10px;
    border-radius: 5px;
    font-family: 'Courier New', monospace;
    font-size: 12px;
    word-break: break-all;
    color: #00ff00;
}

.copy-address-btn {
    background: #0064c8;
    color: #fff;
    border: none;
    padding: 10px;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.copy-address-btn:hover {
    background: #0088ff;
    transform: scale(1.1);
}

.balance-display {
    text-align: center;
}

.balance-main {
    color: #00ff00;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 5px;
}

.balance-usd {
    color: #ffaa00;
    font-size: 14px;
    margin-bottom: 10px;
}

.balance-pending {
    color: #ff6600;
    font-size: 12px;
    font-style: italic;
}

.risk-display {
    text-align: center;
}

.risk-level {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
}

.risk-indicator {
    font-size: 16px;
    margin-right: 5px;
}

.risk-description {
    color: #ffffff80;
    font-size: 12px;
    font-style: italic;
}

.detailed-analysis {
    margin-top: 30px;
}

.analysis-section {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid #00ff0020;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
}

.analysis-section h5 {
    color: #00ff00;
    margin: 0 0 15px 0;
    font-size: 16px;
    border-bottom: 1px solid #00ff0030;
    padding-bottom: 8px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.stat-item {
    display: flex;
    justify-content: space-between;
    padding: 10px;
    background: rgba(0, 255, 0, 0.05);
    border-radius: 5px;
}

.stat-label {
    color: #00ff0080;
    font-weight: bold;
}

.stat-value {
    color: #00ff00;
    font-family: 'Courier New', monospace;
}

.status-active { color: #00ff00; }
.status-inactive { color: #ffaa00; }
.status-suspended { color: #ff6600; }
.status-flagged { color: #ff0000; }

.transaction-details {
    display: grid;
    gap: 10px;
}

.tx-item {
    display: flex;
    justify-content: space-between;
    padding: 8px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 5px;
}

.tx-label {
    color: #00ff0080;
    font-weight: bold;
}

.tx-value {
    color: #00ff00;
    font-family: 'Courier New', monospace;
    font-size: 12px;
    max-width: 60%;
    text-align: right;
    word-break: break-all;
}

.services-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.service-tag {
    background: rgba(0, 100, 200, 0.2);
    color: #0064c8;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 12px;
    border: 1px solid #0064c8;
}

.security-metrics {
    display: grid;
    gap: 10px;
}

.security-item {
    display: flex;
    justify-content: space-between;
    padding: 8px;
    background: rgba(0, 255, 0, 0.05);
    border-radius: 5px;
}

.security-label {
    color: #00ff0080;
    font-weight: bold;
}

.security-value {
    color: #00ff00;
}

.security-value.secure {
    color: #00ff00;
}

.analysis-footer {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #00ff0030;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.scan-timestamp small {
    color: #00ff0060;
    font-size: 12px;
}

.action-buttons {
    display: flex;
    gap: 10px;
}

.action-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
}

.export-btn {
    background: #ff6600;
    color: #fff;
}

.export-btn:hover {
    background: #ff8800;
    transform: translateY(-2px);
}

.new-scan-btn {
    background: #00ff00;
    color: #000;
}

.new-scan-btn:hover {
    background: #00aa00;
    transform: translateY(-2px);
}

/* Scan Results Container */
.scan-results-container {
    margin-top: 25px;
    border-radius: 10px;
    overflow: hidden;
}

/* Enhanced Analysis Results */
.analysis-results-advanced {
    background: rgba(0, 0, 0, 0.95);
    border: 2px solid #00ff00;
    border-radius: 15px;
    padding: 30px;
    margin: 20px 0;
    animation: resultsAppear 0.8s ease-out;
}

@keyframes resultsAppear {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.results-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid #00ff0030;
}

.results-header h4 {
    color: #00ff00;
    margin: 0;
    font-size: 24px;
    text-shadow: 0 0 10px #00ff00;
}

.analysis-complete-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(0, 255, 0, 0.2);
    padding: 10px 20px;
    border-radius: 25px;
    border: 2px solid #00ff00;
    animation: badgePulse 2s infinite;
}

@keyframes badgePulse {
    0%, 100% { 
        box-shadow: 0 0 15px rgba(0, 255, 0, 0.3);
    }
    50% { 
        box-shadow: 0 0 25px rgba(0, 255, 0, 0.6);
    }
}

.badge-icon {
    color: #00ff00;
    font-size: 18px;
}

.badge-text {
    color: #00ff00;
    font-weight: bold;
    font-size: 14px;
    letter-spacing: 1px;
}

/* Wallet Overview Cards */
.wallet-overview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-bottom: 35px;
}

.overview-card {
    background: linear-gradient(135deg, rgba(0, 255, 0, 0.08), rgba(0, 100, 200, 0.05));
    border: 2px solid rgba(0, 255, 0, 0.3);
    border-radius: 15px;
    padding: 25px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.overview-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 0, 0.1), transparent);
    transition: left 0.5s ease;
}

.overview-card:hover {
    border-color: #00ff00;
    box-shadow: 0 0 25px rgba(0, 255, 0, 0.2);
    transform: translateY(-3px);
}

.overview-card:hover::before {
    left: 100%;
}

.card-header h5 {
    color: #00ff00;
    margin: 0 0 20px 0;
    font-size: 18px;
    text-shadow: 0 0 8px #00ff00;
}

/* Address Display Enhancement */
.address-display {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(0, 0, 0, 0.7);
    padding: 15px;
    border-radius: 10px;
    border: 1px solid rgba(0, 255, 0, 0.3);
}

.address-text {
    flex: 1;
    font-family: 'Courier New', monospace;
    font-size: 13px;
    word-break: break-all;
    color: #00ff00;
    cursor: pointer;
    padding: 8px;
    border-radius: 5px;
    transition: all 0.3s ease;
    user-select: all;
}

.address-text:hover {
    background: rgba(0, 255, 0, 0.1);
    text-shadow: 0 0 8px #00ff00;
}

.copy-address-btn {
    background: #0064c8;
    color: #fff;
    border: none;
    padding: 12px 15px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 16px;
    min-width: 50px;
}

.copy-address-btn:hover {
    background: #0088ff;
    transform: scale(1.1);
    box-shadow: 0 0 15px rgba(0, 100, 200, 0.5);
}

/* Enhanced Balance Display */
.balance-display {
    text-align: center;
    position: relative;
}

.balance-main {
    color: #00ff00;
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 8px;
    text-shadow: 0 0 15px #00ff00;
    font-family: 'Courier New', monospace;
    animation: balanceGlow 3s infinite;
}

@keyframes balanceGlow {
    0%, 100% { 
        text-shadow: 0 0 15px #00ff00;
    }
    50% { 
        text-shadow: 0 0 25px #00ff00, 0 0 35px #00ff00;
    }
}

.balance-usd {
    color: #ffaa00;
    font-size: 16px;
    margin-bottom: 12px;
    font-weight: bold;
}

.balance-pending {
    color: #ff6600;
    font-size: 14px;
    font-style: italic;
    opacity: 0.9;
}

/* Enhanced Risk Display */
.risk-display {
    text-align: center;
    position: relative;
}

.risk-level {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.risk-indicator {
    font-size: 24px;
    animation: riskPulse 2s infinite;
}

@keyframes riskPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

.risk-description {
    color: #ffffff80;
    font-size: 13px;
    font-style: italic;
    line-height: 1.4;
}

/* Detailed Analysis Sections */
.detailed-analysis {
    margin-top: 35px;
}

.analysis-section {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(0, 255, 0, 0.2);
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.analysis-section:hover {
    border-color: rgba(0, 255, 0, 0.4);
    background: rgba(0, 255, 0, 0.05);
}

.analysis-section h5 {
    color: #00ff00;
    margin: 0 0 20px 0;
    font-size: 18px;
    border-bottom: 2px solid rgba(0, 255, 0, 0.3);
    padding-bottom: 10px;
    text-shadow: 0 0 8px #00ff00;
}

/* Enhanced Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 18px;
}

.stat-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    background: rgba(0, 255, 0, 0.08);
    border-radius: 10px;
    border-left: 4px solid #00ff00;
    transition: all 0.3s ease;
}

.stat-item:hover {
    background: rgba(0, 255, 0, 0.15);
    transform: translateX(5px);
}

.stat-label {
    color: #00ff0090;
    font-weight: bold;
    font-size: 14px;
}

.stat-value {
    color: #00ff00;
    font-family: 'Courier New', monospace;
    font-weight: bold;
    text-align: right;
}

/* Status Color Variants */
.status-active { color: #00ff00; }
.status-inactive { color: #ffaa00; }
.status-suspended { color: #ff6600; }
.status-flagged { color: #ff0000; }

/* Transaction Details */
.transaction-details {
    display: grid;
    gap: 12px;
}

.tx-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 12px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 8px;
    border: 1px solid rgba(0, 255, 0, 0.2);
    transition: all 0.3s ease;
}

.tx-item:hover {
    border-color: rgba(0, 255, 0, 0.4);
    background: rgba(0, 255, 0, 0.05);
}

.tx-label {
    color: #00ff0090;
    font-weight: bold;
    font-size: 14px;
    min-width: 140px;
}

.tx-value {
    color: #00ff00;
    font-family: 'Courier New', monospace;
    font-size: 13px;
    text-align: right;
    word-break: break-all;
    max-width: 60%;
    line-height: 1.4;
}

/* Services List */
.services-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.service-tag {
    background: linear-gradient(135deg, rgba(0, 100, 200, 0.3), rgba(0, 150, 255, 0.2));
    color: #0088ff;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: bold;
    border: 1px solid rgba(0, 100, 200, 0.5);
    transition: all 0.3s ease;
}

.service-tag:hover {
    background: linear-gradient(135deg, rgba(0, 100, 200, 0.5), rgba(0, 150, 255, 0.4));
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 100, 200, 0.3);
}

/* Security Metrics */
.security-metrics {
    display: grid;
    gap: 12px;
}

.security-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px;
    background: rgba(0, 255, 0, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(0, 255, 0, 0.2);
}

.security-label {
    color: #00ff0090;
    font-weight: bold;
    font-size: 14px;
}

.security-value {
    color: #00ff00;
    font-weight: bold;
    font-size: 14px;
}

.security-value.secure {
    color: #00ff00;
}

/* Analysis Footer */
.analysis-footer {
    margin-top: 35px;
    padding-top: 25px;
    border-top: 2px solid rgba(0, 255, 0, 0.3);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.scan-timestamp small {
    color: #00ff0070;
    font-size: 13px;
    font-style: italic;
}

.action-buttons {
    display: flex;
    gap: 15px;
}

.action-btn {
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
    font-size: 14px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.export-btn {
    background: linear-gradient(135deg, #ff6600, #ff8800);
    color: #fff;
}

.export-btn:hover {
    background: linear-gradient(135deg, #ff8800, #ffaa00);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 102, 0, 0.4);
}

.new-scan-btn {
    background: linear-gradient(135deg, #00ff00, #00aa00);
    color: #000;
}

.new-scan-btn:hover {
    background: linear-gradient(135deg, #00aa00, #008800);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 255, 0, 0.4);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .insider-header {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .input-wrapper {
        flex-direction: column;
    }
    
    .scan-btn {
        width: 100%;
    }
    
    .wallet-overview {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .scan-metrics {
        grid-template-columns: 1fr;
    }
    
    .analysis-footer {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .action-buttons {
        width: 100%;
        justify-content: center;
    }
    
    .address-display {
        flex-direction: column;
        gap: 10px;
    }
    
    .copy-address-btn {
        width: 100%;
    }
    
    .tx-item {
        flex-direction: column;
        gap: 8px;
    }
    
    .tx-label {
        min-width: auto;
    }
    
    .tx-value {
        max-width: 100%;
        text-align: left;
    }
}

/* Advanced Bitcoin Miner Styles */
.miner-status-bar {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
    margin: 15px 0;
    padding: 15px;
    background: rgba(0, 255, 0, 0.1);
    border: 1px solid #00ff0030;
    border-radius: 8px;
}

.status-item {
    color: #00ff00;
    font-size: 14px;
}

.mining-metrics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 15px;
    margin: 20px 0;
}

.metric-card {
    background: rgba(0, 0, 0, 0.8);
    border: 2px solid #00ff00;
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
}

.metric-card:hover {
    background: rgba(0, 255, 0, 0.1);
    box-shadow: 0 0 15px #00ff0050;
}

.metric-label {
    font-size: 12px;
    color: #00ff0080;
    margin-bottom: 5px;
}

.metric-value {
    font-size: 18px;
    font-weight: bold;
    color: #00ff00;
}

.mining-visualization {
    margin: 20px 0;
}

.blockchain-blocks {
    display: flex;
    gap: 5px;
    margin: 15px 0;
    min-height: 30px;
    overflow-x: auto;
}

.blockchain-block {
    font-size: 20px;
    animation: blockAppear 0.5s ease-in;
}

@keyframes blockAppear {
    from { opacity: 0; transform: scale(0); }
    to { opacity: 1; transform: scale(1); }
}

.mining-progress-bar {
    position: relative;
    margin: 10px 0;
}

.progress-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #000;
    font-weight: bold;
    z-index: 1;
}

.stop-btn {
    background: linear-gradient(135deg, #ff0000, #aa0000);
    color: #fff;
    border: none;
    padding: 18px 35px;
    margin: 20px 0;
    cursor: pointer;
    border-radius: 10px;
    font-weight: bold;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px #ff000050;
}

.stop-btn:hover {
    background: linear-gradient(135deg, #aa0000, #880000);
    transform: translateY(-2px);
}

/* Neural Password Decryptor Styles */
.decryptor-status-panel {
    display: flex;
    gap: 20px;
    margin: 20px 0;
    padding: 20px;
    background: rgba(0, 255, 0, 0.05);
    border: 1px solid #00ff0030;
    border-radius: 10px;
}

.neural-network-viz {
    display: flex;
    gap: 20px;
    align-items: center;
}

.neuron-layer {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.neuron {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #333;
    border: 2px solid #00ff0050;
    transition: all 0.3s ease;
}

.neuron.active {
    background: #00ff00;
    box-shadow: 0 0 10px #00ff00;
    animation: neuronPulse 2s infinite;
}

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

.ai-status {
    flex: 1;
}

.ai-status div {
    margin: 5px 0;
    color: #00ff00;
}

.decrypt-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin: 20px 0;
}

.method-card {
    background: rgba(0, 0, 0, 0.8);
    border: 2px solid #00ff0050;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.method-card:hover {
    border-color: #00ff00;
    background: rgba(0, 255, 0, 0.1);
    transform: translateY(-5px);
}

.method-icon {
    font-size: 30px;
    margin-bottom: 10px;
}

.method-name {
    font-weight: bold;
    color: #00ff00;
    margin-bottom: 5px;
}

.method-desc {
    font-size: 12px;
    color: #00ff0080;
}

.decryption-progress {
    padding: 20px;
}

.password-attempts {
    background: #000;
    border: 1px solid #00ff00;
    padding: 15px;
    max-height: 150px;
    overflow-y: auto;
    font-family: 'Courier New', monospace;
    font-size: 12px;
    margin: 15px 0;
}

.progress-metrics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
    margin: 15px 0;
}

.ai-learning {
    padding: 20px;
}

.learning-phase {
    font-size: 16px;
    color: #00ff00;
    margin: 15px 0;
    animation: pulse 1s infinite;
}

.dictionary-progress {
    margin: 20px 0;
}

.social-engineering {
    padding: 20px;
}

.data-source {
    margin: 10px 0;
    padding: 8px;
    background: rgba(0, 255, 0, 0.1);
    border-left: 3px solid #00ff00;
}

.rainbow-attack {
    padding: 20px;
}

.hash-search div {
    margin: 10px 0;
    font-family: 'Courier New', monospace;
}

/* Advanced Crypto Drainer Styles */
.drainer-status-panel {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 20px;
    margin: 20px 0;
    padding: 20px;
    background: rgba(255, 102, 0, 0.1);
    border: 1px solid #ff6600;
    border-radius: 10px;
}

.drainer-metrics {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.metric-box {
    background: rgba(0, 0, 0, 0.8);
    border: 2px solid #ff6600;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
}

.metric-label {
    font-size: 12px;
    color: #ff660080;
    margin-bottom: 5px;
}

.metric-value {
    font-size: 18px;
    font-weight: bold;
    color: #ff6600;
}

.drainer-radar {
    position: relative;
}

.radar-screen {
    width: 150px;
    height: 150px;
    border: 3px solid #ff6600;
    border-radius: 50%;
    position: relative;
    margin: 0 auto;
    background: radial-gradient(circle, rgba(255, 102, 0, 0.1) 0%, rgba(0, 0, 0, 0.9) 70%);
}

.radar-sweep {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 2px;
    height: 70px;
    background: linear-gradient(to top, transparent, #ff6600);
    transform-origin: bottom;
    animation: radarSweep 3s linear infinite;
}

.radar-blips {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.radar-blip {
    position: absolute;
    width: 8px;
    height: 8px;
    background: #ff6600;
    border-radius: 50%;
    animation: blipPulse 2s ease-out;
}

@keyframes blipPulse {
    0% {
        opacity: 1;
        transform: scale(1);
    }
    100% {
        opacity: 0;
        transform: scale(3);
    }
}

.target-selection {
    margin: 20px 0;
}

.target-list {
    display: grid;
    gap: 10px;
    margin: 15px 0;
    max-height: 200px;
    overflow-y: auto;
}

.target-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px;
    background: rgba(255, 102, 0, 0.1);
    border: 1px solid #ff660050;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.target-item:hover {
    background: rgba(255, 102, 0, 0.2);
    border-color: #ff6600;
}

.target-name {
    font-weight: bold;
    color: #ff6600;
    margin-bottom: 5px;
}

.target-details {
    display: flex;
    gap: 15px;
    font-size: 12px;
}

.target-value {
    color: #00ff00;
    font-weight: bold;
}

.target-type {
    color: #ffffff;
}

.risk-low { color: #00ff00; }
.risk-medium { color: #ffff00; }
.risk-high { color: #ff6600; }

.target-btn {
    background: linear-gradient(135deg, #ff6600, #ff9900);
    color: #fff;
    border: none;
    padding: 8px 15px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
}

.target-btn:hover {
    background: linear-gradient(135deg, #ff9900, #ffcc00);
    transform: scale(1.05);
}

.draining-animation {
    text-align: center;
    padding: 20px;
}

.drain-visualization {
    margin: 20px 0;
    padding: 15px;
    background: rgba(255, 102, 0, 0.1);
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}

.crypto-flow {
    position: relative;
    height: 60px;
    background: linear-gradient(90deg, transparent, #ff6600, transparent);
    border-radius: 5px;
    animation: cryptoFlow 2s infinite;
}

@keyframes cryptoFlow {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.drain-metrics {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin: 15px 0;
    text-align: left;
}

.drain-metrics div {
    padding: 8px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 5px;
    font-family: 'Courier New', monospace;
}

.completion-stats {
    margin: 15px 0;
    text-align: left;
}

.next-actions {
    display: flex;
    gap: 15px;
    margin-top: 20px;
    justify-content: center;
}

.action-btn {
    background: linear-gradient(135deg, #00ff00, #00aa00);
    color: #000;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
}

.action-btn:hover {
    background: linear-gradient(135deg, #00aa00, #008800);
    transform: translateY(-2px);
}

.stop-drainer-btn {
    background: linear-gradient(135deg, #ff0000, #aa0000);
    color: #fff;
    border: none;
    padding: 15px 30px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 10px;
    cursor: pointer;
    animation: pulse 2s infinite;
    box-shadow: 0 0 20px #ff000050;
    transition: all 0.3s ease;
}

.stop-drainer-btn:hover {
    background: linear-gradient(135deg, #aa0000, #880000);
    transform: scale(1.05);
}

/* Advanced Interpol Styles */
.interpol-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 20px 0;
    padding: 20px;
    background: rgba(0, 100, 200, 0.1);
    border: 1px solid #0064c8;
    border-radius: 10px;
}

.interpol-status {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.status-indicator {
    display: flex;
    align-items: center;
    gap: 10px;
}

.status-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #666;
}

.status-dot.active {
    background: #00ff00;
    animation: pulse 2s infinite;
}

.clearance-level {
    color: #0064c8;
    font-weight: bold;
}

.level-badge {
    background: linear-gradient(135deg, #ff6600, #ff9900);
    color: #000;
    padding: 4px 8px;
    border-radius: 5px;
    font-size: 12px;
}

.global-map {
    position: relative;
    background: radial-gradient(circle, rgba(0, 100, 200, 0.2) 0%, rgba(0, 0, 0, 0.8) 70%);
    border: 2px solid #0064c8;
    border-radius: 10px;
    height: 120px;
    overflow: hidden;
}

.map-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 60px;
    opacity: 0.3;
}

.tracking-points {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.tracking-point {
    position: absolute;
    color: #ff6600;
    font-size: 12px;
    animation: pointPulse 3s infinite;
}

@keyframes pointPulse {
    0%, 100% { 
        opacity: 1; 
        transform: scale(1);
    }
    50% { 
        opacity: 0.6; 
        transform: scale(1.2);
    }
}

.tracking-methods {
    margin: 20px 0;
}

.method-category h4 {
    color: #0064c8;
    margin-bottom: 15px;
    text-align: center;
}

.method-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.method-btn {
    background: rgba(0, 0, 0, 0.8);
    border: 2px solid #0064c850;
    padding: 20px;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

/* Advanced Malware Styles */
.malware-status-panel {
    background: rgba(255, 0, 0, 0.1);
    border: 1px solid #ff0000;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
}

.system-metrics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
    margin-bottom: 20px;
}

.metric-item {
    display: flex;
    justify-content: space-between;
    padding: 10px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 5px;
}

.metric-label {
    color: #ff6600;
}

.metric-value {
    color: #00ff00;
    font-weight: bold;
}

.network-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    height: 60px;
}

.network-node {
    font-size: 24px;
    animation: nodeGlow 2s infinite;
}

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

.malware-categories {
    margin: 20px 0;
}

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

.malware-option {
    background: rgba(255, 0, 0, 0.1);
    border: 2px solid #ff0000;
    border-radius: 10px;
    padding: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.malware-option:hover {
    border-color: #ff6600;
    box-shadow: 0 0 20px #ff000050;
}

.malware-icon {
    font-size: 48px;
    margin-bottom: 10px;
}

.malware-name {
    font-size: 18px;
    font-weight: bold;
    color: #ff0000;
    margin-bottom: 5px;
}

.malware-desc {
    font-size: 12px;
    color: #ffffff80;
}

.malware-terminal {
    background: rgba(0, 0, 0, 0.9);
    border: 2px solid #ff0000;
    border-radius: 10px;
    padding: 15px;
    margin: 20px 0;
    height: 120px;
    overflow-y: auto;
}

.deployment-progress {
    padding: 20px;
}

.deployment-stages {
    margin-top: 15px;
    padding: 10px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 5px;
}

.stage-item {
    color: #00ff00;
    font-family: 'Courier New', monospace;
    margin-bottom: 5px;
}

/* Graph Chart Styles */
.graph-container {
    padding: 20px;
    background: rgba(0, 0, 0, 0.9);
    border-radius: 10px;
}

.graph-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.transfer-speed {
    color: #00ff00;
    font-weight: bold;
    font-size: 18px;
}

.graph-chart {
    border: 2px solid #00ff00;
    border-radius: 5px;
    margin-bottom: 20px;
    background: #000;
}

.graph-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.stat-item {
    text-align: center;
    padding: 10px;
    background: rgba(0, 255, 0, 0.1);
    border-radius: 5px;
}

.file-list {
    max-height: 100px;
    overflow-y: auto;
    margin-top: 15px;
}

.file-item {
    padding: 5px;
    margin-bottom: 3px;
    background: rgba(0, 255, 0, 0.1);
    border-radius: 3px;
    font-size: 12px;
}

.file-item.downloading {
    animation: fileDownloading 2s infinite;
}

@keyframes fileDownloading {
    0%, 100% { background: rgba(0, 255, 0, 0.1); }
    50% { background: rgba(255, 255, 0, 0.2); }
}

/* Transfer Graph Styles */
.transfer-graph-container {
    padding: 15px;
    background: rgba(0, 0, 0, 0.95);
    border-radius: 10px;
}

.transfer-graph-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    font-size: 12px;
}

.transfer-rate {
    color: #00ff00;
    font-weight: bold;
}

.transfer-time {
    color: #ffffff;
}

.transfer-graph-chart {
    height: 100px;
    background: #000;
    border: 1px solid #00ff00;
    border-radius: 5px;
    margin-bottom: 15px;
    position: relative;
    overflow: hidden;
}

.graph-bars {
    display: flex;
    align-items: end;
    height: 100%;
    padding: 5px;
    gap: 2px;
}

.graph-bar {
    flex: 1;
    background: #00ff00;
    transition: all 0.3s ease;
    border-radius: 2px 2px 0 0;
}

.transfer-file-activity {
    max-height: 80px;
    overflow-y: auto;
}

.activity-item {
    font-size: 10px;
    padding: 3px;
    margin-bottom: 2px;
    background: rgba(0, 255, 0, 0.1);
    border-radius: 3px;
}

/* Wallet Send Interface Styles */
.send-transaction-interface, .receive-transaction-interface, .swap-interface {
    padding: 20px;
}

.coin-selection, .network-selection {
    margin: 20px 0;
}

.coin-grid, .network-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-top: 15px;
}

.coin-option, .network-option {
    background: rgba(0, 0, 0, 0.8);
    border: 2px solid #00ff00;
    border-radius: 10px;
    padding: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.coin-option:hover, .network-option:hover {
    border-color: #ff6600;
    box-shadow: 0 0 15px #00ff0050;
}

.coin-icon, .network-icon {
    font-size: 36px;
    margin-bottom: 10px;
}

.coin-name, .network-name {
    font-size: 16px;
    font-weight: bold;
    color: #00ff00;
    margin-bottom: 5px;
}

.coin-balance, .network-desc {
    font-size: 12px;
    color: #ffffff80;
}

.send-form-interface, .receive-address-form {
    padding: 20px;
}

.selected-coin-info, .selected-network-info {
    background: rgba(0, 255, 0, 0.1);
    border: 1px solid #00ff00;
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 20px;
}

.coin-display, .network-display {
    display: flex;
    align-items: center;
    gap: 10px;
}

.coin-symbol {
    font-size: 24px;
}

.send-form, .address-form {
    margin-top: 20px;
}

.input-group {
    margin-bottom: 20px;
}

.input-group label {
    display: block;
    margin-bottom: 8px;
    color: #00ff00;
    font-weight: bold;
}

.address-input, .amount-input {
    width: 70%;
    padding: 12px;
    background: #000;
    border: 2px solid #00ff00;
    color: #00ff00;
    border-radius: 5px;
    font-family: 'Courier New', monospace;
    margin-right: 10px;
}

.send-button, .submit-button {
    padding: 12px 20px;
    background: #00ff00;
    color: #000;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
}

.send-button:hover, .submit-button:hover {
    background: #00aa00;
    box-shadow: 0 0 10px #00ff00;
}

.currency-label {
    color: #ffffff80;
    margin-left: 10px;
}

.transaction-processing, .swap-processing {
    padding: 20px;
    text-align: center;
}

.transaction-details, .swap-details {
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid #00ff00;
    border-radius: 10px;
    padding: 20px;
    margin: 20px 0;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.detail-row .label {
    color: #ffffff80;
}

.detail-row .value {
    color: #00ff00;
    font-weight: bold;
}

.address-display {
    word-break: break-all;
    font-family: 'Courier New', monospace;
}

.processing-animation {
    margin: 20px 0;
}

.processing-status {
    margin-top: 10px;
    color: #00ff00;
    font-style: italic;
}

/* Receive Address Styles */
.receive-address-display {
    padding: 20px;
    text-align: center;
}

.address-container {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 30px;
    margin: 20px 0;
    align-items: start;
}

.qr-code-section {
    text-align: center;
}

.qr-code {
    width: 150px;
    height: 150px;
    background: #fff;
    border: 2px solid #00ff00;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    color: #000;
    font-family: monospace;
    font-size: 8px;
    line-height: 1;
}

.qr-pattern {
    text-align: center;
}

.qr-label {
    color: #ffffff80;
    font-size: 12px;
}

.address-section {
    text-align: left;
}

.address-label {
    color: #00ff00;
    font-weight: bold;
    margin-bottom: 10px;
}

.address-display {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.address-text {
    background: rgba(0, 0, 0, 0.8);
    border: 1px solid #00ff00;
    border-radius: 5px;
    padding: 10px;
    font-family: 'Courier New', monospace;
    word-break: break-all;
    flex: 1;
    cursor: pointer;
    transition: all 0.3s ease;
}

.address-text:hover {
    background: rgba(0, 255, 0, 0.1);
}

.copy-btn {
    padding: 10px;
    background: #ff6600;
    color: #000;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    white-space: nowrap;
}

.copy-btn:hover {
    background: #ff9900;
}

.address-info {
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid #00ff00;
    border-radius: 5px;
    padding: 15px;
}

.info-item {
    margin-bottom: 8px;
    color: #ffffff80;
}

.receive-actions {
    margin-top: 30px;
}

.done-button {
    padding: 15px 30px;
    background: #00ff00;
    color: #000;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-weight: bold;
    font-size: 16px;
    transition: all 0.3s ease;
}

.done-button:hover {
    background: #00aa00;
    box-shadow: 0 0 15px #00ff00;
}

/* Swap Interface Styles */
.swap-container {
    max-width: 500px;
    margin: 0 auto;
}

.swap-section {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.swap-from, .swap-to {
    background: rgba(0, 0, 0, 0.5);
    border: 2px solid #00ff00;
    border-radius: 15px;
    padding: 20px;
}

.swap-arrow {
    text-align: center;
    margin: 10px 0;
}

.arrow-icon {
    font-size: 32px;
    color: #ff6600;
    animation: rotateArrow 3s infinite;
}

@keyframes rotateArrow {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(90deg); }
    50% { transform: rotate(180deg); }
    75% { transform: rotate(270deg); }
}

.coin-select {
    width: 100%;
    padding: 12px;
    background: #000;
    border: 2px solid #00ff00;
    color: #00ff00;
    border-radius: 5px;
    margin-bottom: 15px;
    font-family: 'Courier New', monospace;
}

.swap-info {
    background: rgba(0, 255, 0, 0.1);
    border: 1px solid #00ff00;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
}

.swap-info > div {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.swap-info > div:last-child {
    margin-bottom: 0;
}

.rate-label, .fee-label, .slippage-label {
    color: #ffffff80;
}

.rate-value, .fee-value, .slippage-value {
    color: #00ff00;
    font-weight: bold;
}

.swap-button {
    width: 100%;
    padding: 20px;
    background: linear-gradient(135deg, #00ff00, #00aa00);
    color: #000;
    border: none;
    border-radius: 15px;
    cursor: pointer;
    font-weight: bold;
    font-size: 18px;
    transition: all 0.3s ease;
}

.swap-button:hover {
    background: linear-gradient(135deg, #00aa00, #008800);
    box-shadow: 0 0 20px #00ff0050;
}

.swap-pair {
    text-align: center;
    margin: 20px 0;
}

.from-details {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    font-size: 18px;
}

.from-details .amount {
    color: #00ff00;
    font-weight: bold;
}

.from-details .arrow {
    color: #ff6600;
    font-size: 24px;
}

/* Receipt Popup Styles */
.receipt-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    backdrop-filter: blur(5px);
}

.swap-receipt {
    background: #000;
    border: 2px solid #00ff00;
    border-radius: 15px;
    padding: 30px;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 0 30px #00ff0050;
    animation: receiptAppear 0.5s ease-out;
}

@keyframes receiptAppear {
    from {
        opacity: 0;
        transform: scale(0.8) translateY(-50px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.receipt-header {
    text-align: center;
    margin-bottom: 25px;
    border-bottom: 1px solid #00ff0050;
    padding-bottom: 15px;
}

.receipt-header h3 {
    color: #00ff00;
    margin: 0 0 10px 0;
    font-size: 24px;
}

.receipt-id {
    color: #00ff0080;
    font-size: 14px;
}

.swap-summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 20px 0;
    padding: 20px;
    background: rgba(0, 255, 0, 0.1);
    border-radius: 10px;
}

.swap-from, .swap-to {
    text-align: center;
}

.coin-symbol {
    display: block;
    color: #00ff00;
    font-weight: bold;
    font-size: 18px;
    margin-bottom: 5px;
}

.swap-arrow {
    color: #00ff00;
    font-size: 24px;
    font-weight: bold;
}

.receipt-info {
    margin: 20px 0;
}

.info-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid #00ff0020;
}

.info-row span:first-child {
    color: #00ff0080;
}

.info-row span:last-child {
    color: #00ff00;
    font-weight: bold;
}

.status-success {
    color: #00ff00 !important;
}

.receipt-footer {
    text-align: center;
    margin-top: 25px;
    padding-top: 15px;
    border-top: 1px solid #00ff0050;
}

.receipt-footer p {
    color: #00ff0080;
    margin-bottom: 15px;
}

.close-receipt-btn {
    background: #00ff00;
    color: #000;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
}

.close-receipt-btn:hover {
    background: #00aa00;
    box-shadow: 0 0 10px #00ff0050;
}

/* Wallet Details Styles */
.wallet-details-container {
    color: #00ff00;
    font-family: 'Courier New', monospace;
}

.wallet-address-display {
    background: rgba(0, 0, 0, 0.8);
    border: 1px solid #00ff00;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.address-text {
    color: #00ff00;
    font-weight: bold;
    word-break: break-all;
    font-size: 12px;
}

.wallet-details-grid {
    display: grid;
    gap: 10px;
    margin-bottom: 20px;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    padding: 10px;
    background: rgba(0, 255, 0, 0.1);
    border-radius: 5px;
}

.detail-label {
    color: #00ff0080;
    font-weight: bold;
}

.detail-value {
    color: #00ff00;
}

.detail-value.risk-low {
    color: #00ff00;
}

.detail-value.risk-medium {
    color: #ffaa00;
}

.detail-value.risk-high {
    color: #ff0000;
}

.wallet-actions {
    text-align: center;
}

.access-wallet-btn {
    background: #00ff00;
    color: #000;
    border: none;
    padding: 12px 25px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
}

.access-wallet-btn:hover {
    background: #00aa00;
    box-shadow: 0 0 15px #00ff0050;
}

/* Encryption Type Selection */
.encryption-type-selection, .crypto-encryption-display, .bank-encryption-display {
    padding: 20px;
}

.type-selection-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 20px 0;
}

.type-option {
    background: rgba(0, 0, 0, 0.8);
    border: 2px solid #00ff0050;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.type-option:hover {
    border-color: #00ff00;
    background: rgba(0, 255, 0, 0.1);
    transform: translateY(-5px);
}

.type-option.selected {
    border-color: #00ff00;
    background: rgba(0, 255, 0, 0.2);
    box-shadow: 0 0 20px #00ff0040;
}

.type-option.selected .type-name {
    color: #ffffff;
}

.type-icon {
    font-size: 36px;
    margin-bottom: 10px;
}

.type-name {
    color: #00ff00;
    font-weight: bold;
    margin-bottom: 5px;
    font-size: 16px;
}

.type-desc {
    color: #00ff0080;
    font-size: 12px;
}

.target-info {
    background: rgba(0, 0, 0, 0.8);
    border: 1px solid #00ff00;
    padding: 20px;
    border-radius: 10px;
    margin: 20px 0;
}

.info-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    padding-bottom: 8px;
    border-bottom: 1px solid #00ff0020;
}

.info-label {
    color: #00ff0080;
    font-weight: bold;
}

.info-value {
    color: #00ff00;
    word-break: break-word;
    max-width: 60%;
    text-align: right;
}

.proceed-btn {
    background: linear-gradient(135deg, #00ff00, #00aa00);
    color: #000;
    border: none;
    padding: 12px 25px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
    display: block;
    margin: 20px auto 0;
}

.proceed-btn:hover {
    background: linear-gradient(135deg, #00aa00, #008800);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px #00ff0030;
}

.encryption-key-form {
    padding: 20px;
    text-align: center;
}

.key-form {
    display: flex;
    gap: 15px;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
}

.encryption-key-input {
    background: #000;
    border: 2px solid #00ff00;
    color: #00ff00;
    padding: 12px;
    border-radius: 5px;
    font-family: 'Courier New', monospace;
    width: 300px;
}

.encryption-key-input:focus {
    outline: none;
    box-shadow: 0 0 10px #00ff0050;
}

.encryption-breaking {
    padding: 20px;
    text-align: center;
}

.breaking-progress {
    margin: 20px 0;
}

.breaking-status {
    color: #00ff00;
    margin-top: 15px;
    font-family: 'Courier New', monospace;
}

.break-details {
    text-align: left;
    margin-top: 20px;
}

.break-details p {
    margin: 8px 0;
    color: #00ff0080;
}

.break-details strong {
    color: #00ff00;
}

/* Transaction Updates */
.transaction-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 10px;
    margin: 5px 0;
    background: rgba(0, 255, 0, 0.1);
    border-radius: 5px;
    border-left: 4px solid #00ff00;
}

.tx-type {
    color: #00ff0080;
    font-weight: bold;
    min-width: 80px;
}

.tx-amount {
    text-align: right;
    line-height: 1.4;
}

.tx-amount.positive {
    color: #00ff00;
}

.tx-amount.negative {
    color: #ff6600;
}

.usd-amount {
    display: block;
    font-size: 12px;
    color: #00ff0060;
    margin-top: 2px;
}

/* Transaction Button Updates */
.transaction-buttons {
    display: flex;
    gap: 10px;
    margin-top: 20px;
    justify-content: space-between;
}

.transaction-btn {
    background: linear-gradient(135deg, #00ff00, #00aa00);
    color: #000;
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    flex: 1;
    min-height: 45px;
    font-size: 14px;
}

.transaction-btn:hover {
    background: linear-gradient(135deg, #00aa00, #008800);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px #00ff0030;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .address-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .coin-grid, .network-grid {
        grid-template-columns: 1fr;
    }
    
    .swap-section {
        gap: 15px;
    }
    
    .address-input, .amount-input {
        width: 100%;
        margin-right: 0;
        margin-bottom: 10px;
    }
    
    .send-button, .submit-button {
        width: 100%;
    }
}
    text-align: center;
}

.method-btn:hover {
    border-color: #0064c8;
    background: rgba(0, 100, 200, 0.1);
    transform: translateY(-5px);
}

.method-btn .method-icon {
    font-size: 30px;
    margin-bottom: 10px;
}

.method-btn .method-name {
    font-weight: bold;
    color: #0064c8;
    margin-bottom: 5px;
}

.method-btn .method-desc {
    font-size: 12px;
    color: #0064c880;
}

.quantum-trace {
    padding: 20px;
}

.satellite-network {
    text-align: center;
    margin: 20px 0;
}

.satellite-grid {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 15px 0;
}

.satellite {
    font-size: 24px;
    opacity: 0.3;
    transition: all 0.3s ease;
}

.satellite.active {
    opacity: 1;
    animation: satellitePulse 2s infinite;
}

@keyframes satellitePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

.triangulation-status {
    color: #0064c8;
    font-weight: bold;
    animation: pulse 1s infinite;
}

.trace-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin: 15px 0;
}

.trace-metrics div {
    padding: 10px;
    background: rgba(0, 100, 200, 0.1);
    border-radius: 5px;
    text-align: center;
}

.location-details {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 20px;
    margin: 20px 0;
}

.location-map {
    background: rgba(0, 100, 200, 0.1);
    border: 1px solid #0064c8;
    padding: 40px 20px;
    text-align: center;
    border-radius: 10px;
    font-size: 24px;
}

.location-data {
    display: grid;
    gap: 10px;
}

.data-row {
    display: flex;
    justify-content: space-between;
    padding: 10px;
    background: rgba(0, 100, 200, 0.05);
    border-radius: 5px;
    border-left: 3px solid #0064c8;
}

.data-row .label {
    color: #0064c8;
    font-weight: bold;
}

.data-row .value {
    color: #ffffff;
    font-family: 'Courier New', monospace;
}

.data-row .value.success {
    color: #00ff00;
}

.data-row .value.warning {
    color: #ff6600;
}

.location-actions {
    display: flex;
    gap: 15px;
    margin-top: 20px;
    justify-content: center;
}

.person-trace {
    padding: 20px;
}

.biometric-scanner {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 20px;
    margin: 20px 0;
}

.scanner-display {
    position: relative;
    background: rgba(0, 100, 200, 0.1);
    border: 2px solid #0064c8;
    border-radius: 10px;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.face-outline {
    font-size: 60px;
    opacity: 0.7;
}

.scan-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        90deg,
        transparent,
        transparent 8px,
        #0064c8 8px,
        #0064c8 9px
    );
    animation: scanLines 2s linear infinite;
}

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

.biometric-progress {
    display: grid;
    gap: 15px;
    align-content: center;
}

.bio-metric {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 10px;
    align-items: center;
}

.person-profile {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 20px;
    margin: 20px 0;
}

.profile-photo {
    background: rgba(0, 100, 200, 0.1);
    border: 2px solid #0064c8;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 80px;
    height: 200px;
}

.profile-data {
    display: grid;
    gap: 10px;
}

.person-actions {
    display: flex;
    gap: 15px;
    margin-top: 20px;
    justify-content: center;
}

.digital-trace {
    padding: 20px;
}

.footprint-scanner {
    margin: 20px 0;
}

.data-sources {
    margin-bottom: 20px;
}

.source-item {
    padding: 8px 15px;
    margin: 5px 0;
    background: rgba(0, 100, 200, 0.1);
    border-left: 3px solid #0064c8;
    border-radius: 5px;
    animation: sourceScan 3s ease-in-out infinite;
}

@keyframes sourceScan {
    0%, 100% { opacity: 0.7; }
    50% { opacity: 1; background: rgba(0, 100, 200, 0.2); }
}

.analysis-progress {
    text-align: center;
}

.progress-text {
    color: #0064c8;
    margin-top: 10px;
    animation: pulse 1s infinite;
}

.footprint-results {
    display: grid;
    gap: 10px;
    margin: 15px 0;
}

.result-item {
    padding: 10px;
    background: rgba(0, 100, 200, 0.1);
    border-radius: 5px;
    border-left: 3px solid #00ff00;
}

.network-trace {
    padding: 20px;
}

.network-visualization {
    margin: 20px 0;
    text-align: center;
}

.network-graph {
    position: relative;
    height: 200px;
    background: rgba(0, 100, 200, 0.1);
    border: 1px solid #0064c8;
    border-radius: 10px;
    margin-bottom: 15px;
}

.central-node {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 30px;
    color: #ff6600;
    animation: centralPulse 2s infinite;
}

@keyframes centralPulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); }
    50% { transform: translate(-50%, -50%) scale(1.2); }
}

.associate-nodes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.associate-nodes .node {
    position: absolute;
    font-size: 20px;
    color: #0064c8;
    animation: nodePulse 3s infinite;
}

.associate-nodes .node:nth-child(1) { top: 20%; left: 20%; animation-delay: 0s; }
.associate-nodes .node:nth-child(2) { top: 20%; right: 20%; animation-delay: 0.5s; }
.associate-nodes .node:nth-child(3) { bottom: 20%; left: 20%; animation-delay: 1s; }
.associate-nodes .node:nth-child(4) { bottom: 20%; right: 20%; animation-delay: 1.5s; }

@keyframes nodePulse {
    0%, 100% { opacity: 0.7; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.3); }
}

.network-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.network-stats div {
    padding: 10px;
    background: rgba(0, 100, 200, 0.1);
    border-radius: 5px;
    text-align: center;
}

.result-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 20px 0;
}

.network-stat {
    text-align: center;
    padding: 20px;
    background: rgba(0, 100, 200, 0.1);
    border: 1px solid #0064c8;
    border-radius: 10px;
}

.stat-number {
    font-size: 36px;
    font-weight: bold;
    color: #0064c8;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 14px;
    color: #0064c880;
}

/* Enhanced OTP Interceptor Styles */
.otp-interceptor {
    padding: 25px;
}

.interception-methods {
    display: flex;
    margin: 20px 0;
    border-bottom: 2px solid #00ff0030;
}

.method-tab {
    padding: 12px 20px;
    background: rgba(0, 0, 0, 0.8);
    border: 1px solid #00ff0050;
    cursor: pointer;
    transition: all 0.3s ease;
    border-bottom: none;
}

.method-tab.active {
    background: rgba(0, 255, 0, 0.2);
    border-color: #00ff00;
    color: #00ff00;
}

.method-tab:hover {
    background: rgba(0, 255, 0, 0.1);
}

.otp-scanner-display {
    display: flex;
    gap: 20px;
    margin: 20px 0;
    padding: 20px;
    background: rgba(0, 0, 0, 0.8);
    border: 1px solid #00ff0030;
    border-radius: 10px;
}

.signal-analyzer {
    flex: 1;
}

.signal-wave {
    width: 100%;
    height: 60px;
    background: linear-gradient(90deg, transparent, #00ff00, transparent);
    border-radius: 5px;
    transition: transform 0.2s ease;
    margin-bottom: 10px;
}

.frequency-display {
    color: #00ff00;
    font-family: 'Courier New', monospace;
}

.scan-controls {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.scan-btn, .intercept-btn {
    padding: 12px 20px;
    background: linear-gradient(135deg, #00ff00, #00aa00);
    color: #000;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.scan-btn:hover, .intercept-btn:hover {
    background: linear-gradient(135deg, #00aa00, #008800);
    transform: scale(1.05);
}

.scanning-animation {
    text-align: center;
    padding: 20px;
}

.scan-radar {
    width: 80px;
    height: 80px;
    border: 2px solid #00ff00;
    border-radius: 50%;
    margin: 0 auto 15px;
    position: relative;
    animation: radarScan 2s linear infinite;
}

.scan-radar::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 2px;
    height: 35px;
    background: #00ff00;
    transform-origin: bottom;
    animation: radarSweep 2s linear infinite;
}

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

@keyframes radarSweep {
    from { transform: translate(-50%, -100%) rotate(0deg); }
    to { transform: translate(-50%, -100%) rotate(360deg); }
}

.detection-result {
    background: rgba(0, 255, 0, 0.1);
    border: 1px solid #00ff00;
    padding: 15px;
    border-radius: 8px;
    font-size: 14px;
}

.target-list {
    margin-top: 10px;
    font-size: 12px;
    font-family: 'Courier New', monospace;
}

.interception-log {
    background: #000;
    border: 1px solid #00ff00;
    padding: 15px;
    max-height: 120px;
    overflow-y: auto;
    margin: 15px 0;
}

.log-entry {
    margin: 5px 0;
    color: #00ff00;
    font-size: 12px;
}

.captured-codes {
    margin-top: 20px;
}

.captured-code {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 10px;
    padding: 8px;
    background: rgba(0, 255, 0, 0.1);
    border: 1px solid #00ff0050;
    margin: 5px 0;
    border-radius: 5px;
    font-size: 12px;
    animation: codeCapture 0.5s ease-in;
}

@keyframes codeCapture {
    from { opacity: 0; transform: translateX(-20px); }
    to { opacity: 1; transform: translateX(0); }
}

.service-name {
    color: #00ff00;
    font-weight: bold;
}

.otp-code {
    color: #ffffff;
    font-family: 'Courier New', monospace;
    font-weight: bold;
}

.timestamp {
    color: #00ff0080;
    font-size: 11px;
}

.validity {
    color: #ff6600;
    font-size: 11px;
}

.success-status {
    background: rgba(0, 255, 0, 0.2);
    border: 1px solid #00ff00;
    padding: 10px;
    border-radius: 5px;
    text-align: center;
}

/* Enhanced Remote Connection Styles */
.remote-terminal {
    background: #000;
    border: 2px solid #00ff00;
    border-radius: 10px;
    overflow: hidden;
}

.terminal-header {
    background: rgba(0, 255, 0, 0.2);
    padding: 10px;
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #00ff00;
}

.terminal-body {
    padding: 15px;
    max-height: 300px;
    overflow-y: auto;
    min-height: 200px;
}

.terminal-input {
    padding: 10px;
    background: rgba(0, 255, 0, 0.1);
    border-top: 1px solid #00ff0030;
    font-family: 'Courier New', monospace;
}

.prompt {
    color: #00ff00;
}

.cursor {
    animation: blink 1s infinite;
}

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

.server-monitor {
    background: #000;
    border: 2px solid #ff6600;
    border-radius: 10px;
    overflow: hidden;
}

.server-header {
    background: rgba(255, 102, 0, 0.2);
    padding: 10px;
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #ff6600;
}

.server-name {
    color: #ff6600;
    font-weight: bold;
}

.alert-level {
    font-weight: bold;
}

.alert-level .green { color: #00ff00; }
.alert-level .yellow { color: #ffff00; }
.alert-level .orange { color: #ff6600; }
.alert-level .red { color: #ff0000; }
.alert-level .critical { color: #ff0000; animation: pulse 0.5s infinite; }
.alert-level .compromised { color: #ff0000; animation: shake 0.5s infinite; }

.security-metrics {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    padding: 15px;
    background: rgba(255, 102, 0, 0.1);
}

.metric {
    color: #ff6600;
    font-size: 12px;
}

.server-logs {
    padding: 15px;
    max-height: 250px;
    overflow-y: auto;
    color: #ff6600;
}

/* Enhanced Password Decryptor Animations */
.advanced-keyboard {
    border: 2px solid #ff6600 !important;
    background: rgba(255, 102, 0, 0.1) !important;
}

.advanced-key {
    background: #222 !important;
    border-color: #ff6600 !important;
    font-size: 10px !important;
    padding: 8px !important;
}

.advanced-key.active {
    background: #ff6600 !important;
    color: #000 !important;
    box-shadow: 0 0 15px #ff6600 !important;
}

.password-reveal {
    text-align: center;
    margin: 20px 0;
}

.password-animation {
    margin: 15px 0;
    padding: 15px;
    background: rgba(0, 255, 0, 0.1);
    border: 2px solid #00ff00;
    border-radius: 10px;
}

.password-label {
    color: #00ff00;
    font-weight: bold;
    margin-right: 10px;
}

.password-value {
    color: #ffffff;
    font-family: 'Courier New', monospace;
    font-size: 18px;
    font-weight: bold;
    letter-spacing: 2px;
}

.clickable-password {
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 5px 10px;
    border-radius: 5px;
    border: 1px solid transparent;
}

.clickable-password:hover {
    background: rgba(0, 255, 0, 0.1);
    border-color: #00ff00;
    transform: scale(1.05);
}

@keyframes passwordGlow {
    0%, 100% { text-shadow: 0 0 10px #00ff00; }
    50% { text-shadow: 0 0 30px #00ff00, 0 0 40px #00ff00; }
}

@keyframes aiPasswordGlow {
    0%, 100% { text-shadow: 0 0 10px #0066ff; }
    50% { text-shadow: 0 0 30px #0066ff, 0 0 40px #0066ff; }
}

@keyframes rainbowGlow {
    0%, 100% { text-shadow: 0 0 10px #ff6600; }
    50% { text-shadow: 0 0 30px #ff6600, 0 0 40px #ff6600; }
}

.crack-details, .ai-details, .rainbow-details {
    text-align: left;
    margin-top: 15px;
    font-size: 13px;
}

.crack-details p, .ai-details p, .rainbow-details p {
    margin: 5px 0;
    color: #00ff0080;
}

/* Advanced AI Dictionary Styles */
.advanced-ai-learning {
    padding: 20px;
}

.neural-visualization {
    text-align: center;
    margin: 20px 0;
}

.neural-network {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 15px 0;
    padding: 20px;
    background: rgba(0, 102, 255, 0.1);
    border: 1px solid #0066ff;
    border-radius: 10px;
}

.neural-layer {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.analysis-line {
    margin: 5px 0;
    padding: 5px 10px;
    background: rgba(0, 255, 0, 0.1);
    border-left: 3px solid #00ff00;
    border-radius: 3px;
    animation: analysisAppear 0.5s ease-in;
}

@keyframes analysisAppear {
    from { opacity: 0; transform: translateX(-20px); }
    to { opacity: 1; transform: translateX(0); }
}

.advanced-learning-phase {
    color: #0066ff;
    font-weight: bold;
    text-align: center;
    margin: 15px 0;
    animation: pulse 1s infinite;
}

.advanced-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin: 15px 0;
    font-size: 13px;
}

.password-testing {
    background: #000;
    border: 1px solid #0066ff;
    padding: 15px;
    max-height: 120px;
    overflow-y: auto;
    font-family: 'Courier New', monospace;
    font-size: 12px;
}

.test-line {
    color: #0066ff;
    margin: 3px 0;
}

.ai-success-icon {
    font-size: 60px;
    margin-bottom: 15px;
    animation: aiPulse 2s infinite;
}

@keyframes aiPulse {
    0%, 100% { transform: scale(1); filter: hue-rotate(0deg); }
    50% { transform: scale(1.1); filter: hue-rotate(180deg); }
}

/* Extended Rainbow Table Styles */
.extended-rainbow-attack {
    padding: 20px;
}

.hash-display {
    margin: 15px 0;
}

.target-hash {
    font-family: 'Courier New', monospace;
    color: #ff6600;
    font-weight: bold;
    margin-bottom: 10px;
}

.extended-search {
    background: #000;
    border: 1px solid #ff6600;
    padding: 15px;
    max-height: 100px;
    overflow-y: auto;
    font-size: 12px;
}

.search-line {
    color: #ff6600;
    margin: 3px 0;
    animation: searchLineAppear 0.5s ease-in;
}

@keyframes searchLineAppear {
    from { opacity: 0; transform: translateX(-10px); }
    to { opacity: 1; transform: translateX(0); }
}

.rainbow-visualization {
    margin: 20px 0;
    text-align: center;
}

.rainbow-spectrum {
    display: flex;
    height: 20px;
    border-radius: 10px;
    overflow: hidden;
    margin: 10px auto;
    max-width: 300px;
}

.color-bar {
    flex: 1;
    transition: opacity 0.3s ease;
}

.extended-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin: 15px 0;
    font-size: 13px;
}

.rainbow-success-icon {
    font-size: 60px;
    margin-bottom: 15px;
    animation: rainbowPulse 2s infinite;
}

@keyframes rainbowPulse {
    0%, 100% { 
        transform: scale(1); 
        filter: hue-rotate(0deg) brightness(1);
    }
    50% { 
        transform: scale(1.1); 
        filter: hue-rotate(360deg) brightness(1.3);
    }
}

/* Enhanced Firewall Styles */
.firewall-dashboard {
    padding: 20px;
}

.firewall-status-panel {
    background: rgba(0, 255, 0, 0.1);
    border: 1px solid #00ff00;
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.status-indicator {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.status-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #666;
}

.status-dot.active {
    background: #00ff00;
    animation: pulse 2s infinite;
    box-shadow: 0 0 10px #00ff00;
}

.status-dot.warning {
    background: #ffaa00;
    animation: warningPulse 1s infinite;
}

.status-dot.critical {
    background: #ff0000;
    animation: criticalPulse 0.5s infinite;
}

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

@keyframes criticalPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.2); }
}

.threat-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    font-size: 13px;
}

.port-visualization {
    margin: 20px 0;
}

.port-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin: 10px 0;
}

.port-item {
    padding: 8px;
    border-radius: 5px;
    text-align: center;
    font-size: 12px;
    transition: all 0.3s ease;
}

.port-item.open {
    background: rgba(0, 255, 0, 0.2);
    border: 1px solid #00ff00;
    color: #00ff00;
}

.port-item.closed {
    background: rgba(255, 0, 0, 0.2);
    border: 1px solid #ff0000;
    color: #ff0000;
}

.port-item.vulnerable {
    background: rgba(255, 102, 0, 0.2);
    border: 1px solid #ff6600;
    color: #ff6600;
    animation: vulnerableBlink 1s infinite;
}

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

.firewall-controls {
    display: flex;
    gap: 15px;
    margin: 20px 0;
    justify-content: center;
}

.firewall-btn {
    background: linear-gradient(135deg, #00ff00, #00aa00);
    color: #000;
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.firewall-btn:hover {
    background: linear-gradient(135deg, #00aa00, #008800);
    transform: scale(1.05);
}

.firewall-logs {
    margin-top: 20px;
}

.log-display {
    background: #000;
    border: 1px solid #00ff00;
    padding: 15px;
    max-height: 150px;
    overflow-y: auto;
    font-family: 'Courier New', monospace;
    font-size: 11px;
}

.log-entry {
    color: #00ff00;
    margin: 2px 0;
    line-height: 1.3;
}

.log-entry.critical {
    color: #ff0000;
    font-weight: bold;
    animation: criticalEntry 0.5s ease-in;
}

@keyframes criticalEntry {
    from { opacity: 0; transform: translateX(-10px); }
    to { opacity: 1; transform: translateX(0); }
}

/* Enhanced Background Animation */
.desktop::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'%3E%3Ctext x='0' y='15' font-family='monospace' font-size='8' fill='%2300ff0015'%3E%3Canimate attributeName='opacity' values='0;1;0' dur='3s' repeatCount='indefinite'/%3E[BREACH DETECTED]%3C/text%3E%3Ctext x='0' y='30' font-family='monospace' font-size='6' fill='%2300ff0020'%3E%3Canimate attributeName='opacity' values='0;1;0' dur='2s' repeatCount='indefinite'/%3ESSH_BRUTE_FORCE_192.168.1.100%3C/text%3E%3Ctext x='0' y='45' font-family='monospace' font-size='7' fill='%2300ff0018'%3E%3Canimate attributeName='opacity' values='0;1;0' dur='4s' repeatCount='indefinite'/%3EPASSWORD_ATTEMPT: admin123%3C/text%3E%3Ctext x='0' y='60' font-family='monospace' font-size='6' fill='%2300ff0012'%3E%3Canimate attributeName='opacity' values='0;1;0' dur='2.5s' repeatCount='indefinite'/%3ECONNECTION_ESTABLISHED%3C/text%3E%3Ctext x='0' y='75' font-family='monospace' font-size='8' fill='%2300ff0025'%3E%3Canimate attributeName='opacity' values='0;1;0' dur='3.5s' repeatCount='indefinite'/%3E[ACCESS_GRANTED]%3C/text%3E%3Ctext x='0' y='90' font-family='monospace' font-size='7' fill='%23ff000020'%3E%3Canimate attributeName='opacity' values='0;1;0' dur='1.8s' repeatCount='indefinite'/%3EFIREWALL_BREACH_DETECTED%3C/text%3E%3C/svg%3E");
    animation: bruteForceScroll 15s linear infinite;
    pointer-events: none;
    z-index: 0;
}

@keyframes bruteForceScroll {
    0% { transform: translateY(-100vh) translateX(-50px); }
    100% { transform: translateY(100vh) translateX(50px); }
}

/* Ensure content elements fit within windows */
.wallet-details, .success-box, .error-box, .console-window {
    max-width: 100%;
    box-sizing: border-box;
}

.wallet-details h3 {
    font-size: 16px;
    margin-bottom: 12px;
}

.wallet-details p {
    font-size: 13px;
    margin: 6px 0;
    word-break: break-word;
}

.drainer-console, .miner-terminal, .interpol-terminal {
    max-height: 200px;
    font-size: 13px;
    line-height: 1.4;
}

.mining-stats, .transaction-grid {
    max-height: 180px;
    font-size: 13px;
}

.address-input {
    max-width: 100%;
    box-sizing: border-box;
}

/* Taskbar for minimized windows */
.taskbar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.9);
    border-top: 2px solid #00ff00;
    padding: 10px;
    display: none;
    flex-wrap: wrap;
    gap: 10px;
    z-index: 999;
    backdrop-filter: blur(10px);
}

.taskbar-item {
    background: rgba(0, 255, 0, 0.1);
    border: 1px solid #00ff00;
    padding: 8px 15px;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 12px;
    color: #00ff00;
    max-width: 150px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.taskbar-item:hover {
    background: rgba(0, 255, 0, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 0 10px #00ff0050;
}

/* Enhanced Mobile Responsive Styles */
@media (max-width: 768px) {
    body {
        overflow-x: hidden;
        touch-action: manipulation;
    }

    .desktop-folders {
        position: static;
        margin: 20px auto;
        padding: 20px;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        max-width: 90%;
    }

    .nsa-logo {
        position: static;
        transform: none;
        margin: 40px auto;
        padding: 20px;
    }

    .nsa-logo h1 {
        font-size: 18px;
        margin-top: 15px;
    }

    .folder {
        padding: 15px;
        touch-action: manipulation;
    }

    .folder-icon {
        font-size: 36px;
        margin-bottom: 10px;
    }

    .folder span {
        font-size: 12px;
    }

    .window {
        min-width: 95%;
        max-width: 95%;
        left: 2.5% !important;
        top: 5% !important;
        max-height: 85vh;
        touch-action: none;
    }

    .window-header {
        padding: 12px;
        touch-action: none;
        -webkit-user-select: none;
        user-select: none;
    }

    .window-content {
        padding: 12px;
        max-height: 70vh;
        touch-action: auto;
    }

    .window-resize-handle {
        width: 25px;
        height: 25px;
        touch-action: none;
    }

    .bitcoin-logo {
        font-size: 40px;
        right: 15px;
    }

    .keyboard-visual {
        grid-template-columns: repeat(5, 1fr);
        gap: 4px;
        padding: 12px;
    }

    .key, .advanced-key {
        padding: 6px;
        font-size: 10px;
        min-height: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .crack-options {
        flex-direction: column;
        gap: 12px;
    }

    .option-btn {
        min-width: 100%;
        padding: 15px;
        font-size: 14px;
    }

    .mining-animation {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .console-window {
        height: 200px;
        padding: 12px;
        font-size: 13px;
    }

    .video-container {
        height: 180px;
        font-size: 13px;
        padding: 15px;
    }

    .nuclear-diagram {
        height: 180px;
    }

    .wallet-details {
        padding: 12px;
    }

    .wallet-details p {
        font-size: 13px;
    }

    .success-box {
        padding: 15px;
    }

    .padlock {
        font-size: 35px;
    }

    .progress-bar {
        height: 22px;
    }

    .start-btn {
        padding: 12px 20px;
        font-size: 14px;
    }

    /* Mobile-specific grid adjustments */
    .method-grid, .drainer-metrics, .mining-metrics {
        grid-template-columns: 1fr !important;
        gap: 10px;
    }

    .firewall-controls {
        flex-direction: column;
        gap: 10px;
    }

    .firewall-btn {
        width: 100%;
        padding: 15px;
    }

    .advanced-metrics, .extended-stats {
        grid-template-columns: 1fr !important;
        gap: 8px;
    }

    .neural-network {
        gap: 15px;
        padding: 15px;
    }

    .port-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .port-item {
        padding: 10px 6px;
        font-size: 11px;
    }

    /* Touch-friendly button sizes */
    .minimize-btn, .close-btn {
        padding: 10px 15px;
        font-size: 16px;
        min-width: 40px;
        min-height: 40px;
    }

    .scan-btn, .intercept-btn, .target-btn, .action-btn {
        padding: 12px 15px;
        min-height: 44px;
        font-size: 14px;
    }

    /* Better text readability on mobile */
    .terminal-text, .log-entry {
        font-size: 12px;
        line-height: 1.4;
    }

    .password-value {
        font-size: 16px;
        word-break: break-all;
    }

    /* Enhanced touch scrolling */
    .window-content {
        -webkit-overflow-scrolling: touch;
        overflow-scrolling: touch;
    }
}

@media (max-width: 480px) {
    .desktop-folders {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .nsa-logo h1 {
        font-size: 16px;
    }

    .folder {
        padding: 12px;
    }

    .folder-icon {
        font-size: 32px;
    }

    .window {
        min-width: 98%;
        max-width: 98%;
        left: 1% !important;
        top: 5% !important;
        max-height: 90vh;
    }

    .window-content {
        padding: 12px;
        max-height: 70vh;
    }

    .bitcoin-logo {
        font-size: 32px;
    }

    .keyboard-visual {
        grid-template-columns: repeat(4, 1fr);
    }

    .console-window {
        height: 200px;
        font-size: 12px;
    }

    .video-container {
        height: 150px;
        font-size: 12px;
    }

    .wallet-grid {
        gap: 10px;
    }

    .detail-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }

    .transaction-grid {
        max-height: 150px;
    }

    .address-input-section {
        flex-direction: column;
    }

    .address-input {
        min-width: 100%;
    }

    .analysis-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }

    .drainer-console, .miner-terminal {
        max-height: 150px;
    }

    .mining-stats {
        max-height: 100px;
        font-size: 12px;
    }
}