@import url('https://fonts.googleapis.com/css2?family=Share+Tech+Mono&display=swap');

body {
    background-color: #050505;
    background-image: linear-gradient(0deg, transparent 24%, rgba(32, 255, 77, .05) 25%, rgba(32, 255, 77, .05) 26%, transparent 27%, transparent 74%, rgba(32, 255, 77, .05) 75%, rgba(32, 255, 77, .05) 76%, transparent 77%, transparent), linear-gradient(90deg, transparent 24%, rgba(32, 255, 77, .05) 25%, rgba(32, 255, 77, .05) 26%, transparent 27%, transparent 74%, rgba(32, 255, 77, .05) 75%, rgba(32, 255, 77, .05) 76%, transparent 77%, transparent);
    background-size: 50px 50px;
    color: #0f0;
    font-family: 'Share Tech Mono', monospace;
    margin: 0;
    padding: 20px;
    height: 100vh;
    overflow: hidden;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    border: 3px solid #0f0;
    box-shadow: 0 0 20px #0f0;
    height: 95vh;
    display: flex;
    flex-direction: column;
    background: rgba(0, 0, 0, 0.9);
}

header {
    text-align: center;
    border-bottom: 2px dashed #0f0;
    padding: 20px;
}

h1 {
    text-transform: uppercase;
    font-size: 3em;
    text-shadow: 2px 2px #ff00de;
    margin: 0;
    letter-spacing: 5px;
}

header p {
    color: #ff00de;
    margin-top: 10px;
}

.glass-card {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.tabs {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    border: 1px solid #0f0;
}

.tab-btn {
    flex: 1;
    background: #000;
    color: #0f0;
    border: none;
    padding: 15px;
    font-family: inherit;
    font-size: 1.2em;
    cursor: pointer;
    transition: 0.2s;
}

.tab-btn:hover {
    background: #0f0;
    color: #000;
}

.tab-btn.active {
    background: #ff00de;
    color: #fff;
    font-weight: bold;
    box-shadow: inset 0 0 10px #000;
}

.tab-content {
    display: none;
    height: 100%;
    flex-direction: column;
}

.tab-content.active {
    display: flex;
}

.upload-section {
    margin-bottom: 20px;
}

.drop-zone {
    display: block;
    border: 2px dashed #ff00de;
    padding: 40px;
    text-align: center;
    cursor: pointer;
    transition: 0.5s;
}

.drop-zone:hover,
.drop-zone.highlight {
    background: rgba(255, 0, 222, 0.2);
    transform: rotate(1deg);
}

.drop-zone .icon {
    font-size: 50px;
    display: block;
    margin-bottom: 10px;
}

.filters-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 10px;
    margin-bottom: 20px;
}

.input-group label {
    display: block;
    color: #ff00de;
    margin-bottom: 5px;
}

.input-group input {
    width: 100%;
    background: #000;
    border: 1px solid #0f0;
    color: #0f0;
    padding: 10px;
    font-family: inherit;
    box-sizing: border-box;
}

.input-group input:focus {
    outline: none;
    box-shadow: 0 0 10px #0f0;
}

.controls {
    text-align: center;
    margin-bottom: 20px;
}

.primary-btn {
    background: #000;
    color: #0f0;
    border: 2px solid #0f0;
    padding: 15px 50px;
    font-family: inherit;
    font-size: 1.5em;
    text-transform: uppercase;
    cursor: pointer;
    box-shadow: 5px 5px 0 #ff00de;
    transition: 0.1s;
}

.primary-btn:active {
    box-shadow: 2px 2px 0 #ff00de;
    transform: translate(3px, 3px);
}

.results-area {
    background: black;
    border: 1px solid #0f0;
    flex-grow: 1;
    overflow-y: scroll;
    padding: 10px;
    margin-bottom: 20px;
}

.results-area::-webkit-scrollbar {
    width: 15px;
    background: #000;
    border-left: 1px solid #0f0;
}

.results-area::-webkit-scrollbar-thumb {
    background: #0f0;
    border: 1px solid #000;
}

.result-section {
    margin-bottom: 20px;
    border-bottom: 1px dashed #333;
}

.result-title {
    font-size: 1.2em;
    margin-bottom: 5px;
    color: #fff;
}

.result-count {
    background: #ff00de;
    color: white;
    padding: 2px 8px;
    margin-right: 10px;
}

.result-list {
    word-break: break-all;
    font-size: 0.9em;
    color: #aaa;
}

@media (max-width: 600px) {
    .filters-grid {
        grid-template-columns: 1fr;
    }
}