* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, sans-serif;
    background: #fff5f8;
    color: #66424d;
    min-height: 100vh;
    padding: 40px 20px;
}

.page {
    max-width: 600px;
    margin: 0 auto;
}

.header {
    text-align: center;
    margin-bottom: 40px;
}

h1 {
    font-family: 'NekoFont', monospace;
    font-size: 64px;
    color: #ff85a2;
    margin-bottom: 10px;
    text-shadow: 3px 3px 0 #ffcfe0;
}

.tagline {
    font-size: 16px;
    color: #d97a9e;
}

/* Upload Box */
.upload-box {
    border: 3px dashed #ffb6c1;
    border-radius: 10px;
    padding: 50px 30px;
    text-align: center;
    background: #fffbfc;
    cursor: pointer;
    margin-bottom: 30px;
    position: relative;
}

.upload-box::before {
    content: 'ฅ^•ﻌ•^ฅ';
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 20px;
    color: #ffb6c1;
}

.upload-box.dragover {
    background: #ffebf0;
}

.upload-icon {
    font-size: 50px;
    margin-bottom: 20px;
    color: #ff85a2;
}

.upload-box p {
    font-size: 18px;
    margin-bottom: 10px;
    color: #66424d;
}

.upload-note {
    font-size: 14px;
    color: #d97a9e;
    margin-bottom: 20px;
}

#fileInput {
    display: none;
}

/* Files */
.file-card {
    background: #fffbfc;
    border: 2px solid #ffcfe0;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 15px;
}

.file-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}

.file-name {
    font-weight: 600;
    color: #66424d;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 70%;
}

.file-size {
    color: #ff6b8b;
    font-size: 14px;
    background: #ffebf0;
    padding: 4px 10px;
    border-radius: 20px;
}

.progress-bar {
    height: 6px;
    background: #ffe5ec;
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 10px;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #ffb6c1, #ff6b8b);
    width: 0%;
}

.url-box {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #ffcfe0;
}

.url-input {
    width: 100%;
    padding: 10px;
    border: 2px solid #ffb6c1;
    border-radius: 5px;
    font-family: 'Courier New', monospace;
    font-size: 14px;
    background: #fffbfc;
    color: #66424d;
    margin-bottom: 10px;
}

.copy-btn {
    width: 100%;
    padding: 10px;
    background: #ff85a2;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
}

.copy-btn:hover {
    background: #ff6b8b;
}

.copy-btn.copied {
    background: #a8e6cf;
}

/* Chibi Corner */
.chibi-corner {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 100px;
    height: 100px;
}

.chibi-corner img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Footer */
.footer {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #ffcfe0;
    color: #d97a9e;
    font-size: 14px;
}

/* Empty state */
.empty-state {
    text-align: center;
    padding: 40px 20px;
    color: #ffcfe0;
    font-size: 16px;
}

/* Responsive */
@media (max-width: 768px) {
    body {
        padding: 20px 15px;
    }

    h1 {
        font-size: 48px;
    }

    .upload-box {
        padding: 40px 20px;
    }

    .chibi-corner {
        width: 80px;
        height: 80px;
    }
}