/* style.css */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    min-height: 100vh;
    background: #0a0a0f;
    background-image: radial-gradient(circle at 20% 30%, #0f0f1a 0%, #050508 100%);
    font-family: 'Segoe UI', 'Poppins', system-ui, monospace;
    padding: 2rem 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.anroper_container {
    max-width: 1300px;
    width: 100%;
    background: rgba(8, 6, 18, 0.85);
    backdrop-filter: blur(20px);
    border-radius: 2rem;
    border: 1px solid rgba(255, 30, 80, 0.5);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.6);
    padding: 2rem;
}

.anroper_header {
    text-align: center;
    margin-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 30, 80, 0.3);
    padding-bottom: 1.5rem;
}

.anroper_logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.logo_icon {
    font-size: 2.8rem;
    filter: drop-shadow(0 0 10px #ff1e50);
    animation: pulse 2s infinite;
}

.logo_text {
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(135deg, #ff1e50, #ff6b35);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

.anroper_tagline {
    color: #b0a8d9;
    font-size: 0.85rem;
    margin-top: 0.5rem;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.05); }
}

.anroper_dropzone {
    background: rgba(0, 0, 0, 0.55);
    border: 3px dashed #ff1e50;
    border-radius: 1.5rem;
    padding: 2rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.25s ease;
    margin-bottom: 1.5rem;
}

.anroper_dropzone:hover {
    background: rgba(255, 30, 80, 0.12);
    border-color: #ff6b35;
}

.dropzone_content {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.drop_icon {
    font-size: 3rem;
}

.drop_text {
    font-size: 1.3rem;
    font-weight: bold;
    color: #ffccdd;
}

.drop_hint {
    font-size: 0.7rem;
    color: #8a7faa;
}

.anroper_files {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
    max-height: 320px;
    overflow-y: auto;
    padding: 0.5rem;
    min-height: 100px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 1rem;
}

.file_card {
    background: rgba(17, 15, 31, 0.95);
    border-radius: 1rem;
    width: 140px;
    padding: 0.7rem;
    text-align: center;
    border: 1px solid rgba(255, 30, 80, 0.3);
    transition: 0.15s;
}

.file_card:hover {
    border-color: #ff1e50;
    transform: translateY(-2px);
}

.file_card img {
    max-width: 100%;
    max-height: 90px;
    border-radius: 0.5rem;
    background: #000;
    object-fit: cover;
}

.file_name {
    display: block;
    font-size: 0.65rem;
    color: #ffbbd0;
    margin-top: 0.4rem;
    word-break: break-all;
}

.file_remove {
    background: rgba(255, 30, 80, 0.3);
    border: none;
    color: #ff9cb8;
    cursor: pointer;
    font-size: 0.7rem;
    margin-top: 0.4rem;
    padding: 0.2rem 0.6rem;
    border-radius: 1rem;
    transition: 0.1s;
}

.file_remove:hover {
    background: #ff1e50;
    color: white;
}

.anroper_controls {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1.5rem;
    background: rgba(0, 0, 0, 0.45);
    padding: 1rem 1.5rem;
    border-radius: 1.5rem;
    align-items: flex-end;
}

.control_group {
    flex: 2;
    min-width: 200px;
}

.control_label {
    display: block;
    font-size: 0.7rem;
    font-weight: bold;
    color: #ff90b0;
    margin-bottom: 0.4rem;
    text-transform: uppercase;
}

.anroper_select {
    width: 100%;
    background: #0f0f1a;
    border: 1px solid #ff1e50;
    color: #f0eef7;
    padding: 0.7rem 1rem;
    border-radius: 1rem;
    font-weight: 500;
    cursor: pointer;
    font-size: 0.9rem;
}

.anroper_select:hover {
    border-color: #ff6b35;
}

.anroper_button {
    background: linear-gradient(95deg, #ff1e50, #b80e3a);
    border: none;
    padding: 0.7rem 2rem;
    font-weight: bold;
    font-size: 1rem;
    border-radius: 2rem;
    color: white;
    cursor: pointer;
    transition: 0.25s;
    flex: 1;
}

.anroper_button:hover {
    transform: translateY(-2px);
    background: linear-gradient(95deg, #ff3a68, #d41346);
}

.anroper_status {
    background: #000000aa;
    border-radius: 1rem;
    padding: 0.7rem 1rem;
    font-family: monospace;
    font-weight: bold;
    color: #ff6b9d;
    border-left: 4px solid #ff1e50;
    font-size: 0.8rem;
}

::-webkit-scrollbar {
    width: 5px;
}

::-webkit-scrollbar-track {
    background: #1a0f1f;
}

::-webkit-scrollbar-thumb {
    background: #ff1e50;
    border-radius: 10px;
}

@media (max-width: 700px) {
    body { padding: 1rem; }
    .anroper_container { padding: 1.2rem; }
    .logo_text { font-size: 2rem; }
    .file_card { width: 110px; }
}