
.spatium-dashboard {
    font-family: 'Orbitron', sans-serif;
    background: linear-gradient(135deg, #1e1e2f, #2c2c54);
    color: #fff;
    padding: 20px;
    position: relative;
    overflow: hidden;
}

.spatium-dashboard header {
    padding: 20px;
    background: #0f0f1a;
    text-align: center;
    font-size: 2em;
    letter-spacing: 2px;
    border-bottom: 2px solid #00fff7;
    text-shadow: 0 0 5px #00fff7;
}

.spatium-dashboard .dashboard {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin-top: 20px;
}

.spatium-dashboard .card {
    background: rgba(0, 0, 0, 0.5);
    border: 2px solid #00fff7;
    border-radius: 15px;
    padding: 30px 40px;
    width: 300px;
    text-align: center;
    transition: transform 0.3s;
    word-wrap: break-word;
}

.spatium-dashboard .card:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 20px #00fff7;
}

.spatium-dashboard .card h2 {
    margin-bottom: 20px;
    font-size: 1.5em;
    color: #00fff7;
    text-shadow: 0 0 5px #00fff7;
}

.spatium-dashboard .card p {
    font-size: 1.5em;
    margin: 0;
    white-space: normal;
}

.spatium-dashboard .card i {
    font-size: 3em;
    margin-bottom: 15px;
    color: #fff;
    text-shadow: 0 0 10px #00fff7;
}

.spatium-dashboard .card small {
    display: block;
    margin-top: 10px;
    font-size: 0.9em;
    color: #ccc;
}

.spatium-dashboard footer {
    padding: 15px;
    text-align: center;
    border-top: 1px solid #00fff7;
    font-size: 0.9em;
    color: #ccc;
    background: #0f0f1a;
}

#connectWalletBtn {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 15px 30px;
    background: rgba(0, 255, 255, 0.3);
    color: #fff;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    font-size: 1.5em;
    transition: transform 0.2s;
}

#connectWalletBtn:hover {
    transform: scale(1.1);
    box-shadow: 0 0 15px #00fff7;
}

#scene-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

#vrButton {
    position: fixed;
    bottom: 20px;
    right: 20px;
    padding: 15px;
    font-size: 1.5em;
    background: rgba(0, 255, 255, 0.4);
    color: #fff;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    display: none;
}

@media (max-width: 600px) {
    .spatium-dashboard .card {
        width: 100%;
        margin-bottom: 15px;
    }
}
