﻿
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #000000;
    font-family: 'Inter', sans-serif;
    min-height: 100vh;
    padding: 8px;
    position: relative;
    overflow-x: hidden;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    body {
        padding: 6px;
    }

    .app-container {
        border-radius: 24px !important;
    }

    .main-content {
        padding: 12px 12px 24px !important;
    }

    .header h1 {
        font-size: 1.3rem !important;
        gap: 6px !important;
    }

    .btn-danger {
        width: 75px !important;
        height: 75px !important;
    }

        .btn-danger i {
            font-size: 36px !important;
        }

    .term-body {
        min-height: 280px !important;
        max-height: 350px !important;
        padding: 12px !important;
        font-size: 0.68rem !important;
    }

    .term-line {
        margin: 5px 0 !important;
        padding-left: 8px !important;
    }

    .folder-card {
        padding: 8px 12px !important;
    }

        .folder-card i {
            font-size: 1.2rem !important;
        }

    .folder-name {
        font-size: 0.8rem !important;
    }

    .extract-danger {
        padding: 12px !important;
        font-size: 0.85rem !important;
    }

    .warning-badge {
        font-size: 0.6rem !important;
        padding: 3px 8px !important;
    }

    .search-box {
        padding: 8px 12px !important;
        font-size: 0.75rem !important;
        gap: 8px !important;
    }

    .modal-card-hack {
        padding: 18px !important;
        width: 95% !important;
    }

    .file-item {
        padding: 8px 12px !important;
        font-size: 0.7rem !important;
        flex-wrap: wrap !important;
        gap: 8px !important;
    }

    .dl-btn {
        padding: 4px 12px !important;
        font-size: 0.65rem !important;
    }
}

@media (max-width: 480px) {
    .header h1 {
        font-size: 1.1rem !important;
    }

    .term-body {
        font-size: 0.62rem !important;
    }
}

body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(0deg, rgba(0,255,0,0.03) 0px, rgba(0,255,0,0.03) 2px, transparent 2px, transparent 6px);
    pointer-events: none;
    z-index: 999;
}

.hacker-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 30%, #0a0f0a, #010101);
    z-index: -2;
}

.matrix-rain {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" opacity="0.08"><text x="10" y="20" fill="%2300ff41" font-size="12" font-family="monospace">0101</text><text x="40" y="45" fill="%2300ff41" font-size="14">1010</text><text x="70" y="70" fill="%2300ff41" font-size="10">1100</text><text x="20" y="85" fill="%2300ff41" font-size="9">0110</text></svg>');
    background-repeat: repeat;
    opacity: 0.2;
    pointer-events: none;
    z-index: -1;
}

.app-container {
    max-width: 700px;
    width: 100%;
    margin: 0 auto;
    background: rgba(8, 4, 12, 0.85);
    backdrop-filter: blur(12px);
    border-radius: 32px;
    box-shadow: 0 0 0 2px #ff0040, 0 0 0 6px #330000, 0 20px 40px black;
    overflow: hidden;
    animation: borderPulse 1.2s infinite alternate;
}

@keyframes borderPulse {
    0% {
        box-shadow: 0 0 0 2px #ff0040, 0 0 0 6px #330000;
    }

    100% {
        box-shadow: 0 0 0 3px #ff3366, 0 0 0 8px #660011;
    }
}

.loading-screen {
    min-height: 620px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    background: #030008e0;
}

.glitch-text {
    font-size: 2rem;
    font-weight: 900;
    color: #ff0040;
    text-shadow: 2px 2px 0 #00ff41, -2px -2px 0 #ffaa00;
    animation: glitch 0.6s infinite;
}

@keyframes glitch {
    0% {
        transform: skew(0deg);
    }

    95% {
        transform: skew(2deg);
    }

    100% {
        transform: skew(-1deg);
    }
}

.spinner-damaged {
    width: 85px;
    height: 85px;
    border: 4px solid #ff0040;
    border-top: 4px solid #00ff41;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    box-shadow: 0 0 20px red;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.main-content {
    padding: 20px 18px 32px;
    display: none;
}

.header {
    text-align: center;
    margin-bottom: 16px;
    background: #110000aa;
    padding: 12px;
    border-radius: 60px;
    border: 1px solid #ff0066;
}

    .header h1 {
        font-size: 1.9rem;
        font-weight: 800;
        color: #ff3366;
        text-shadow: 0 0 5px red;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        flex-wrap: wrap;
    }

.warning-badge {
    background: black;
    color: #ff3300;
    font-size: 0.7rem;
    padding: 4px 12px;
    border-radius: 40px;
    border: 1px solid red;
    animation: blinkRed 1s step-end infinite;
}

