body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    font-family: sans-serif;
    overflow: hidden;
    background-color: #160021;
}

#background-video {
    position: fixed;
    right: 0;
    bottom: 0;
    min-width: 100%;
    min-height: 100%;
    z-index: -1;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: white;
    text-align: center;
    background-color: #160021;
}

.logo {
    width: 100px;
    margin-bottom: 20px;
}

h1 {
    font-size: 3em;
    margin-bottom: 0.2em;
}

p {
    font-size: 1.2em;
}

#drop-area {
    border: 2px dashed #fff;
    border-radius: 20px;
    width: 80%;
    max-width: 600px;
    padding: 50px;
    margin-top: 30px;
    transition: border-color 0.3s;
}

#drop-area.highlight {
    border-color: #a855f7;
}

#progress-container {
    width: 80%;
    max-width: 600px;
    background-color: #333;
    border-radius: 5px;
    margin-top: 30px;
}

#progress-bar {
    width: 0%;
    height: 20px;
    background-color: #a855f7;
    border-radius: 5px;
    transition: width 0.3s;
}

#link-container {
    margin-top: 30px;
}

#download-link {
    color: #a855f7;
    font-size: 1.2em;
    word-break: break-all;
}

/* MODAL STYLES */
#modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

#modal {
    background-color: #2d0041;
    padding: 30px;
    border-radius: 15px;
    border: 1px solid #4b006e;
    text-align: center;
    width: 90%;
    max-width: 500px;
    position: relative;
    box-shadow: 0 5px 15px rgba(0,0,0,0.5);
}

#modal h2 {
    margin-top: 0;
    color: #fff;
}

#modal p {
    color: #eee;
}

#close-modal-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    background: none;
    border: none;
    color: #fff;
    font-size: 2em;
    cursor: pointer;
}

#modal-link-input {
    width: calc(100% - 20px);
    padding: 10px;
    margin-top: 10px;
    border-radius: 5px;
    border: 1px solid #4b006e;
    background-color: #1a0025;
    color: #fff;
    font-size: 1em;
    text-align: center;
}

.modal-buttons {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 15px;
}

.modal-buttons button {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1em;
    transition: background-color 0.3s;
}

#copy-link-btn {
    background-color: #a855f7;
    color: white;
}

#copy-link-btn:hover {
    background-color: #9333ea;
}

#delete-file-btn.danger {
    background-color: #e11d48;
    color: white;
}

#delete-file-btn.danger:hover {
    background-color: #be123c;
}