:root {
    --accent: #75bb8d;
    --glass: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
}

[data-theme="light"] {
    --glass: rgba(0, 0, 0, 0.03);
    --glass-border: rgba(0, 0, 0, 0.08);
}

.wallet-v2 {
    min-height: 100vh;
    background: var(--bg-primary);
    color: var(--text-primary);
    font-family: 'Plus Jakarta Sans', sans-serif;
    overflow-x: hidden;
}

.tradingview-wrapper {
    display: flex;
    justify-content: center;
    width: 100%;
    padding: 60px 20px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.tradingview-widget-container {
    max-width: 100%;
}

#vault-canvas {
    position: fixed;
    top: 0; left: 0;
    z-index: 0;
    pointer-events: none;
    opacity: 0.5;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    position: relative;
    z-index: 2;
}

.vault-hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    margin-bottom: 0;
}

.reveal-text {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(3rem, 12vw, 8rem);
    font-weight: 800;
    letter-spacing: -4px;
    background: linear-gradient(to bottom, var(--text-primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.status-bar {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: -10px;
    opacity: 0.6;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--accent);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.5); opacity: 0.4; }
    100% { transform: scale(1); opacity: 1; }
}

/* Bento Grid */
.wallet-bento-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    padding-bottom: 100px;
}

.wallet-card {
    background: var(--glass);
    backdrop-filter: blur(25px);
    border: 1px solid var(--glass-border);
    border-radius: 35px;
    padding: 2.5rem;
    transition: all 0.5s cubic-bezier(0.2, 1, 0.3, 1);
}

.wallet-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--accent);
    background: rgba(117, 187, 141, 0.05);
}

.wallet-card.featured {
    grid-column: span 2;
    background: linear-gradient(135deg, rgba(117, 187, 141, 0.08), transparent);
}

.card-tag {
    font-size: 0.6rem;
    letter-spacing: 3px;
    color: var(--accent);
    margin-bottom: 1.5rem;
    font-weight: 800;
}

/* Icons & Info */
.wallet-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 2rem;
}

.wallet-icon {
    width: 65px;
    height: 65px;
    background: var(--bg-secondary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    border: 1px solid var(--glass-border);
}

.wallet-meta h3 { font-size: 1.5rem; margin: 0; }
.wallet-meta p { font-size: 0.85rem; opacity: 0.5; margin: 5px 0 0; }

/* Address Box */
.address-box {
    background: rgba(0,0,0,0.2);
    padding: 15px 20px;
    border-radius: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

code {
    font-family: 'Space Grotesk', monospace;
    font-size: 0.9rem;
    color: var(--accent);
}

.copy-trigger {
    background: linear-gradient(135deg, #16a34a, #22c55e); 
    color: #ffffff;
    border: none;
    padding: 12px 20px;          
    border-radius: 14px;
    font-size: 0.80rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    cursor: pointer;
    text-transform: uppercase;

    box-shadow: 
        0 8px 22px rgba(34, 197, 94, 0.35);

    transition: 
        transform 0.25s ease,
        box-shadow 0.25s ease,
        background 0.25s ease;
}

.copy-trigger:hover {
    background: linear-gradient(135deg, #15803d, #16a34a);
    transform: scale(1.12);   /* confident zoom */
    box-shadow: 
        0 14px 36px rgba(22, 163, 74, 0.55);
}

.copy-trigger:active {
    transform: scale(1.05);
    box-shadow: 
        0 6px 18px rgba(22, 163, 74, 0.45);
}

.wallet-icon-img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}


/* Mobile */
@media (max-width: 768px) {
    .wallet-bento-grid { grid-template-columns: 1fr; }
    .wallet-card.featured { grid-column: span 1; }
    .reveal-text { font-size: 4rem; }
}