@keyframes blinkRed {
    0%,100% {
        opacity: 1;
        background: #330000;
    }

    50% {
        opacity: 0.6;
        background: #990000;
    }
}

.power-section {
    display: flex;
    justify-content: center;
    margin: 20px 0 20px;
}

.btn-danger {
    width: 110px;
    height: 110px;
    background: radial-gradient(circle at 30% 20%, #3a0a0a, #1a0101);
    border-radius: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 0 0 4px #ff0040, 0 0 0 8px #220000;
    border: 2px solid #ff6666;
    transition: 0.1s;
}

    .btn-danger i {
        font-size: 52px;
        color: #ff5555;
        text-shadow: 0 0 8px red;
    }

    .btn-danger.active {
        background: radial-gradient(circle at 30% 20%, #00aa33, #004d11);
        box-shadow: 0 0 0 4px #00ff66, 0 0 0 8px #003300;
    }

        .btn-danger.active i {
            color: #b3ffcc;
            text-shadow: 0 0 12px lime;
        }

.search-box {
    background: #021a0a;
    border: 1px solid #00ff41;
    padding: 10px 16px;
    border-radius: 40px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #9eff9e;
    font-weight: bold;
    margin: 15px 0 20px;
    display: none;
    font-family: monospace;
}

.kali-terminal-panel {
    background: #030008;
    border: 2px solid #ff0040;
    border-radius: 20px;
    margin: 12px 0 20px;
    overflow: hidden;
    display: none;
    box-shadow: 0 0 15px rgba(255,0,64,0.5);
}

.term-header {
    background: #1e0a1a;
    padding: 8px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 2px solid #ff3366;
    color: #ff8888;
}

.term-body {
    background: #010005;
    padding: 18px;
    min-height: 380px;
    max-height: 450px;
    overflow-y: auto;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.75rem;
    color: #e0e0e0;
}

.term-line {
    margin: 8px 0;
    border-left: 3px solid #ff3366;
    padding-left: 12px;
    word-break: break-word;
}

.red-text {
    color: #ff4d4d;
}

.green-text {
    color: #6eff8e;
}

.yellow-text {
    color: #ffcc44;
}

.folders-zone {
    margin: 20px 0 18px;
    background: #0a0000aa;
    padding: 12px;
    border-radius: 24px;
    border: 1px dashed #ff0040;
    display: none;
}

.folder-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 12px;
}

.folder-card {
    background: #12000a;
    border-radius: 30px;
    padding: 10px 16px;
    display: flex;
    align-items: center;
    gap: 14px;
    border: 1px solid #ff3366;
    cursor: pointer;
}

    .folder-card i {
        font-size: 1.6rem;
        color: #ff6666;
    }

    .folder-card .folder-name {
        flex: 1;
        font-weight: 600;
        color: #ffaaaa;
    }

.extract-danger {
    background: linear-gradient(95deg, #7a0033, #cc0044);
    border: none;
    width: 100%;
    padding: 14px;
    border-radius: 60px;
    font-weight: bold;
    font-size: 1rem;
    color: white;
    margin-top: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    cursor: pointer;
    box-shadow: 0 0 15px red;
    animation: pulseBtn 1.2s infinite;
}

@keyframes pulseBtn {
    0% {
        box-shadow: 0 0 5px red;
    }

    100% {
        box-shadow: 0 0 20px #ff3366;
    }
}

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.96);
    backdrop-filter: blur(12px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3000;
    visibility: hidden;
    opacity: 0;
    transition: 0.2s;
}

    .modal-overlay.active {
        visibility: visible;
        opacity: 1;
    }

.modal-card-hack {
    background: #0f0212;
    border-radius: 40px;
    max-width: 500px;
    width: 90%;
    padding: 28px;
    border: 2px solid #ff0040;
}

.file-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 20px 0;
}

.file-item {
    background: #1d0a17;
    border-radius: 60px;
    padding: 10px 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #ffb3b3;
    gap: 10px;
    flex-wrap: wrap;
}

.dl-btn {
    background: #990033;
    border: none;
    padding: 5px 16px;
    border-radius: 40px;
    color: white;
    cursor: pointer;
    transition: 0.2s;
}

    .dl-btn:hover {
        background: #cc0044;
    }

.close-modal {
    background: #4a001a;
    width: 100%;
    border: none;
    padding: 12px;
    border-radius: 60px;
    color: white;
    margin-top: 16px;
    cursor: pointer;
}

.fake-alert {
    background: #ff0000aa;
    backdrop-filter: blur(8px);
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    text-align: center;
    padding: 8px;
    border-radius: 40px;
    font-size: 0.7rem;
    font-weight: bold;
    color: white;
    z-index: 1000;
    font-family: monospace;
    display: none;
}


