/* MATE BLACK & GOLD VAULT */
body {
    background-color: #121212;
    color: #E0E0E0;
    margin: 0;
    padding: 0;
    min-height: 100vh;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    overflow-y: auto;
}

.vault-container {
    position: relative;
    width: 100%;
    max-width: 600px;
    padding: 100px 40px 60px;
    text-align: center;
}

/* Static Gold Frame */
.vault-frame {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 1px solid rgba(197, 160, 89, 0.4);
    /* Antique Gold */
    pointer-events: none;
    z-index: 0;
}

.vault-frame::before {
    content: "";
    /* Inner thin line */
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    border: 1px solid rgba(197, 160, 89, 0.1);
}

.vault-content {
    position: relative;
    z-index: 1;
}

/* Icon */
.vault-icon {
    font-size: 80px;
    color: #C5A059;
    margin-bottom: 20px;
    opacity: 0.9;
    text-shadow: 0 0 20px rgba(197, 160, 89, 0.2);
}

.vault-title {
    font-family: 'Cinzel', serif;
    font-size: 1.8rem;
    letter-spacing: 4px;
    color: #F5F5F2;
    margin-bottom: 40px;
    font-weight: 600;
}

/* Legal Text */
.legal-text {
    font-family: 'Playfair Display', serif;
    font-size: 0.8rem;
    color: #777;
    margin-bottom: 50px;
    line-height: 1.8;
}

.legal-text i {
    color: #C5A059;
    margin-right: 8px;
    font-size: 0.7rem;
}

/* Stats */
.vault-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 60px;
}

.stat-item {
    padding: 0 30px;
}

.stat-num {
    display: block;
    font-family: 'Cinzel', serif;
    font-size: 2.5rem;
    color: #C5A059;
    line-height: 1;
}

.stat-label {
    display: block;
    font-family: 'Courier Prime', monospace;
    font-size: 0.6rem;
    color: #555;
    margin-top: 10px;
    letter-spacing: 1px;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(197, 160, 89, 0.2);
}

/* Takeover Button & Fingerprint */
.btn-takeover {
    position: relative;
    background: transparent;
    border: 1px solid #333;
    color: #999;
    padding: 20px 40px;
    font-family: 'Cinzel', serif;
    font-size: 0.9rem;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.5s ease;
    overflow: hidden;
    width: 100%;
    max-width: 350px;
}

.btn-takeover:hover {
    border-color: #C5A059;
    color: #C5A059;
    background: rgba(197, 160, 89, 0.05);
}

.fingerprint-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 80px;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" fill="%23C5A059"><path d="M50 10a40 40 0 0 0-40 40c0 22 18 40 40 40s40-18 40-40a40 40 0 0 0-40-40zm0 75a35 35 0 0 1-35-35c0-19 16-35 35-35s35 16 35 35a35 35 0 0 1-35 35z" opacity="0.3"/></svg>') no-repeat center;
    background-size: contain;
    opacity: 0;
    transition: opacity 0.3s;
}

.btn-takeover:active .fingerprint-overlay,
.btn-takeover.scanning .fingerprint-overlay {
    opacity: 1;
    animation: scanPulse 1s infinite alternate;
}

@keyframes scanPulse {
    0% {
        opacity: 0.4;
        transform: translate(-50%, -50%) scale(0.95);
    }

    100% {
        opacity: 0.8;
        transform: translate(-50%, -50%) scale(1.05);
    }
}

.transfer-msg {
    margin-top: 20px;
    color: #C5A059;
    font-size: 0.8rem;
    opacity: 0;
    transition: opacity 1s ease;
    letter-spacing: 2px;
}