:root {
    --bg: #0b0b0b;
    --card: #161616;
    --p-grad: linear-gradient(90deg, #a300ff, #ff00ff);
    --b-grad: linear-gradient(90deg, #00d2ff, #3a7bd5);
}

body {
    background-color: var(--bg);
    color: white;
    font-family: 'Varela Round', sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    margin: 0;
    user-select: none;
}

#auth-screen {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: var(--bg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 100;
}

.auth-box {
    background: var(--card);
    padding: 30px;
    border-radius: 20px;
    text-align: center;
}

input {
    background: #222;
    border: 1px solid #333;
    color: white;
    padding: 12px;
    border-radius: 10px;
    margin: 15px 0;
    font-family: inherit;
    outline: none;
}

button {
    background: var(--p-grad);
    color: white;
    border: none;
    padding: 10px 25px;
    border-radius: 10px;
    cursor: pointer;
    font-family: inherit;
    font-weight: bold;
}

.title {
    font-size: 38px;
    margin-bottom: 30px;
    font-weight: normal;
}

.grid {
    display: grid;
    grid-template-columns: repeat(2, 210px);
    gap: 20px;
}

.card {
    background-color: var(--card);
    border-radius: 18px;
    height: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    border: 1px solid #1f1f1f;
}

.card-label {
    color: #888;
    font-size: 12px;
    margin-bottom: 5px;
    text-align: center;
    padding: 0 10px;
}

.card-value {
    font-size: 20px;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 8px;
    max-width: 90%;
}

.file-text {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 130px;
}

.del-btn {
    color: #ff4444;
    cursor: pointer;
    font-size: 18px;
    font-weight: bold;
}

.line {
    height: 4px;
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
}

.p-line { background: var(--p-grad); }
.b-line { background: var(--b-grad); }

.clickable { cursor: pointer; transition: 0.2s; }
.clickable:hover { background: #1c1c1c; }
.clickable:active { transform: scale(0.96); }

input[type="file"] { display: none; }
