* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

body {
    background-color: #ffffff;
    color: #111111;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
}

.container {
    width: 100%;
    max-width: 480px;
    padding: 40px 20px;
}

.header {
    margin-bottom: 32px;
}

.header h1 {
    font-size: 22px;
    font-weight: 600;
    letter-spacing: -0.5px;
    margin-bottom: 4px;
}

.header p {
    color: #666666;
    font-size: 13px;
}

.upload-zone {
    border: 1px dashed #cccccc;
    border-radius: 6px;
    padding: 48px 20px;
    text-align: center;
    cursor: pointer;
    background-color: #fafafa;
    transition: border-color 0.15s ease, background-color 0.15s ease;
}

.upload-zone:hover, .upload-zone.dragover {
    border-color: #111111;
    background-color: #f1f1f1;
}

.upload-text {
    font-size: 14px;
    color: #333333;
}

.upload-hint {
    font-size: 12px;
    color: #888888;
    margin-top: 6px;
}

#fileInput {
    display: none;
}

.file-meta {
    display: none;
    background-color: #fafafa;
    border: 1px solid #eeeeee;
    border-radius: 6px;
    padding: 14px;
    margin-top: 16px;
    align-items: center;
    justify-content: space-between;
}

.file-info {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    padding-right: 12px;
}

.file-name {
    font-size: 13px;
    font-weight: 500;
    color: #111111;
}

.file-size {
    font-size: 11px;
    color: #666666;
    margin-top: 2px;
}

.btn-remove {
    background: none;
    border: none;
    color: #ff3b30;
    cursor: pointer;
    font-size: 12px;
    font-weight: 500;
}

.btn-action {
    width: 100%;
    background-color: #111111;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    padding: 14px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    margin-top: 16px;
    transition: background-color 0.15s ease;
}

.btn-action:hover {
    background-color: #333333;
}

.btn-action:disabled {
    background-color: #eaeaea;
    color: #999999;
    cursor: not-allowed;
}

.progress-box {
    display: none;
    margin-top: 20px;
}

.progress-line-container {
    background-color: #eaeaea;
    height: 2px;
    width: 100%;
    overflow: hidden;
    margin-bottom: 8px;
}

.progress-line {
    background-color: #111111;
    height: 100%;
    width: 0%;
    transition: width 0.1s linear;
}

.progress-label {
    font-size: 12px;
    color: #666666;
    text-align: center;
}

.output-box {
    display: none;
    border: 1px solid #111111;
    border-radius: 6px;
    padding: 16px;
    margin-top: 24px;
    background-color: #ffffff;
}

.output-title {
    font-size: 11px;
    font-weight: 600;
    color: #111111;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.output-wrapper {
    display: flex;
    gap: 8px;
}

.output-url {
    flex: 1;
    background-color: #fafafa;
    border: 1px solid #eeeeee;
    border-radius: 4px;
    padding: 10px;
    color: #111111;
    font-size: 13px;
    outline: none;
    text-overflow: ellipsis;
}

.btn-copy {
    background-color: #ffffff;
    color: #111111;
    border: 1px solid #cccccc;
    border-radius: 4px;
    padding: 0 16px;
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    transition: border-color 0.15s ease;
}

.btn-copy:hover {
    border-color: #111111;
}

.credit {
    margin-top: 40px;
    text-align: center;
    font-size: 11px;
    color: #999999;
}

.credit a {
    color: #666666;
    text-decoration: none;
}

.credit a:hover {
    text-decoration: underline;
}

.header {
    margin-bottom: 32px;
}

/* Tambahkan kodingan baru ini untuk menyetel teks sambutan abang */
.header h2 {
    font-size: 28px;          /* Ukuran teks lumayan besar */
    font-weight: 700;          /* Tebal/Bold */
    letter-spacing: -0.8px;    /* Efek merapatkan huruf biar modern */
    color: #111111;            /* Hitam solid */
    margin-bottom: 12px;       /* Jarak ke tulisan depay.sbs di bawahnya */
}

.header h1 {
    font-size: 16px;           /* Kita kecilkan sedikit h1-nya biar jadi sub-judul yang manis */
    font-weight: 500;
    color: #666666;
    letter-spacing: -0.5px;
    margin-bottom: 4px;
}