body {
    font-family: sans-serif;
    background-color: #1e1e2e;
    color: #cdd6f4;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.container {
    background-color: #313244;
    padding: 2rem;
    border-radius: 12px;
    width: 400px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.upload-area {
    border: 2px dashed #89b4fa;
    padding: 40px;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s;
    margin-bottom: 20px;
}

.upload-area:hover {
    background-color: #45475a;
}

#browse-btn {
    color: #89b4fa;
    font-weight: bold;
    text-decoration: underline;
}

.progress-container {
    width: 100%;
    background-color: #45475a;
    border-radius: 4px;
    overflow: hidden;
    margin-top: 15px;
}

.progress-bar {
    height: 10px;
    background-color: #a6e3a1;
    width: 0%;
    transition: width 0.2s;
}

.link-box {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

input[type="text"] {
    width: 100%;
    padding: 8px;
    border-radius: 4px;
    border: none;
    background: #181825;
    color: #fff;
}

button {
    padding: 8px 12px;
    background: #89b4fa;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
}

.password-input {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border-radius: 8px;
    border: 1px solid #45475a;
    background: #181825;
    color: #fff;
    box-sizing: border-box;
}

.stats-box {
    margin-top: 20px;
    font-size: 0.8rem;
    color: #6c7086;
}

.options-box {
    text-align: left;
    margin-bottom: 15px;
    color: #cdd6f4;
    font-size: 0.9rem;
}

.checkbox-container input {
    margin-right: 8px;
}

.preview-box {
    margin: 20px 0;
    background: #181825;
    padding: 10px;
    border-radius: 8px;
    min-height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.preview-box img, .preview-box video {
    max-width: 100%;
    max-height: 400px;
    border-radius: 4px;
}

.btn-download {
    display: inline-block;
    padding: 12px 24px;
    background: #a6e3a1;
    color: #1e1e2e;
    text-decoration: none;
    font-weight: bold;
    border-radius: 6px;
    transition: transform 0.2s;
}

.btn-download:hover {
    transform: scale(1.05);
    background: #94e2d5;
}

.file-icon {
    font-size: 3rem;
    margin-bottom: 10px;
}
