* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #0c0c0c;
    color: #ffffff;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    min-height: 100vh;
}
/* Tambahkan di bagian akhir file CSS */

.url-input {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    background: #0f0f0f;
    border: 1px solid #333;
    color: #630404ff;
    border-radius: 6px;
    font-family: 'Consolas', 'Monaco', monospace;
    font-size: 14px;
}

.url-input:focus {
    outline: none;
    border-color: #630404ff;
    box-shadow: 0 0 0 2px rgba(205, 78, 78, 0.3);
}

.success-actions {
    display: flex;
    gap: 10px;
    margin-top: 15px;
    flex-wrap: wrap;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.header {
    text-align: center;
    padding: 30px 0;
    margin-bottom: 30px;
}

.logo {
    font-size: 2.5em;
    font-weight: 800;
    background: linear-gradient(45deg, #ff6b6b, #630404ff, #ffc23fff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.slogan {
    font-size: 1em;
    color: #666;
    font-weight: 300;
    letter-spacing: 2px;
}

.main-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.upload-section {
    background: #1a1a1a;
    border-radius: 12px;
    padding: 25px;
    border: 1px solid #333;
}

.upload-area {
    border: 2px dashed #444;
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    background: #0f0f0f;
}

.upload-area:hover {
    border-color: #630404ff;
    background: #151515;
}

.upload-area.highlight {
    border-color: #630404ff;
    background: #152a2a;
}

.upload-icon {
    font-size: 2.5em;
    margin-bottom: 15px;
    opacity: 0.7;
}

.upload-text {
    font-size: 1.1em;
    margin-bottom: 15px;
    color: #ccc;
    font-weight: 500;
}

.upload-subtext {
    font-size: 0.85em;
    color: #666;
    margin-bottom: 15px;
}

.file-input {
    display: none;
}

.btn {
    background: linear-gradient(45deg, #630404ff, #ffc23fff);
    color: white;
    border: none;
    padding: 10px 24px;
    font-size: 0.95em;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(205, 78, 78, 0.3);
}

.btn-secondary {
    background: #333;
    color: #ccc;
}

.btn-secondary:hover {
    background: #444;
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.1);
}

.file-info {
    background: #0f0f0f;
    padding: 12px;
    border-radius: 6px;
    margin-top: 12px;
    border-left: 3px solid #630404ff;
    display: none;
}

.paste-form {
    background: #1a1a1a;
    border-radius: 12px;
    padding: 25px;
    border: 1px solid #333;
    flex: 1;
}

.form-group {
    margin-bottom: 20px;
}

textarea {
    width: 100%;
    height: 300px;
    background: #0f0f0f;
    border: 1px solid #333;
    color: #fff;
    padding: 15px;
    border-radius: 8px;
    font-family: 'Consolas', 'Monaco', monospace;
    font-size: 13px;
    resize: vertical;
    line-height: 1.4;
}

textarea:focus {
    outline: none;
    border-color: #630404ff;
    box-shadow: 0 0 0 2px rgba(205, 78, 78, 0.3);
}

.form-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.alert {
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    border: 1px solid;
}

.alert-success {
    background: #1a2a1a;
    border-color: #630404ff;
    color: #630404ff;
}

.alert-error {
    background: #2a1a1a;
    border-color: #ff6b6b;
    color: #ff6b6b;
}

.paste-info {
    background: #1a1a1a;
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 20px;
    border: 1px solid #333;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.paste-content {
    background: #0f0f0f;
    border: 1px solid #333;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
}

.code-block {
    background: #000;
    padding: 20px;
    border-radius: 6px;
    overflow-x: auto;
    white-space: pre-wrap;
    word-wrap: break-word;
    color: #fff;
    font-family: 'Consolas', 'Monaco', monospace;
    font-size: 13px;
    line-height: 1.4;
}

.action-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.zip-info {
    background: #1a2a2a;
    padding: 25px;
    border-radius: 8px;
    text-align: center;
    border: 1px solid #2a4a4a;
}

.zip-icon {
    font-size: 3em;
    margin-bottom: 15px;
    opacity: 0.8;
}

.raw-content {
    background: #000;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #333;
    white-space: pre-wrap;
    word-wrap: break-word;
    font-family: 'Consolas', 'Monaco', monospace;
    font-size: 13px;
    line-height: 1.4;
    color: #fff;
}

@media (max-width: 768px) {
    .container {
        padding: 15px;
    }
    
    .logo {
        font-size: 2em;
    }
    
    .paste-info {
        flex-direction: column;
        align-items: stretch;
    }
    
    .action-buttons {
        justify-content: center;
    }
    
    .form-actions {
        justify-content: center;
    }
    
    textarea {
        height: 250px;
    }
}