/* ===========================================
   SOLANA SPACES SECTION (.dashboard)
   NFT Dashboard with Modern Cards
   =========================================== */

.dashboard {
    padding: 120px 0;
    background: linear-gradient(180deg, var(--darker-bg) 0%, var(--dark-bg) 100%);
}

.dashboard-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.dashboard-card {
    background: var(--apple-gray-light);
    border-radius: 8px;
    padding: 30px;
    border: 2px solid var(--apple-dark);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.dashboard-card::before {
    display: none;
}

.dashboard-card:hover::before {
    display: none;
}

.dashboard-card:hover {
    transform: none;
    box-shadow: none;
}

.card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--neon-blue), var(--neon-purple));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.card-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: var(--light-text);
}

.stat-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.stat-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.stat-label {
    color: var(--light-text);
    opacity: 0.7;
    font-size: 1rem;
}

.claim-btn {
    width: 100%;
    background: linear-gradient(135deg, var(--neon-green), var(--neon-blue));
    color: white;
    border: none;
    padding: 15px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1.1rem;
    margin-top: 30px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.claim-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.claim-btn:not(:disabled):hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(54, 255, 144, 0.4);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .dashboard-container {
        grid-template-columns: 1fr;
    }
}
