/* vault-master.css */
:root {
    --primary: #00f3ff;
    --secondary: #ff00c8;
    --accent: #00ff9d;
    --dark: #0a0a16;
    --text: #e0e0ff;
}

/* Global Button Styles */
.vault-btn {
    position: relative;
    background: linear-gradient(45deg, var(--dark), #1a1a2e);
    color: var(--primary);
    border: 1px solid var(--primary);
    padding: 12px 24px;
    font-size: 1rem;
    cursor: pointer;
    overflow: hidden;
    transition: 0.3s;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 200px;
}

.vault-btn:hover {
    box-shadow: 0 0 15px var(--primary);
    background: var(--primary);
    color: var(--dark);
}

.vault-btn:disabled {
    cursor: not-allowed;
    opacity: 0.8;
}

/* Progress Bar Overlay */
.vault-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 4px;
    background: var(--accent);
    width: 0%;
    transition: width 0.1s linear;
}

/* Timer Text */
.timer-text {
    margin-left: 10px;
    font-weight: bold;
    color: var(--secondary);
}